:root {
    --whitergba10: rgba(255, 255, 255, 1.0);
    --whitergba9: rgba(255, 255, 255, 0.9);
    --whitergba8: rgba(255, 255, 255, 0.8);
    --whitergba7: rgba(255, 255, 255, 0.7);
    --whitergba6: rgba(255, 255, 255, 0.6);
    --whitergba5: rgba(255, 255, 255, 0.5);
    --whitergba4: rgba(255, 255, 255, 0.4);
    --whitergba3: rgba(255, 255, 255, 0.3);
    --whitergba2: rgba(255, 255, 255, 0.2);
    --whitergba1: rgba(255, 255, 255, 0.1);
    --whitergba0: rgba(255, 255, 255, 0.0);

    --blackrgba10: rgba(0, 0, 0, 1.0);
    --blackrgba9: rgba(0, 0, 0, 0.9);
    --blackrgba8: rgba(0, 0, 0, 0.8);
    --blackrgba7: rgba(0, 0, 0, 0.7);
    --blackrgba6: rgba(0, 0, 0, 0.6);
    --blackrgba5: rgba(0, 0, 0, 0.5);
    --blackrgba4: rgba(0, 0, 0, 0.4);
    --blackrgba3: rgba(0, 0, 0, 0.3);
    --blackrgba2: rgba(0, 0, 0, 0.2);
    --blackrgba1: rgba(0, 0, 0, 0.1);
    --blackrgba0: rgba(0, 0, 0, 0.0);


	/* LIGHT BLUE */
	--lblue1: #ffb229;
	--lblue2: #ffa500;
	--lblue3: #e59100;
	--lbluergba0: rgba(255,165,0,0.0);
	--lbluergba1: rgba(255,165,0,0.1);
	--lbluergba2: rgba(255,165,0,0.2);
	--lbluergba3: rgba(255,165,0,0.3);
	--lbluergba4: rgba(255,165,0,0.4);
	--lbluergba5: rgba(255,165,0,0.5);
	--lbluergba6: rgba(255,165,0,0.6);
	--lbluergba7: rgba(255,165,0,0.7);
	--lbluergba8: rgba(255,165,0,0.8);
	--lbluergba9: rgba(255,165,0,0.9);
	--lbluergba10: rgba(255,165,0,1.0);
	
	/* DARK BLUE */
	--dblue1: #2e292a;
	--dblue2: #231f20;
	--dblue3: #0a0909;
	--dbluergba0: rgba(35,31,32,0.0);
	--dbluergba1: rgba(35,31,32,0.1);
	--dbluergba2: rgba(35,31,32,0.2);
	--dbluergba3: rgba(35,31,32,0.3);
	--dbluergba4: rgba(35,31,32,0.4);
	--dbluergba5: rgba(35,31,32,0.5);
	--dbluergba6: rgba(35,31,32,0.6);
	--dbluergba7: rgba(35,31,32,0.7);
	--dbluergba8: rgba(35,31,32,0.8);
	--dbluergba9: rgba(35,31,32,0.9);
	--dbluergba10: rgba(35,31,32,1.0);


    /* SUPPORT BLUE */
    --sblue2: #022a50;
    --sbluergba10: rgba(2, 42, 80, 1.0);
    --syellow2: #fc0;
    --sred2: #e93f33;
    --sysblue: #007bff;
    --sysblue2: #0c4bc6;
    --developer: #cc0000;


	/* ORANGE */
	--orange1: #2a2a2a;
	--orange2: #0b0b0b;
	--orange3: #000000;
	--orangergba0: rgba(11,11,11,0.0);
	--orangergba1: rgba(11,11,11,0.1);
	--orangergba2: rgba(11,11,11,0.2);
	--orangergba3: rgba(11,11,11,0.3);
	--orangergba4: rgba(11,11,11,0.4);
	--orangergba5: rgba(11,11,11,0.5);
	--orangergba6: rgba(11,11,11,0.6);
	--orangergba7: rgba(11,11,11,0.7);
	--orangergba8: rgba(11,11,11,0.8);
	--orangergba9: rgba(11,11,11,0.9);
	--orangergba10: rgba(11,11,11,1.0);

    --white: #fff;
    --f1f1f1: #f1f1f1;
    --f2f2f2: #f2f2f2;
    --f4f4f4: #f4f4f4;
    --eeeeee: #eeeeee;
    --cccccc: #cccccc;
    --black: #000;
    --gray1: #111;
    --gray2: #222;
    --gray3: #333;
    --gray4: #444;
    --gray5: #555;
    --gray6: #666;
    --gray7: #777;
    --gray8: #888;
    --gray9: #999;
    --blacktheme: #0a0a0d;


    --greenhover: #1f8035;
    --Whats1: #25d366;
    --whatsbg: #eefbef;
    --whatstx: #3cc13f;
    --Whats2: #128c7e;
    --Whatsrgba: rgba(37, 211, 102, 0.5);
    --Whatsrgba2: rgba(37, 211, 102, 0.2);
    --Whatsrgba3: rgba(18, 140, 126, 0.5);

    --theme-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --special-font: "Poppins", sans-serif;


}


body {
    font-family: var(--theme-font);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--white);
    color: var(--gray3);

}

html {
    position: relative;
    height: 100%;
    background: var(--white);
}


::selection {
    background-color: var(--lblue2);
    color: var(--black);
}

-webkit-::selection {
    background-color: var(--lblue2);
    color: var(--black);
}

::-moz-selection {
    background-color: var(--lblue2);
    color: var(--black);
}


::-webkit-scrollbar {
    padding-right: 4px;
    width: 15px;
    background: var(--gray3);
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--white);
    border: 5px solid var(--gray3);
}


.font-sora {
    font-family: var(--theme-font)!important;
}

.auto-container {
    position: static;
    width: 100%;
    max-width: 1400px;
    padding: 0px 15px;
    margin: 0 auto;
}


button {
    border: none;
    padding: 0;
}

button,
button:focus,
.form-control,
.form-control:focus {
    outline: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

textarea {
    resize: none;
}

select {
    background-color: transparent;
}


.bg-theme {
    background-color: var(--lblue2) !important;
}


.bg-gradient-primary {
    background: var(--lblue2);
    background: -webkit-linear-gradient(140deg, var(--lblue2) 25%, var(--dblue2) 100%);
    background: -moz-linear-gradient(140deg, var(--lblue2) 25%, var(--dblue2) 100%);
    background: -ms-linear-gradient(140deg, var(--lblue2) 25%, var(--dblue2) 100%);
    background: -o-linear-gradient(140deg, var(--lblue2) 25%, var(--dblue2) 100%);
    background: linear-gradient(140deg, var(--lblue2) 25%, var(--dblue2) 100%);
}


[class*="bg-image-"],
[class*="overlay-"] {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

[class*="bg-image-"]:before, [class*="bg-image-"]:after,
[class*="overlay-"]:before,
[class*="overlay-"]:after {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    bottom: -1px;
    content: "";
    height: 101%;
    left: -1%;
    position: absolute;
    top: -1px;
    width: 102%;
}

[class*="bg-image-"]:before,
[class*="overlay-"]:before {
    z-index: -1;
}

[class*="bg-image-"]:after,
[class*="overlay-"]:after {
    z-index: -2;
}


#particles-js {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 0;
}


.page-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 100vh;
    width: 100%;
    color: var(--gray3);
    overflow-x: hidden;
    position: relative;
}

main.main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    z-index: 0;
}

img {
    max-width: 100%;
}


p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gray1);
}

a, .btn {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus {
    text-decoration: none !important;
}

a:focus, a:hover {
    color: var(--orange2);
    text-decoration: none !important;
}

a:active {
    color: var(--orange2);
    text-decoration: none !important;
}


a, button, input {
    outline: medium none !important;
    color: var(--orange2);
}


.uppercase {
    text-transform: uppercase;
}

.pos-absolute {
    position: absolute;
}

.pos-relative {
    position: relative;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--special-font) !important;
    font-weight: normal;
    color: var(--lblue2);
    margin-top: 0px;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.1;
}

h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.1;
}

h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
}

h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
}

h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
}

.fw-1 {
    font-weight: 100;
}

.fw-2 {
    font-weight: 200;
}

.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fw-8 {
    font-weight: 800;
}

.fw-9 {
    font-weight: 900;
}

.l-height-24 {
    line-height: 24px;
}

.l-height-26 {
    line-height: 26px;
}

.l-height-28 {
    line-height: 28px;
}

.l-height-30 {
    line-height: 30px;
}

.l-height-32 {
    line-height: 32px;
}

.l-height-34 {
    line-height: 34px;
}

.l-height-36 {
    line-height: 36px;
}

.l-height-38 {
    line-height: 38px;
}

.l-height-40 {
    line-height: 40px;
}

ul {
    margin: 0px;
    padding: 0px;
}

hr {
    margin: 15px 0px;
    padding: 0px;
    border-bottom: 1px solid var(--blackrgba1);
    border-top: 0px;
}

hr.light {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid var(--whitergba1);
    border-top: 0px;
}


.f12 {
    font-size: 12px !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.f20 {
    font-size: 20px !important;
}

.clear {
    clear: both;
}

.pm0 {
    margin: 0px;
    padding: 0px;
}


.m-0 {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}

.p-0 {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.content-xs {
    padding-top: 20px;
    padding-bottom: 20px;
}

.content {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-md {
    padding-top: 80px;
    padding-bottom: 80px;
}

.content-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-xlg {
    padding-top: 150px;
    padding-bottom: 150px;
}


.overflow-h {
    overflow: hidden;
}

.overflow-a {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-x {
    overflow-x: hidden !important
}

.clear-both {
    clear: both;
}

.dp-none {
    display: none;
}

.dp-block {
    display: block;
}

.dp-table {
    display: table;
}

.dp-inline-block {
    display: inline-block;
}

.dp-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.no-padding {
    padding: 0px;
}

.no-margin {
    padding: 0px;
}

.no-border {
    border: none;
}


.full-width {
    width: 100%;
}


.theme-mt-0 {
    margin-top: 0 !important
}

.theme-mt-10 {
    margin-top: 10px
}

.theme-mt-15 {
    margin-top: 15px
}

.theme-mt-20 {
    margin-top: 20px
}

.theme-mt-30 {
    margin-top: 30px
}

.theme-mt-35 {
    margin-top: 35px
}

.theme-mt-40 {
    margin-top: 40px
}

.theme-mt-50 {
    margin-top: 50px
}

.theme-mt-60 {
    margin-top: 60px
}

.theme-mt-70 {
    margin-top: 70px
}

.theme-mt-80 {
    margin-top: 80px
}

.theme-mt-90 {
    margin-top: 90px
}

.theme-mt-100 {
    margin-top: 100px
}

.theme-mt-110 {
    margin-top: 110px
}

.theme-mt-120 {
    margin-top: 120px
}

.theme-mt-130 {
    margin-top: 130px
}

.theme-mt-140 {
    margin-top: 140px
}

.theme-mt-150 {
    margin-top: 150px
}

.theme-mr-0 {
    margin-right: 0px
}

.theme-mr-10 {
    margin-right: 10px
}

.theme-mr-15 {
    margin-right: 15px
}

.theme-mr-20 {
    margin-right: 20px
}

.theme-mr-30 {
    margin-right: 30px
}

.theme-mr-40 {
    margin-right: 40px
}

.theme-mr-50 {
    margin-right: 50px
}

.theme-mr-60 {
    margin-right: 60px
}

.theme-mr-70 {
    margin-right: 70px
}

.theme-mr-80 {
    margin-right: 80px
}

.theme-mr-90 {
    margin-right: 90px
}

.theme-mr-100 {
    margin-right: 100px
}

.theme-mr-110 {
    margin-right: 110px
}

.theme-mr-120 {
    margin-right: 120px
}

.theme-mr-130 {
    margin-right: 130px
}

.theme-mr-140 {
    margin-right: 140px
}

.theme-mr-150 {
    margin-right: 150px
}

.theme-mb-0 {
    margin-bottom: 0
}

.theme-mb-5 {
    margin-bottom: 5px
}

.theme-mb-10 {
    margin-bottom: 10px
}

.theme-mb-15 {
    margin-bottom: 15px
}

.theme-mb-20 {
    margin-bottom: 20px
}

.theme-mb-25 {
    margin-bottom: 25px
}

.theme-mb-30 {
    margin-bottom: 30px
}

.theme-mb-35 {
    margin-bottom: 35px
}

.theme-mb-40 {
    margin-bottom: 40px
}

.theme-mb-50 {
    margin-bottom: 50px
}

.theme-mb-60 {
    margin-bottom: 60px
}

.theme-mb-70 {
    margin-bottom: 70px
}

.theme-mb-80 {
    margin-bottom: 80px
}

.theme-mb-90 {
    margin-bottom: 90px
}

.theme-mb-100 {
    margin-bottom: 100px
}

.theme-mb-110 {
    margin-bottom: 110px
}

.theme-mb-120 {
    margin-bottom: 120px
}

.theme-mb-130 {
    margin-bottom: 130px
}

.theme-mb-140 {
    margin-bottom: 140px
}

.theme-mb-150 {
    margin-bottom: 150px
}

.theme-ml-0 {
    margin-left: 0
}

.theme-ml-10 {
    margin-left: 10px
}

.theme-ml-15 {
    margin-left: 15px
}

.theme-ml-20 {
    margin-left: 20px
}

.theme-ml-30 {
    margin-left: 30px
}

.theme-ml-40 {
    margin-left: 40px
}

.theme-ml-50 {
    margin-left: 50px
}

.theme-ml-60 {
    margin-left: 60px
}

.theme-ml-70 {
    margin-left: 70px
}

.theme-ml-80 {
    margin-left: 80px
}

.theme-ml-90 {
    margin-left: 90px
}

.theme-ml-100 {
    margin-left: 100px
}

.theme-ml-110 {
    margin-left: 110px
}

.theme-ml-120 {
    margin-left: 120px
}

.theme-ml-130 {
    margin-left: 130px
}

.theme-ml-140 {
    margin-left: 140px
}

.theme-ml-150 {
    margin-left: 150px
}

.theme-pt-0 {
    padding-top: 0
}

.theme-pt-10 {
    padding-top: 10px
}

.theme-pt-15 {
    padding-top: 15px
}

.theme-pt-20 {
    padding-top: 20px
}

.theme-pt-30 {
    padding-top: 30px
}

.theme-pt-40 {
    padding-top: 40px
}

.theme-pt-50 {
    padding-top: 50px
}

.theme-pt-55 {
    padding-top: 55px
}

.theme-pt-60 {
    padding-top: 60px
}

.theme-pt-70 {
    padding-top: 70px
}

.theme-pt-80 {
    padding-top: 80px
}

.theme-pt-90 {
    padding-top: 90px
}

.theme-pt-100 {
    padding-top: 100px
}

.theme-pt-110 {
    padding-top: 110px
}

.theme-pt-120 {
    padding-top: 120px
}

.theme-pt-130 {
    padding-top: 130px
}

.theme-pt-140 {
    padding-top: 140px
}

.theme-pt-150 {
    padding-top: 150px
}

.theme-pt-160 {
    padding-top: 160px
}

.theme-pr-0 {
    padding-right: 0
}

.theme-pr-10 {
    padding-right: 10px
}

.theme-pr-15 {
    padding-right: 15px
}

.theme-pr-20 {
    padding-right: 20px
}

.theme-pr-30 {
    padding-right: 30px
}

.theme-pr-40 {
    padding-right: 40px
}

.theme-pr-50 {
    padding-right: 50px
}

.theme-pr-60 {
    padding-right: 60px
}

.theme-pr-70 {
    padding-right: 70px
}

.theme-pr-80 {
    padding-right: 80px
}

.theme-pr-90 {
    padding-right: 90px
}

.theme-pr-100 {
    padding-right: 100px
}

.theme-pr-110 {
    padding-right: 110px
}

.theme-pr-120 {
    padding-right: 120px
}

.theme-pr-130 {
    padding-right: 130px
}

.theme-pr-140 {
    padding-right: 140px
}

.theme-pb-0 {
    padding-bottom: 0
}

.theme-pb-10 {
    padding-bottom: 10px
}

.theme-pb-15 {
    padding-bottom: 15px
}

.theme-pb-20 {
    padding-bottom: 20px
}

.theme-pb-25 {
    padding-bottom: 25px
}

.theme-pb-30 {
    padding-bottom: 30px
}

.theme-pb-40 {
    padding-bottom: 40px
}

.theme-pb-50 {
    padding-bottom: 50px
}

.theme-pb-55 {
    padding-bottom: 55px
}

.theme-pb-60 {
    padding-bottom: 60px
}

.theme-pb-70 {
    padding-bottom: 70px
}

.theme-pb-80 {
    padding-bottom: 80px
}

.theme-pb-90 {
    padding-bottom: 90px
}

.theme-pb-100 {
    padding-bottom: 100px
}

.theme-pb-110 {
    padding-bottom: 110px
}

.theme-pb-120 {
    padding-bottom: 120px
}

.theme-pb-130 {
    padding-bottom: 130px
}

.theme-pb-140 {
    padding-bottom: 140px
}

.theme-pb-150 {
    padding-bottom: 150px
}

.theme-pb-160 {
    padding-bottom: 160px
}

.theme-pl-0 {
    padding-left: 0
}

.theme-pl-10 {
    padding-left: 10px
}

.theme-pl-15 {
    padding-left: 15px
}

.theme-pl-20 {
    padding-left: 20px
}

.theme-pl-30 {
    padding-left: 30px
}

.theme-pl-40 {
    padding-left: 40px
}

.theme-pl-50 {
    padding-left: 50px
}

.theme-pl-60 {
    padding-left: 60px
}

.theme-pl-70 {
    padding-left: 70px
}

.theme-pl-80 {
    padding-left: 80px
}

.theme-pl-90 {
    padding-left: 90px
}

.theme-pl-100 {
    padding-left: 100px
}

.theme-pl-110 {
    padding-left: 110px
}

.theme-pl-120 {
    padding-left: 120px
}

.theme-pl-130 {
    padding-left: 130px
}

.theme-pl-140 {
    padding-left: 140px
}

.theme-pl-150 {
    padding-left: 150px
}

.theme-plb-0 {
    padding: 0
}

.theme-plb-10 {
    padding: 10px 0
}

.theme-plb-20 {
    padding: 20px 0
}

.theme-plb-30 {
    padding: 30px 0
}

.theme-plb-40 {
    padding: 40px 0
}

.theme-plb-50 {
    padding: 50px 0
}

.theme-plb-60 {
    padding: 60px 0
}

.theme-plb-70 {
    padding: 70px 0
}

.theme-plb-80 {
    padding: 80px 0
}

.theme-plb-90 {
    padding: 90px 0
}

.theme-plb-100 {
    padding: 100px 0
}

.theme-plb-110 {
    padding: 110px 0
}

.theme-plb-120 {
    padding: 120px 0
}

.theme-plb-130 {
    padding: 130px 0
}

.theme-plb-140 {
    padding: 140px 0
}

.theme-plb-150 {
    padding: 150px 0
}

.theme-plb-160 {
    padding: 160px 0
}

.theme-mtb-0 {
    margin: 0
}

.theme-mtb-10 {
    margin: 10px 0
}

.theme-mtb-15 {
    margin: 15px 0
}

.theme-mtb-20 {
    margin: 20px 0
}

.theme-mtb-30 {
    margin: 30px 0
}

.theme-mtb-35 {
    margin: 35px 0
}

.theme-mtb-40 {
    margin: 40px 0
}

.theme-mtb-50 {
    margin: 50px 0
}

.theme-mtb-60 {
    margin: 60px 0
}

.theme-mtb-70 {
    margin: 70px 0
}

.theme-mtb-80 {
    margin: 80px 0
}

.theme-mtb-90 {
    margin: 90px 0
}

.theme-mtb-100 {
    margin: 100px 0
}

.theme-mtb-110 {
    margin: 110px 0
}

.theme-mtb-120 {
    margin: 120px 0
}

.theme-mtb-130 {
    margin: 130px 0
}

.theme-mtb-140 {
    margin: 140px 0
}

.theme-mtb-150 {
    margin: 150px 0;
}

.theme-mtb-160 {
    margin: 160px 0;
}


.show-item {
    visibility: visible;
}

.hidden-item {
    visibility: hidden;
    display: none;
}


.show-footer {
    visibility: hidden;
    display: none;
}


#bottom-bar-info {
    left: 5px;
    right: 5px;
    bottom: 5px;
    position: fixed;
    padding: 0px 0px 0px 5px;
    height: 51px;
    line-height: 50px;
    font-weight: bold;
    z-index: 99999 !important;
    background-color: var(--whitergba7);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

#bottom-bar-info .col1,
#bottom-bar-info .col2,
#bottom-bar-info .col3,
#bottom-bar-info .col4,
#bottom-bar-info .col5,
#bottom-bar-info .col6,
#bottom-bar-info .col1 a,
#bottom-bar-info .col2 a,
#bottom-bar-info .col3 a,
#bottom-bar-info .col4 a,
#bottom-bar-info .col5 a,
#bottom-bar-info .col6 a {
    line-height: 42px;
}

#bottom-bar-info svg {
    position: relative;
    left: 0px;
    top: 6px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 1.5;
    stroke-width: 1.5;
    color: var(--white);
    fill: var(--white);

}

.filltransparent svg {
    fill: transparent !important;
}

#bottom-bar-info .col1,
#bottom-bar-info .col2,
#bottom-bar-info .col3,
#bottom-bar-info .col4,
#bottom-bar-info .col5,
#bottom-bar-info .col6,
#bottom-bar-info .col1 a,
#bottom-bar-info .col2 a,
#bottom-bar-info .col3 a,
#bottom-bar-info .col4 a,
#bottom-bar-info .col5 a,
#bottom-bar-info .col6 a {
    line-height: 42px;
    font-weight: bold;
    font-size: 24px;
    width: 42px;
    margin-right: 5px;
    margin-top: 4px;
    height: 42px;
    float: left;
    text-align: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;

    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
}


#bottom-bar-info .col1:hover,
#bottom-bar-info .col2:hover,
#bottom-bar-info .col3:hover,
#bottom-bar-info .col4:hover,
#bottom-bar-info .col5:hover,
#bottom-bar-info .col1 a:hover,
#bottom-bar-info .col2 a:hover,
#bottom-bar-info .col3 a:hover,
#bottom-bar-info .col4 a:hover,
#bottom-bar-info .col5 a:hover {
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


#bottom-bar-info .col1 {
    background: var(--gray5);

}

#bottom-bar-info .col1:hover {
    background: var(--gray8);
}

#bottom-bar-info .col2 {
    background: var(--Whats1);
}

#bottom-bar-info .col2:hover {
    background: var(--Whats2);
}


#bottom-bar-info .col3 {
    background: var(--lblue2);
}

#bottom-bar-info .col3:hover {
    background: var(--lblue3);
}

#bottom-bar-info .col4 {
    background: var(--lblue2);
}

#bottom-bar-info .col4:hover {
    background: var(--lblue3);
}


#bottom-bar-info .col5 {
    background: var(--lblue2);
}

#bottom-bar-info .col5:hover {
    background: var(--lblue3);
}


#bottom-bar-info .col6 {
    background: var(--lblue2);
}

#bottom-bar-info .col6:hover {
    background: var(--lblue3);
}


.btnRightFooter {
    position: fixed;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 0px solid var(--white);
    right: 5px;
    z-index: 999;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    font-size: 28px;

    -webkit-box-shadow: 0px 10px 15px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 15px 0px var(--blackrgba3);
    box-shadow: 0px 10px 15px 0px var(--blackrgba3);
}

.btnRightFooter:before {
    position: absolute;
    top: 22.5px;
    left: 22.5px;
    display: block;
    height: 2px;
    width: 2px;
    background: var(--whitergba0);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

    content: " ";
    z-index: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
}

.btnRightFooter:hover:before,
.btnRightFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--whitergba10);
}

.btnRightFooter span {
    position: relative;
    z-index: 2
}


.btnRightFooter svg {
    position: relative;
    left: 0px;
    top: 3px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    color: var(--white);
    fill: var(--white);
}


.whatsappFooter {
    bottom: 115px;
    color: var(--white);
    background: var(--Whats2);
    -webkit-box-shadow: 0px 10px 15px 0px var(--Whatsrgba);
    -moz-box-shadow: 0px 10px 15px 0px var(--Whatsrgba);
    box-shadow: 0px 10px 15px 0px var(--Whatsrgba);
}

.whatsappFooter:focus,
.whatsappFooter:hover {
    background: var(--Whats2);
}

.whatsappFooter:focus span,
.whatsappFooter:hover span {
    color: var(--white);
}

.whatsappFooter:hover:before,
.whatsappFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--Whats1);
}


.phoneFooter {
    bottom: 60px;
    color: var(--white);
    background: var(--dblue2);
    -webkit-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    -moz-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    box-shadow: 0px 10px 15px 0px var(--lbluergba5);
}

.phoneFooter:focus,
.phoneFooter:hover {
    background: var(--lblue3);
}

.phoneFooter:focus span,
.phoneFooter:hover span {
    color: var(--white);
}

.phoneFooter:hover:before,
.phoneFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--lblue3);
}


.emailFooter {
    bottom: 115px;
    color: var(--white);
    background: var(--dblue2);
    -webkit-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    -moz-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    box-shadow: 0px 10px 15px 0px var(--lbluergba5);
}

.emailFooter:focus,
.emailFooter:hover {
    background: var(--lblue3);
}

.emailFooter:focus span,
.emailFooter:hover span {
    color: var(--white);
}

.emailFooter:hover:before,
.emailFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--lblue3);
}


.mapsFooter {
    bottom: 165px;
    color: var(--white);
    background: var(--dblue2);
    -webkit-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    -moz-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    box-shadow: 0px 10px 15px 0px var(--lbluergba5);
}

.mapsFooter:focus,
.mapsFooter:hover {
    background: var(--lblue3);
}

.mapsFooter:focus span,
.mapsFooter:hover span {
    color: var(--white);
}

.mapsFooter:hover:before,
.mapsFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--lblue3);
}


.wazeFooter {
    bottom: 215px;
    color: var(--white);
    background: var(--dblue2);
    -webkit-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    -moz-box-shadow: 0px 10px 15px 0px var(--lbluergba5);
    box-shadow: 0px 10px 15px 0px var(--lbluergba5);
}

.wazeFooter:focus,
.wazeFooter:hover {
    background: var(--lblue3);
}

.wazeFooter:focus span,
.wazeFooter:hover span {
    color: var(--white);
}

.wazeFooter:hover:before,
.wazeFooter:focus:before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--lblue3);
}


#back-to-top .top {
    position: fixed;
    margin: 0px;
    transition: all .5s ease-in-out;
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 999991;
    font-size: 16px;
    background: var(--blackrgba5);
    color: var(--white);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba0);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba0);
    box-shadow: 0px 5px 25px 0px var(--blackrgba0);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
}

#back-to-top svg {
    position: relative;
    top: -2px;
    width: 26px;
    height: 26px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white);
}

#back-to-top .top:hover {
    background: var(--blackrgba7) !important;
    color: var(--white);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba3);
    box-shadow: 0px 5px 25px 0px var(--blackrgba3);
}

.top-mobile {
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    bottom: 10px !important;
    right: 10px !important;
}


.btn-theme {
    padding: 10px 15px !important;
    font-weight: bold !important;
    color: var(--white) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: left !important;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--Whats1) 0%, var(--Whats2) 50%, var(--Whats1) 100%);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    border: 0px !important;
}

.btn-theme-tre:focus,
.btn-theme-tre:hover,
.btn-theme-two:focus,
.btn-theme-two:hover,
.btn-theme:focus,
.btn-theme:hover {
    background-position: right center;
    -webkit-box-shadow: 0px 10px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 35px 0px var(--blackrgba3);
    box-shadow: 0px 10px 35px 0px var(--blackrgba3);
}

.btn-theme svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.btn-theme-two {
    background-size: 300% auto;
    background-image: linear-gradient(to right, var(--lblue1) 0%, var(--lblue3) 50%, var(--lblue1) 100%);
}

.btn-theme-tre {
    background-size: 300% auto;
    background-image: linear-gradient(to right, var(--lblue1) 0%, var(--lblue3) 50%, var(--lblue1) 100%);
}

.btn-theme-two small {
    text-align: left;
    position: relative;
    left: 25px;
    margin: 0px;
    padding: 0px;
    display: block;
    font-weight: bold;
    color: var(--white);

}

.btn-theme-two strong {
    text-align: left;
    position: relative;
    left: 25px;
    top: 0px;

    margin: 0px;
    padding: 0px;
    display: block;
    color: var(--white);
}

.btn-theme-two svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.button-modal {
    width: 50px;
    height: 50px;
    background: var(--lblue2);
    top: -10px;
    right: -10px;
    position: absolute;
    display: block;
    text-indent: -9999px;
    cursor: pointer;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    z-index: 9999999999999 !important;
}

.button-modal:hover {
    background: var(--lblue2);
}

.button-modal:before,
.button-modal:after {
    content: '';
    width: 55%;
    height: 2px;
    background: var(--white);
    position: absolute;
    top: 48%;
    left: 22%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button-modal:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button-modal:hover:before,
.button-modal:hover:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}


.modal-header {
    border-bottom: 0px solid var(--lblue2) !important;
    -webkit-border-radius: 3px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius: 3px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-radius: 3px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background: var(--lblue2);
    position: relative;
}

.modal-header h5 {
    font-weight: bold;
    color: var(--white);
    font-size: 1.2rem
}

.modal-content {
    border: 0px solid var(--blackrgba2) !important;
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
}

.modal-content p {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 600;
color: var(--black);
}

.modal-content .btn-theme {
    background-color: var(--lblue2);
    color: var(--white) !important;
    border: 0px solid var(--lblue2);
    margin: 3px;
    padding: 6px 10px;
}


.modal-content .btn-theme:hover,
.modal-content .btn-theme:focus {
    background-color: var(--lblue1);
    color: var(--white) !important;
    border: 0px solid var(--lblue1) !important;
}


@media (min-width: 1200px) {
    .modal-xl {
        max-width: 94%;
    }
}

@media (min-width: 992px) {
    .modal-xl {
        max-width: 90%;
    }
}


.modal-footer {
    border-top: 0px solid var(--white);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.modal-footer p {
    font-size: 12px;
    margin: 0px;
}
.modal-body {
    padding: 0.5rem;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: var(--white);
}

.modal-footer {
    border-top: 0px solid var(--white);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: var(--white);
}

@media (max-width: 767px) {
    .modal-content p {
        font-size: 14px;
        line-height:1.1;
    }
}

.modal {
    z-index: 9999;
}

.return-message-inner *,
.return-message-agenda * {
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.return-message-inner {
    text-align: left;
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    background: var(--white);
    color: var(--gray3);
    font-weight: bold;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.return-message-agenda {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    background: var(--white);
    color: var(--gray3);
    font-weight: bold;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.return-message-inner img {
    padding: 0;
    margin: 0;
}

.return-message-error {
    background: var(--danger);
    color: var(--white);
}

.return-message-info {
    background: var(--warning);
    color: var(--white);
}


.return-message-success {
    background: var(--success);
    color: var(--white);
}


.toolbar-fnc .inner {
    position: fixed;
    top: 200px;
    left: -1px;
    display: block;
    width: 41px;
    border: 0 solid var(--eeeeee);
    border-right: 0;
    border-radius: 0 5px 5px 0;
    text-align: center;
    z-index: 900
}

.toolbar-fnc .inner a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--gray5);
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    cursor: pointer
}

.toolbar-fnc .inner a i {
    font-size: 20px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.toolbar-fnc .inner a[class*=hint--] {
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1)
}

.toolbar-fnc .inner a[class*=hint--]::after,
.toolbar-fnc .inner a[class*=hint--]::before {
    position: absolute;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.toolbar-fnc .inner a[class*=hint--]::before {
    content: "";
    position: absolute;
    background: 0 0;
    border: 7px solid transparent;
    z-index: 1000001;
    left: 42px;
    bottom: 50%;
    margin-right: -13px;
    margin-bottom: -7px;
    border-left-color: var(--gray5)
}

.toolbar-fnc .inner a[class*=hint--]::after {
    content: attr(aria-label);
    background: var(--gray5);
    color: var(--white);
    padding: 8px 10px;
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    border-radius: 5px
}

.toolbar-fnc .inner a.hint--bounce {
    -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    -o-transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24), -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24)
}

.toolbar-fnc .inner a.hint--left::after {
    margin-bottom: -15px;
    left: 42px;
    bottom: 50%
}

.toolbar-fnc .inner a:hover {
    color: var(--lblue2);
}

.toolbar-fnc .inner a:hover[class*=hint--]::after,
.toolbar-fnc .inner a:hover[class*=hint--]::before {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.toolbar-fnc .inner a:hover[class*=hint--]::before {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px)
}

.toolbar-fnc .inner a:hover[class*=hint--]::after {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px)
}


.close-button {
    width: 50px;
    height: 50px;
    background: var(--dblue2);
    position: relative;
    right: 10px;
    top: 0px;
    display: block;
    text-indent: -9999px;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    border-radius: 50px !important;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.close-button:hover,
.close-button:focus {
    background: var(--lblue2);
}

.close-button:before,
.close-button:after {
    content: '';
    width: 55%;
    height: 2px;
    background: var(--white);
    position: absolute;
    top: 48%;
    left: 22%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.close-button:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.close-button:hover:before,
.close-button:hover:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.form-control select,
.form-control {
    display: block;
    padding: 12px 15px 12px 15px !important;
    font-size: 16px;
    color: var(--white);
    height: 50px;
    background-color: var(--lblue2);
    outline: none !important;
    background-clip: padding-box;
    border: 0px solid var(--lblue2) !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-control select option {
    background-color: var(--lblue2);
    color: var(--white);
}


.form-control:focus,
.form-control:hover {
    color: var(--white);
    background-color: var(--gray9);
    border-color: var(--gray9);
    outline: 0;
    -webkit-box-shadow: 0px 0px 15px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 15px 0px var(--blackrgba2);
    box-shadow: 0px 0px 15px 0px var(--blackrgba2);
}

textarea {
    resize: none;
}


#contact .form-group {
    position: relative;
}

#contact .form-group i {
    position: absolute;
    top: 42px;
    left: 10px;
    font-size: 22px;
    color: var(--gray9);
    z-index: 1;
}

#contact .form-control {
    padding: 12px 15px 12px 36px !important;
}


::placeholder {
    color: var(--white) !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--white) !important;
}

::-ms-input-placeholder {
    color: var(--white) !important;
}


.modal-backdrop {
    background: var(--orange3) !important;
}

.modal-backdrop.fade,
.modal-backdrop.show {
    opacity: 0.7 !important;
}


/* SUPPORT BUTTONS */
.special-btn {
    background: var(--Whats1);
    background: -moz-linear-gradient(-45deg, var(--Whats1) 0%, var(--Whats2) 82%);
    background: -webkit-linear-gradient(-45deg, var(--Whats1) 0%, var(--Whats2) 82%);
    background: linear-gradient(135deg, var(--Whats1) 0%, var(--Whats2) 82%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--Whats1)', endColorstr='var(--Whats2)', GradientType=1);


    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: var(--white);
    display: table;
    height: 50px;
    min-width: 50px;
    text-align: center !important;
    z-index: 999;
    bottom: 120px;
    right: 5px;
    position: fixed;
    overflow: hidden;
    -webkit-box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
    -moz-box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
    box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
}

.special-btn svg {
    position: relative;
    left:6px;
    top:9px;
    width: 26px;
    height: 26px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white);
}

.special-btn:hover {
    color: var(--white);
    background-color: var(--dblue2);
    padding: 0 20px;
    -webkit-box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
    -moz-box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
    box-shadow: 0px 10px 15px 0px var(--Whatsrgba3);
}

.special-btn span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -9px;
    opacity: 0;
    line-height: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 600;

}

.special-btn:hover span {
    opacity: 1;
    left: 0px;
    letter-spacing: 0px;
    padding-left: 10px;
}


.special-btn-two {
    background: var(--lblue3);
    background: -moz-linear-gradient(-45deg, var(--lblue1) 0%, var(--lblue3) 82%);
    background: -webkit-linear-gradient(-45deg, var(--lblue1) 0%, var(--lblue3) 82%);
    background: linear-gradient(135deg, var(--lblue1) 0%, var(--lblue3) 82%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--lblue1)', endColorstr='var(--lblue3)', GradientType=1);


    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: var(--white);
    display: table;
    height: 50px;
    min-width: 50px;
    text-align: center !important;
    z-index: 999;
    bottom: 60px;
    right: 5px;
    position: fixed;
    overflow: hidden;
    -webkit-box-shadow: 0px 10px 15px 0px var(--lbluergba3);
    -moz-box-shadow: 0px 10px 15px 0px var(--lbluergba3);
    box-shadow: 0px 10px 15px 0px var(--lbluergba3);
}

.special-btn-two svg {
    position: relative;
    left: 0px;
    top: 7px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white);
}

.special-btn-two:hover {
    color: var(--white);
    background-color: var(--gray1);
    padding: 0 20px;
    -webkit-box-shadow: 0px 10px 15px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 15px 0px var(--blackrgba3);
    box-shadow: 0px 10px 15px 0px var(--blackrgba3);
}

.special-btn-two span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -9px;
    opacity: 0;
    line-height: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 600;

}

.special-btn-two:hover span {
    opacity: 1;
    left: 0px;
    letter-spacing: 0px;
    padding-left: 10px;
}


.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}


.topright-modal {
    top: 0px;
    right: 0px;
}


.modal-body h2 {
    font-size: 24px;
    margin: 15px 0px;
    color: var(--lblue2);
}

.modal-body h3 {
    font-size: 18px;
    margin: 15px 0px;
    color: var(--lblue2);
}

.modal-body a {
    font-weight: bold;
    color: var(--lblue2);
}

.modal-body li {
    font-weight: normal;
    margin: 0px 0px 3px 0px;
}


.lazy {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

img:not(.lazy) {
    opacity: 1;
}
