/*Main Css */

:root {
    --primary: #0077B6;
    --secondary: #000000;
    --black: #000F0C;
    --white: #fff;
    --body-color: #666666;
    --font-heading: 'Helvetica Neue LT Std';
    --font-title: 'Andale Mono';
    --font-hdInner: 'Oswald';
    --font-logo: 'Poppins';
    --font-accent: 'Helvetica Neue';
    --font-body: 'Helvetica Neue';
    --font-para: 'Inter';
    --icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
background: var(--primary);
color: #fff;
text-shadow: none;
}

::-webkit-scrollbar {
width: 5px;
background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: none;
}

::-webkit-scrollbar-track-piece {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
display: none;
}

[class^="box-"].showfirst {
display: block;
}

body {
font-family: var(--font-body);
overflow-x: hidden;
font-size: 16px;
color: var(--body-color);
font-weight: 400;
line-height: 30px;
letter-spacing: 0em;
}

body.inner-header {
padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
display: block;
color: var(--secondary);
text-transform: capitalize;
}

h1{
font-size: 70px;
font-weight: 700;
line-height: 84px;
}

h2 {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 700;
line-height: 46px;
color: var(--black);
}

h2 span.text-bold {
font-weight: bold;
}

h4 {
font-size: 26px;
line-height: 1.12;
}

h6{
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

.text-primary{
color: var(--primary) !important;
}

.text-secondary{
color: var(--secondary) !important;
}

.btn {
padding: 19px 30px;
border-radius: 0px;
text-transform: capitalize;
font-family: var(--font-body) !important;
font-size: 20px;
font-weight: 700;
line-height: 24.42px;
}

.btn:focus, .btn:active:focus{
box-shadow: none;
}

.btn i{
font-size: 14px;
font-weight: 600;
}

.btn-primary{
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-white:hover{
opacity: 0.95;
color: #7F8E86;
background-color: var(--white);
}

.btn-secondary{
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white);
}

.btn-secondary:hover{
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary);
}

footer{
background-color: var(--white);
padding-top: 90px;
}

footer .border-top {
border-top: 1px solid #808080!important;
}

.f-logo {
font-family: var(--font-para);
font-size: 30px;
font-weight: 700;
line-height: 45px;
text-align: center;
color: var(--primary);
white-space: nowrap;
}

.f-logo:hover {
color: var(--primary);
}

.f-logo-content {
margin-top: 2px;
font-size: 16px;
font-weight: 400;
line-height: 33px;
letter-spacing: 0.5px;
color: #000000
}

.f-menu {
margin-top: 30px;
}

.f-menu .f-icon-box {
display: flex;
align-items: baseline;
gap: 20px;
margin-bottom: 10px;
}

.f-menu .f-icon-box a, .f-menu .f-icon-box p{
color: var(--white);
}

.f-menu .f-icon-box i{
color: var(--white);
}

ul.f-menu li a {
font-size: 16px;
color: var(--secondary);
font-weight: 400;
line-height: 19px;
letter-spacing: 0.5px;
margin-bottom: 9px;
}

ul.f-menu li a:hover{
color: var(--primary);
}

.footer-content{
padding-top: 35px;
padding-bottom: 70px;
}

footer h6{
font-family: var(--font-heading);
color: var(--white);
position: relative;
font-size: 22px;
font-weight: 700;
line-height: 24px;
}

.copyright {
padding-top: 37px;
padding-bottom: 87px;
border-top: 1px solid hwb(0deg 25% 75% / 50%);
color: var(--black);
}

.copyright p{
font-family: var(--font-body);
font-size: 16px;
line-height: 28px;
letter-spacing: normal;
font-weight: 400;
max-width: 796px;
margin: 0 auto;
}

*:hover,
*:focus,
* {
outline: none !important;
}

img {
max-width: 100%;
height: auto;
}

a,
input[type="submit"] {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
display: inline-block;
cursor: pointer;
text-decoration: none;
}

span {
display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
font-family: var(--font-body);
font-weight: 400;
}

::-webkit-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-ms-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
opacity: 1;
}

/* Padding Classes */
.pad-zero {
padding: 0px;
}
.pad-l-zero {
padding-left: 0px;
}
.pad-r-zero {
padding-right: 0px;
}
.ovr-hiddn {
overflow: hidden;
}
.overlay {
content: "";
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.overlay {
display: none;
}
.overlay.active {
display: block;
}

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}
.slick-slide {
margin: 0 15px;
}
.slick-dots {
padding: 50px 0 0;
text-align: center;
}
.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}
.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}
.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}
/*header css*/

/* header {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
position: fixed;
background: transparent;
z-index: 1;
left: 0;
right: 0;
top: 0;
}
header.sticky{
background: white;
box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
top: 0;
} */

.main-header{
width: 100%;
padding-top: 22px;
padding-bottom: 18px;
padding-top: 18px;
padding-bottom: 21px;
border-bottom: 1px solid #E7E7E7;
background-color: var(--white);
position: relative;
z-index: 3;
}

.hero-img {
position: absolute;
right: 0;
top: -94px;
z-index: -1;
}

/* .menuWrap {
display: flex;
align-items: center;
justify-content: center;
} */

.desktop-header .menuWrap {
display: flex;
align-items: center;
justify-content: end;
}
.logo {
display: inline-block;
}
.logo img {
display: block;
height: 85px;
}

/* Hamburger Menu */
.menu-Bar {
width: 30px;
height: 20px;
cursor: pointer;
position: absolute;
right: 15px;
top: 0;
bottom: 0px;
margin: auto;
z-index: 22;
display: none;
}
.menu-Bar span {
display: block;
height: 4px;
width: 100%;
background: var(--primary);
position: absolute;
transition: 0.6s all;
border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
top: 0;
}
.menu-Bar span:nth-child(2) {
top: 8px;
transform-origin: left;
}
.menu-Bar span:nth-child(3) {
top: 16px;
}
.menu-Bar.open span:nth-child(1) {
transform: rotate(45deg);
top: 12px;
transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
width: 0;
opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
transform: rotate(-45deg);
top: 12px;
transform-origin: right-center;
}

/* Menu Css */
.menu {
font-size: 0px;
display: inline-block;
vertical-align: middle;
}

.menu-callnow {
color: var(--primary) !important;
background: transparent;
}

.menu-callnow i{
color: var(--dark) !important;
line-height: 2;
}

.menu > li {
display: inline-block;
vertical-align: middle;
padding: 0 0 0 43px;
}

.menu > li:last-child a{
padding: 18px 61px;
}

.menu > li > a {
display: block;
font-family: var(--font-body);
font-size: 18px;
font-weight: 700;
line-height: 21.98px;
color: var(--body-color);
}

.btn-header {
background: var(--primary);
color: white !important;
padding: 15px 20px;
border-radius: 8px;
font-weight: 400 !important;
}

.btn-header:hover{
transform: scale(1.03);
}

.menu > li :hover > a,
.menu > li.active > a {
color: var(--primary);
}

@keyframes scale-display {
0% {
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
}
@keyframes scale-display--reversed {
0% {
display: inline-flex;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
99% {
display: inline-flex;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
100% {
display: none;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
}

@keyframes btotreverse {
0% {
top: 75px;
opacity: 1;
}
100% {
top: 115px;
opacity: 0;
}
}

@keyframes btot {
0% {
top: 115px;
opacity: 0;
}
100% {
top: 40px;
opacity: 1;
}
}

/* Main Banner CSS */

.mainBanner {
height: 762px;
width: 100%;
display: flex;
align-items: center;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
position: relative;
z-index: 1;
background-color: #F7F7F7;
}

.has-child {
position: relative;
z-index: 1;
}

.dropdown .dropdown {
left: 100%;
top: 0;
}
.dropdown {
position: absolute;
border-radius: 0px 0px 10px 10px;
top: 100%;
display: none;
}

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}
.slick-slide {
margin: 0 15px;
}
.slick-dots {
padding: 50px 0 0;
text-align: center;
}
.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}
.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}
.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

span.count {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.counter span.text-white {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.form-select, .form-select:focus {
background: transparent;
border: 1px solid #626262;
border-radius: 24px;
padding: 8px 34px 8px 29px;
color: #ddd;
font-size: 13px;
margin-bottom: 18px;
color: var(--bg-light);
box-shadow: none;
}

.slick-center button.slick-prev.slick-arrow {
position: absolute;
top: 96%;
left: 50%;
font-size: 0px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
z-index: 0;
}

.index-slider button.slick-prev.slick-arrow {
position: absolute;
top: 92%;
left: 92%;
font-size: 0px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
z-index: 2;
}

.index-slider button.slick-prev.slick-arrow::before {
content: "\f177";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.slick-center button.slick-prev.slick-arrow::before {
content: "\f177";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow {
position: absolute;
top: 92%;
right: 4%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 2;
}

.slick-center button.slick-next.slick-arrow {
position: absolute;
top: 96%;
right: 46%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 0;
}

.slick-center button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.slider-for img{
width: 100%;
object-fit: cover;
object-position: center;
height: 454px;
margin-bottom: 16px;
}

.slider-nav img{
height: 174px;
width: 100%;
object-fit: cover;
object-position: center;
}

.slick-center img {
width: 100%;
height: 500px;
}

.slick-center .slick-list.draggable {
padding: 0 24% 0 !important;
}

.slick-center .slick-slide {
margin: 0 70px;
}

.slick-center .slick-current img {
position: relative;
top: -41px;
}

.sliderDiv{
background-size: cover;
height: 1200px;
width: 100%;
background-repeat: no-repeat;
}

.socail-icons{
display: flex;
}

ul.socail-icons li i{
color: #fff;
font-size: 18px;
font-weight: 300;

}

ul.socail-icons li{
margin-right: 10px;
}

a.logo {
font-family: var(--font-logo);
font-size: 30px;
font-weight: 700;
line-height: 45px;
color: var(--primary);
}

/* inner pages */

.inner-banner{
display: flex;
justify-content: center;
align-items: center;
height: 436px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.inner-banner .content {
text-align: center;
}

.inner-banner .content h1 {
font-size: 55px;
font-weight: 600;
line-height: 80px;

}

/* inner pages */

.footer-border {
height: 1px;
margin: 61.5px 83px 29px 177px;
background-color: rgba(255, 255, 255, 0.1);
margin-top: 60px;
}

ul.footer-social-icons{
display: flex;
margin-top: 20px;
}

ul.footer-social li a {
font-size: 16px;
line-height: 1.5;
text-align: left;
color: var(--white);
margin-bottom: 15px;
}

ul.footer-social li a i {
color: var(--primary);
margin-right: 17px !important;
}

ul.footer-social li a:hover{
color: var(--primary);
}

ul.footer-social-icons li {
margin-right: 12px;
}

ul.footer-social-icons li a{
color: var(--secondary);
background-color: transparent;
display: flex;
justify-content: center;
height: 29px;
width: 29px;
border-radius: 50%;
border: 1px solid var(--secondary);
padding-top: 7px;
}

ul.footer-social-icons li a:hover{
background-color: var(--primary);
border: 1px solid var(--primary);
}

ul.footer-social-icons li a i {
font-size: 10px;
color: var(--secondary);
}

.menu-Bar a.logo {
font-size: 45px;
font-weight: 600;
font-stretch: normal;
font-style: normal;
line-height: 1.31;
letter-spacing: normal;
text-align: left;
color: #1dd3b0;
}

li.dropdown {
position: relative;
}

li.dropdown a {
display: inline-block;
}

li.dropdown:hover ul.sub-menu {
top: 90%;
opacity: 1;
visibility: visible;
}
ul.sub-menu {
position: absolute;
z-index: 1;
width: 100%;
background-color: #fff;
box-shadow: 0 20px 20px rgb(0 0 0 / 20%);
min-width: 200px;
padding: 10px;
border-radius: 5px;
transition: .3s top ease-in-out;
top: 200%;
left: 40px;
opacity: 0;
visibility: hidden;
}

.dropdown::after {
display: inline-block;
margin-left: 0.465em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
font-size: 14px;
color: #222;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
}

.dropdown:hover::after, .dropdown.active::after {
color: var(--primary);
}

ul.sub-menu li {
margin: 0;
display: block;
margin-bottom: 0px;
text-align: left;
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
}

ul.sub-menu li:last-child {
border: 0;
margin-bottom: 0px;
}

.menu > li > a:hover {
color: var(--primary);
}

ul.sub-menu li:last-child a{
padding-bottom: 0px;
}

ul.sub-menu li a {
font-size: 12px;
color: #121b2b !important;
padding-bottom: 10px;
}

ul.breadcrumb-menu {
display: block;
text-transform: uppercase;
}

ul.breadcrumb-menu li {
display: inline-block;
vertical-align: middle;
position: relative;
color: var(--primary);
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

ul.breadcrumb-menu li a {
color: var(--dark-light);
}

ul.breadcrumb-menu li+li {
margin-left: 0px;
}

ul#counter {
display: flex;
align-items: center;
gap: 7rem;
/* padding: 24px 36px; */
/* border-radius: 8px; */
/* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
/* background-color: #222; */
/* margin-top: -112px;*/
}
.counter-wrapper .counter {
display: flex;
align-items: center;
gap: 20px;
}
.counter-wrapper .counter span.count {
font-weight: 700;
font-size: 45px;
color: #000;
}
ul#counter li .counter>div {
font-weight: 600;
line-height: 1;
font-size: 38px;
color: #fff;
/* padding-bottom: 10px; */
flex-shrink: 0;
}
ul#counter li {
background-repeat: no-repeat;
background-position: center;
width: 100%;
text-align: center;
line-height: 28px;
display: flex;
align-items: center;
justify-content: center;
}
ul#counter li .counter span.text {
font-family: var(--font-body);
font-size: 14px;
line-height: 2;
letter-spacing: normal;
text-align: left;
color: var(--white);
font-weight: normal;
}

ul#counter li:nth-child(1) .counter>div {
color: #ec4e52;
}
ul#counter li:nth-child(2) .counter>div {
color: #ebd142;
}
ul#counter li:nth-child(3) .counter>div {
color: #62a488;
}

.counter span.text-dark {
font-weight: 600;
font-size: 30px;
}

/* ------- */

.index-slider-news button.slick-prev.slick-arrow {
position: absolute;
top: 23%;
left: -68px;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
z-index: 2;
line-height: 0;
border-radius: 50%;
}

.index-slider-news button.slick-prev.slick-arrow::before {
content: "\f104";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.index-slider-news button.slick-next.slick-arrow {
position: absolute;
top: 23%;
right: -70px;
border: none;
background-color: transparent;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
background-color: transparent;
line-height: 0;
border-radius: 50%;
z-index: 2;
}

.index-slider-news button.slick-next.slick-arrow::before {
content: "\f105";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.form-control {
border: 1px solid #D2D2D2;
margin-bottom: 20px;
border-radius: 0;
height: 35px;
}

.testimonials-slider button.slick-prev.slick-arrow {
position: absolute;
bottom: 9px;
right: 65px;
font-size: 0px;
background-color: var(--primary);
z-index: 2;
line-height: 0;
border-radius: 0;
border: 0;
padding: 13px 13px 13px 21px;
height: 50px;
}

.testimonials-slider button.slick-prev.slick-arrow::before {
content: "\f060";
font-size: 24px;
font-weight: 900;
color: var(--white);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.testimonials-slider button.slick-next.slick-arrow {
position: absolute;
bottom: 9px;
right: 20px;
border: none;
background-color: transparent;
font-size: 0px;
background-color: var(--primary);
z-index: 2;
line-height: 0;
border-radius: 0;
border: 0;
padding: 13px 21px 13px 13px;
height: 50px;
}

.testimonials-slider button.slick-next.slick-arrow::before {
content: "\f061";
font-size: 24px;
font-weight: 900;
color: var(--white);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

/* Accordian */

.accordion-list {
position: relative;
}

.accordion-list li {
padding: 0px 0px 22px 2px;
cursor: pointer;
width: 100%;
margin: 0 auto;
border-bottom: 0;
background: white;
box-shadow: none;
border-radius: 0px;
margin-bottom: 0rem;
padding: 17px 14px;
border: 1px solid #EAEAEA;
background-color: #FAFAFA;
margin-bottom: 14px;
}

ul.accordion-list li span {
display: flex;
position: relative;
}

.accordion-list li h3 {
color: var(--secondary) !important;
display: flex;
align-items: center;
font-size: 16px !important;
font-weight: 700 !important;
line-height: 19.54px !important;
text-align: left;
font-family: var(--font-body) !important;
}

.accordion-list li.active h3 {
color: var(--primary) !important;
font-size: 16px;

}

ul.accordion-list li h3:after {
content: "\f067";
font-family: "Font Awesome 5 Pro";
position: absolute;
right: 0;
right: 0;
color: var(--secondary);
transition: all 0.3s ease-in-out;
font-size: 14px;
font-weight: 900;
top: 0;
}

.accordion-list li.active h4::after {
color: #9CA3AF;
content: "\f077";
}

ul.accordion-list li.active h3:after {
content: "\f068";
color: var(--primary);
}

.answer p {
margin-top: 16px;
font-size: 16px !important;
font-weight: 400 !important;
line-height: 30px !important;
color: #383838 !important;
}

/* Accordian */

/* Subscription */

.subscription {
margin-top: 18px;
margin-bottom: 44px;
}

.subscribe button.btn-subscribe {
width: 38px;
padding: 0;
display: inline-block;
height: 38px;
border-radius: 0;
color: #fff;
border: none;
background: var(--primary);
font-size: 14px;
}

.subscribe input.form-control {
border: none;
width: 82%;
padding: 8px 13px;
height: 100%;
margin: 0;
display: inline-block;
color: var(--white);
background-color: transparent;
}

.subscribe {
border: 1px solid #72727250;
height: 65px;
margin-top: 18px;
}

/* Subscription */

.sec-pad{
padding-top: 100px;
padding-bottom: 100px;
}

/* topbar */

.top-bar {
padding: 15px 0;
background: var(--primary);
}

.top-social-icons {
display: flex;
justify-content: end;
gap: 20px;
}

.top-contact-info {
display: flex;
gap: 22px;
}

.top-contact-info li {
display: flex;
gap: 10px;
align-items: baseline;
}

.top-contact-info li a {
color: var(--white);
}

.top-social-icons li a i{
color: var(--white);
}

/* topbar */

/* contact page */

.contactIconBg li {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.contactIconBg .icon{
width: 64px;
height: 64px;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--white);
background-color: var(--primary);
}

.hero-content > p {
font-family: var(--font-body);
font-size: 24px;
font-weight: 400;
line-height: 39.12px;
text-align: left;
max-width: 555px;
}

.hero-content .btns {
margin-top: 18px;
display: flex;
gap: 15px;
}

.hero-content .logos {
margin-top: 37px;
}

span.top-title {
font-family: var(--font-title);
font-size: 15px;
font-weight: 400;
line-height: 18px;
letter-spacing: 2.88px;
text-transform: uppercase;
color: var(--black);
margin-bottom: 21px;
}

section.works .top-sec {
text-align: center;
}

section.works .top-sec p.para{
font-family: var(--font-heading);
font-size: 16px;
font-weight: 700;
line-height: 22px;
color:var(--secondary);
margin-top: 9px;
}

section.wedo .top-sec {
text-align: center;
}

section.wedo .top-sec p.para{
font-family: var(--font-heading);
font-size: 16px;
font-weight: 700;
line-height: 22px;
color:var(--secondary);
margin-top: 9px;
}

section.wedo .bottom-sec{
margin-top: 65px;
}

.wedo-card {
background-color: #F7F7F7;
text-align: center;
padding: 31px 11px 21px;
border-top: 12px solid #E4E4E4;
transition: 0.6s ease-in-out;
}

.wedo-card:hover {
border-top: 12px solid var(--primary);

}

.wedo-card h4.title {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 700;
line-height: 19.54px;
text-align: center;
margin-top: 26px;
}

.wedo-card p.para {
font-family: var(--font-para);
font-size: 16px;
font-weight: 400;
line-height: 25px;
text-align: center;
margin-top: 19px;
color: var(--body-color);
}

.wedo-img {
position: relative;
z-index: 1;
}

/* .wedo-img::before {
width: 100px;
height: 100px;
top: 16px;
border-radius: 50%;
left: 92px;
background: #E4E4E4;
position: absolute;
content: '';
z-index: -1;
} */

h4.title.wedo-mar {
margin-top: 40px;
}

section.package {
background: #F7F7F7;
}

section.package .top-sec {
text-align: center;
}

section.package .bottom-sec {
margin-top: 29px;
}

.price-card {
background-color: var(--white);
padding: 21px 21px 40px;
border: 1px solid #F49F07;
border-bottom: 0;
position: relative;
z-index: 1;
}

.pkg-border {
position: absolute;
content: '';
background-color: #E4E4E4;
height: 10px;
left: -0.5px;
bottom: 0;
width: 100.4%;
}

.price-card h3.title {
font-family: var(--font-body);
font-size: 24px;
font-weight: 700;
line-height: 24.64px;
text-align: left;
}

.price-card .starting {
margin-top: 40px;
}

.price-card .starting span.txt {
font-family: var(--font-body);
font-size: 14.37px;
font-weight: 500;
line-height: 17.55px;
text-align: left;
color: #08203A;
}

.pricing {
display: flex;
gap: 10px;
}

.pricing p.price {
font-family: var(--font-body);
font-size: 60px;
font-weight: 700;
line-height: 73.26px;
color: #08203A;
margin-top: 3px;
}

.price-card p.para {
font-family: var(--font-body);
font-size: 14.37px;
font-weight: 400;
line-height: 20.53px;
text-align: left;
margin-top: 9px;
}

ul.priceList li p {
font-family: var(--font-body);
font-size: 14.37px;
font-weight: 700;
line-height: 20.53px;
color: #08203A;
}

ul.priceList {
margin-top: 24px;
    height: 250px;
    overflow-y: scroll;
}

ul.priceList li {
display: flex;
gap: 10px;
align-items: flex-start;
margin-bottom: 15px;
}

ul.priceList li i{
color: #08203A;
}

.price-card a.btn.btn-primary {
margin-top: 30px;
padding: 13px 0;
width: 100%;
font-family: var(--font-body);
font-size: 14.37px;
font-weight: 700;
line-height: 24.64px;
letter-spacing: 0.05em;
}

.price-card p.fees {
font-size: 12.32px;
font-weight: 500;
line-height: 15.04px;
text-align: left;
margin-top: 25px;
color: var(--secondary);
}

section.testimonials {
background-size: cover !important;
background-repeat: no-repeat !important;
padding-top: 120px;
padding-bottom: 282px;
}

section.testimonials span.top-title {
margin-bottom: 11px;
}

section.testimonials
h2.title {
font-size: 36px;
font-weight: 700;
line-height: 42px;
text-align: left;
color: var(--white);
}

section.testimonials .top-sec p.para {
font-family: var(--font-body);
font-size: 16px;
font-weight: 400;
line-height: 30px;
text-align: left;
color: #BBC9D5 !important;
}

section.testimonials .bottom-sec {
margin-top: 67px;
}

.testimonials-card {
background: #fff;
padding: 24px 21px 25px;
position: relative;
}

.testimonials-card::after{
position: absolute;
content: '';
width: 85%;
background: #3F4959;
left: 0;
bottom: -25px;
z-index: -1;
height: 37px;
right: 0;
margin: auto;
}

.testimonials-slider .slick-list.draggable {
padding-bottom: 2%;
}

.testimonials-card .user {
display: flex;
align-items: center;
gap: 21px;
}

.info h5.title {
font-family:var(--font-heading);
font-size: 22px;
font-weight: 700;
line-height: 26.4px;
text-align: left;
color: #383838;
}

.info p.design {
margin-top: 15px;
font-family: var(--font-body);
font-size: 14px;
font-weight: 500;
line-height: 17.09px;
text-align: left;
color: var(--primary);
}

.testimonials-card p.para {
margin-top: 30px;
font-size: 16px;
font-weight: 400;
line-height: 30px;
max-width: 478px;
}

.slick-dots li button {
width: 5.52px;
height: 5.52px;
background: #6C8DAF;
}

.slick-dots li.slick-active button {
width: 5.52px;
height: 5.52px;
background: var(--primary);
/* display: flex; */
/* align-items: center; */
/* justify-content: center; */
padding: 3px;
margin: 3px;
}

li.slick-active {
border: 2px solid var(--primary);
border-radius: 50%;
height: 16px;
width: 16px;
}

.slick-dots li{
height: 16px;
width: 16px;
margin: 0 4px 0 0px !important;
}

.quote {
display: flex;
justify-content: end;
margin-right: 18px;
}
.quote i {
    font-size: 60px;
    color: var(--primary);
}

section.faqs {
margin-top: -300px;
}

section.faqs .bottom-sec {
padding-top: 124px;
}

section.faqs .bottom-sec span.top-title {margin-bottom: 10px;color: #d61120;}

section.faqs .bottom-sec h2.title{
font-size: 36px;
font-weight: 700;
line-height: 46px;
color: #000F0C;

}

.accordion-list li.active .answer {
display: block !important;
}

section.register p.para {
margin-top: 9px;
font-size: 24px;
font-weight: 400;
line-height: 38px;
}

section.register a.btn.btn-secondary {
margin-top: 29px;
padding: 32px 88px;
}

.callNow {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 19px;
color: var(--white);
}

.callNow a.btn {
padding: 0;
color: var(--white);
display: flex;
align-items: center;
gap: 10px;
}

.callNow a.btn:hover{
opacity: 0.85;
color: var(--white);
}

.callNow a.btn i {
font-weight: 500;
font-size: 18px;
}

.callNow a.btn span {
border-bottom: 1px solid #f9f9f9;
line-height: 1;
}

section.register {
background-repeat: no-repeat !important;
background-size: cover !important;
font-size: 0;
position: relative;
z-index: 1;
background: #03045E;
}

/*section.register::before{*/
/*border: 10px solid #303030;*/
/*content: '';*/
/*width: 100%;*/
/*height: 10px;*/
/*left: 0;*/
/*top: -10px;*/
/*position: absolute;*/
/*}*/

h6.hd {
font-family: var(--font-body);
font-size: 18px;
font-weight: 700;
line-height: 21.98px;
/* text-align: center; */
color: var(--primary);
position: relative;
}

p.cls::after {
position: absolute;
content: '';
background-color: var(--primary);
height: 2px;
width: 20%;
right: 20px;
top: 10px;
}

span.cls {
display: inline;
position: absolute;
content: '';
background-color: var(--primary);
height: 2px;
width: 20%;
right: 20px;
top: 10px;
}

span.cls1 {
display: inline;
position: absolute;
content: '';
background-color: var(--primary);
height: 2px;
width: 40px;
right: 74px;
top: 9px;
}

span.cls4 {
display: inline;
position: absolute;
content: '';
background-color: var(--primary);
height: 2px;
width: 40px;
right: 71px;
top: 9px;
}

.f-menu {
margin-top: 20px;
}

.f-menu li{
line-height: normal;
}

.f-menu .phone {
display: flex;
align-items: center;
gap: 10px;
margin-top: 20px;
}

.f-menu .phone .content {
display: flex;
flex-direction: column;
align-items: start;
gap: 6px;
}

.f-menu .phone .content a.btn {
padding: 0;
}

.f-menu .phone .content p.txt {
font-family: var(--font-body);
font-size: 12px;
font-weight: 400;
line-height: 14.32px;
text-align: left;
color: var(--secondary);
margin-bottom: 0;
}

.f-menu .phone .content a.btn {
font-family: var(--font-body);
font-size: 14px;
font-weight: 500;
line-height: 17.09px;
}

.footer-content .payment {
margin-top: 45px;
}

.f-menu a.btn.btn-primary {
padding: 12px 15px;
}

.f-menu a.btn.btn-primary {
display: inline-flex;
gap: 13px;
align-items: center;
font-size: 14px;
font-weight: 600;
line-height: 16.41px;

}

.f-menu a.btn.btn-primary i {
font-weight: 500;
}

.works-img2 img {
height: 280px;
}

.works-img1 {
text-align: center;
position: relative;
z-index: 4;
}
.works-img2 {
text-align: center;
margin-top: 27%;
}

section.works.sec-pad .bottom-sec {
margin-top: 50px;
}

.works-img1 p.text1 {
font-family: var(--font-heading);
font-size: 16px;
/*font-weight: 700;*/
line-height: 20px;
text-align: center;
color: #000F0C;
position: relative;
}
.works-img1 p.text1 strong{
    font-weight:700;
}

.works-img1 p.text1::after {
position: absolute;
left: 0;
right: 0;
width: 44.58px;
height: 1.67px;
content: '';
margin: auto;
bottom: -13px;
background: var(--primary);
}

h4.txt {
font-family: var(--font-heading);
font-size: 25px;
font-weight: 700;
line-height: 34px;
text-align: center;
}

.works-img2 p.text2 {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 400;
line-height: 20px;
text-align: center;
margin-top: 29px;
position: relative;
color: var(--black);
}

.works-img2 p.text2::after {
position: absolute;
left: 0;
right: 0;
width: 13%;
height: 2px;
content: '';
margin: auto;
bottom: 75px;
background: var(--primary);
}

section.works {
position: relative;
z-index: 1;
}

section.works::before{
z-index: -2;
content: "";
position: absolute;
top: 44%;
left: -1px;
width: 714px;
height: 300px;
background-image: url(../images/line1.png);
background-repeat: no-repeat;
right: 0;
margin: auto;
background-size: contain;
}

section.works::after{
z-index: -2;
content: "";
position: absolute;
top: 26%;
left: 94px;
width: 1550px;
height: 535px;
background-image: url(../images/line2.png);
background-repeat: no-repeat;
background-size: contain;
right: 0;
margin: auto;
}

@media (min-width: 1400px) and (max-width: 1800.98px) {
.hero-img img {
height: 820px;
object-fit: contain;
}
}

.modal-header {
border: 0 !important;
padding-bottom: 0;
}

.modal-footer {
border: 0 !important;
}

.modal-body {
padding-top: 0;
}

.modal-body .content {
text-align: center;
}

.modal-body .content h5.title {
font-size: 38px;
font-weight: 500;
}

.modal-body .content p.txt {
font-size: 24px;
margin-top: 26px;
}

.modal-body .content p.txt span.price {
font-size: 48px;
font-weight: 700;
}

.modal-body .content p.para {
margin-top: 14px;
font-size: 18px;
line-height: 1.2;
}

.modal-body form {
margin-top: 20px;
}

.modal-body form .form-control {
border: 1px solid #e6e6e6;
height: 55px;
margin-bottom: 13px;
border-radius: 11px;
}

.modal-body form .form-control::placeholder {
font-size: 15px;
color: hsl(210deg 11% 15% / 50%);
font-weight: 500;
}

.modal-body {
padding: 1rem 2.2rem;
padding-bottom: 0rem;
}

.modal-footer {
padding-bottom: 1.6rem !important;
padding: 0rem 2.2rem;
}

.modal-content {
border: 0;
border-bottom: 6px solid #d61120;
border-radius: 0;
}

.modal-footer .btn {
width: 100%;
margin-top: 18px;
}
.modal-content label.form-check-label {
line-height: 1.4;
}

.modal-content label.form-check-label strong {
font-weight: 600;
}

.modal-body .form-check-input:checked {
background-color: var(--primary);
border-color: var(--primary);
}

.inner-banner .content p.txt {
font-size: 18px;
font-weight: 700;
line-height: 35px;
margin-top: 26px;
color: var(--white);
}

.bannerBtns {
display: flex;
gap: 25px;
margin-top: 20px;
}

.bannerBtns a.btn-primary {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 19px 45px;
}

.btn-white {
border: 0.2px solid #4F46E5;
color: #7F8E86;
background-color: var(--white);
padding: 19px 51px;
}

.clients-slider{
margin-top: 10px;
}

.clients-slider .slick-slide {
margin: 0 0px;
}

.clients-slider .clientImg {
text-align: center;
display: flex;
justify-content: center;
}

.clients-slider .slick-list.draggable {
padding: 0 26%;
}

span.topTitle-inner {
font-family: var(--font-title);
font-size: 22px;
font-weight: 400;
line-height: 30px;
text-align: center;
color: #7D7D7D;
}

section.about .content{
margin-left: 30px;
}

section.about .content h2.title {
font-family: var(--font-hdInner);
font-size: 60px;
font-weight: 600;
line-height: 70px;
text-align: left;
}

section.about .content p.para {
font-family: var(--font-logo);
font-size: 18px;
font-weight: 400;
line-height: 32px;
text-align: left;
margin-top: 11px;
}

ul.checkLight {
margin-top: 20px;
}

ul.checkLight li {
display: flex;
align-items: center;
gap: 10px;
}

ul.checkLight li p.txt {
font-family:var(--font-body);
font-size: 18px;
font-weight: 500;
line-height: 32px;
text-align: left;
color: #6B7280;
}

ul.checkLight li i {
font-size: 18px;
font-weight: 400;
line-height: 32px;

}

section.about .content .bannerBtns {
margin-top: 40px !important;
}

.abt-img {
position: relative;
z-index: 1;
}

.abt-img .exp {
position: absolute;
background: #000000;
width: 357px;
height: 115.5px;
display: flex;
gap: 30px;
justify-content: center;
align-items: center;
left: 0;
right: 0;
margin: auto;
margin-top: -88px;
}

.abt-img .exp p.txt {
font-family: var(--font-heading);
font-size: 60px;
font-weight: 700;
line-height: 67.5px;
color: var(--white);
display: flex;
align-items: center;
}

.abt-img .exp p.para {
font-family: var(--font-heading);
font-size: 22.5px;
font-weight: 700;
line-height: 30px;
letter-spacing: 0.1em;
color: var(--white);
}

.abt-img .exp p.txt span.plus {
font-family: var(--font-heading);
font-size: 37.5px;
font-weight: 700;
line-height: 52.5px;
text-align: left;
}

section.sec-txt .content span.top-title {
margin-bottom: 0;
}

section.sec-txt .content h2.title {
font-family: var(--font-hdInner);
font-size: 60px;
font-weight: 600;
line-height: 88.92px;
letter-spacing: -0.025em;
}

section.sec-txt .content p.para {
font-size: 16px;
font-weight: 500;
line-height: 28px;
text-align: center;
color: #6B7280;
}

.faqs-inner .accordion-list li h3 {
font-family: var(--font-body);
font-size: 22.38px;
font-weight: 700;
line-height: 27.33px;
text-align: left;
}

.faqs-inner .answer p {
font-family: var(--font-body);
font-size: 22.38px;
font-weight: 400;
line-height: 41.97px;
text-align: left;
}

.faqs-inner ul.accordion-list li h3:after {
font-size: 20px;
}

.contactIconBg {
display: flex;
gap: 18px;
}

.contactIconBg .icon-content h6 {
font-family: var(--font-hdInner);
font-size: 25.78px;
font-weight: 500;
line-height: 38.21px;
}

.contactIconBg .icon-content p {
font-size: 17.19px;
font-weight: 700;
line-height: 30.08px;
text-align: left;
margin-top: 4px;
}

.contactIconBg .icon-content span {
font-size: 17.19px;
font-weight: 700;
line-height: 30.08px;
}

.contactIconBg .icon-content a {
font-family: var(--font-body);
font-size: 17.19px;
font-weight: 700;
line-height: 30.08px;
text-align: left;
color: var(--primary);
}

.contactIconBg .icon i {
font-size: 26px;
font-weight: 600;
}

.maps iframe {
height: 380px;
width: 100%;
}

section.map {
margin-top: 80px;
}

.contactCard {
box-shadow: 0px 5.53px 27.66px 4.15px #80808040;
border-radius: 11px;
padding: 100px 70px;
background-color: var(--white);
}

.contactCard label {
font-family: var(--font-logo);
font-size: 20.74px;
font-weight: 500;
line-height: 31.11px;
text-align: left;
color: #5A7494;
margin-bottom: 7px;
}

.form-control {
background-color: #F6F9FC;
border-radius: 11px;
height: 74px;
border: 0;
padding: 26px 20px;
margin-bottom: 20px;
}

.form-control::placeholder {
font-family: var(--font-para);
font-size: 19.36px;
font-weight: 300;
line-height: 23.43px;
text-align: left;
color: #9CACC1;
opacity: 0.8;
}

textarea.form-control {
height: 279px;
}

section.contactCard-sec input.btn-primary {
font-family: var(--font-heading);
font-size: 27.66px;
font-weight: 700;
line-height: 38.72px;
padding: 23px 0;
margin-top: 20px;
}

section.contactCard-sec {
margin-top: -100px;
}

h2.title.contact-title{
font-size: 55px !important;
}

section.contact {
margin-top: 34px;
}

section.sec1 .content span.top-title {
font-family: var(--font-title);
font-size: 22px;
font-weight: 400;
line-height: 24.75px;
margin-bottom: 8px;
}

section.sec1 .content h2.title {
font-family: var(--font-hdInner);
font-size: 60px;
font-weight: 400;
line-height: 65px;
letter-spacing: -0.025em;
text-align: left;
color: var(--primary);
}

section.sec1 .content {
margin-left: 20px;
}

section.sec1 .content p.para {
margin-top: 10px;
color: #333;
font-size: 22px;
font-weight: 500;
line-height: 30px;
max-width: 641px;
}
strong{ font-weight:bold; }
ul.sec1List {
margin-top: 34px;
/*column-count: 2;*/
width: 100%;
}

ul.sec1List li {
display: flex;
gap: 13px;
align-items: flex-start;
margin-bottom: 13px;
}
ul.sec1List li p{ line-height: 22.59px; }
ul.sec1List li p.txt {
font-family: var(--font-body);
font-size: 20px;
font-weight: 500;
line-height: 22.59px;
color: var(--secondary);
}

ul.sec1List li i {
font-size: 22px;
line-height: 22.59px;
color: var(--primary);
font-weight: 400;
}

section.sec1 .btns {
margin-top: 34px;
display: flex;
gap: 20px;
}

.sec1Img img {
width: 100%;
}

section.sec2 h2.title {
font-family: var(--font-hdInner);
font-size: 55px;
font-weight: 600;
line-height: 70px;
text-align: left;
}

section.sec2 h2.title span{
display: inline;
}

section.sec2 p.para {
font-family: var(--font-para);
font-size: 16px;
font-weight: 400;
line-height: 30px;
text-align: left;
color: #6B7280;
margin-top: 14px;
max-width: 557px;
}

ul.singleList {
column-count: 1 !important;
width: 100%;
}

.package-inner span{
display: inline;
}

.package-inner p.para {
margin-top: 10px;
}

.package-inner .content {
margin-left: 50px;
}

section.sec1 .logos {
margin-top: 57px;
}

section.sec3 span.top-title {
margin-bottom: 9px;
}

section.sec3 h2.title {
font-family: var(--font-hdInner);
font-size: 60px;
font-weight: 400;
line-height: 65px;
letter-spacing: -0.025em;
text-align: left;
}

section.sec3 p.txt {
font-family: var(--font-body);
font-size: 22px;
font-weight: 500;
line-height: 30px;
text-align: left;
margin-top: 21px;
color: #333;
text-transform: capitalize;
}

section.sec3 .single-btn {
margin-top: 21px;
}

section.sec3 p.p-bold {
margin-top: 34px;
font-family: var(--font-body);
font-size: 16px;
font-style: italic;
font-weight: 700;
line-height: 22px;
text-align: left;
}

section.sec3 p.para {
margin-top: 19px;
}

section.sec3 p.para2 {
margin-top: 19px;
}

section.sec3 h2.title.f-bold {
font-weight: 600 !important;
}

section.sec3 .single-btn .btn-primary{
padding: 19px 41px;
}

.rulingImg img {
width: 100%;
}

.perfect-logo{
padding-top: 50px !important;
}

.perfect-logo .bottom-sec{
padding-top: 37px;
}

.perfect-logo .bottom-sec .rulingImg > p {
margin-top: 5px;
font-weight: 700;
line-height: 22px;
color: #6B7280;
}

.awards .bottom-sec{
margin-top: 47px;
}

.sec-search h2.title {
font-family: var(--font-hdInner);
font-size: 54px !important;
font-weight: 600 !important;
line-height: 64px !important;
text-transform: none !important;
}

.service-search {
position: relative;
}

.service-search i {
position: absolute;
top: 26px;
left: 17px;
color: #567494;
font-size: 17px;
}

.service-search
input.form-control {
background: #F4F4F4;
height: 70px;
border-radius: 0;
padding: 21px 162px 21px 48px;
}

.service-search
input.form-control::placeholder{
color: #000;
font-size: 22px;
font-weight: 700;
line-height: normal;
opacity: 0.5;
}

.service-search input.btn.btn-primary {
position: absolute;
top: 6px;
right: 3px;
height: 58px;
color: var(--white);
font-family: var(--font-body);
font-size: 20px;
font-weight: 700;
line-height: normal;
}

.package-free{
background-color: transparent !important;
}

section.featured h2.title {
color: #111827;
font-family: var(--font-logo);
font-size: 36px;
margin-bottom: 40px;
font-weight: 600;
line-height: 40px;
letter-spacing: -0.9px;
margin-top: 50px;
}

ul.featuredList {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

ul.featuredList li {
border: 1px solid var(--primary);
color: #000;
text-align: center;
font-family: var(--font-logo);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 20px;
width: 32%;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}

section.featured p.txt {
font-family: var(--font-logo);
font-size: 24px;
font-weight: 500;
line-height: normal;
margin-bottom: 10px;
}

.faqs-inner {
margin-top: 0px !important;
padding-top: 0 !important;
}

.faqs-inner .bottom-sec {
padding-top: 0px !important;
}

/* Menu Dropdown CSS */

.has-child {
position: relative;
z-index: 1;
}

.dropdown {
position: absolute;
background: white;
/* padding: 1rem; */
border-radius: 0px;
top: 110%;
width: 250px;
box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
display: none;
text-align: start;
}

@keyframes slide{
0% {
height: 0;
}
100% {
height: auto;
}
}
.dropdown .dropdown {
left: 100%;
top: 0;
}
.dropdown ul li a {
font-size: 16px;
line-height: 30px;
color: #333;
padding: 10px 20px;
}

.menu > li > a i {
font-size: 15px;
}

.dropdown li:not(:last-child) {
border-bottom: 1px solid #ddd;
}
.chev.rotate {
transform: rotate(180deg);
}

.chev {
transition: .5s ease;
}
/* Dropdown CSS*/

/*popup*/
.popup, .popup-main {display: none;position: fixed;top: 50%;left: 50%;transform: translate(-50% , -50%);margin: auto;width: 500px;height: auto;z-index: 99;}

.pop-inner, .pop-inner1 {background-color: #fff;width: 100%;max-height: 650px;padding: 35px;border-radius: 0px;border-bottom: 6px solid var(--primary);overflow-y: auto;}

.closePop, .closePop1 {
position: absolute;
top: -12px;
right: 0;
width: 35px;
height: 35px;
background: var(--primary);
color: #fff;
font-size: 16px;
border-radius: 50%;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}

.pop-inner h4, .pop-inner1 h4 {
    font-size: 38px;
    font-weight: 500;
    text-align: center;
}

.pop-inner h3, .pop-inner1 h3 {
    font-size: 24px; 
    font-weight: normal;
    color: #000;
    text-align: center;
    text-transform: capitalize;
    padding: 10px 0 10px; 
    line-height: 1.2;
}
.pop-inner h3 span, .pop-inner1 h3 span {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}
.pop-inner h3 br, .pop-inner1 h3 br {
display: none;
}

.pop-inner p, .pop-inner1 p {
font-size: 16px;
margin-top: 14px;
font-size: 18px;
line-height: 1.2;
color: var(--body-color);
text-align: center;
padding: 0 0 20px;
text-align: center;
position: relative;
margin-bottom: 10px;
}
/* .pop-inner p::before, .pop-inner1 p::before {
position: absolute;
content: "";
width: 100px;
height: 2px;
background-color: #F45A28;
bottom: 10px;
left: 0;
right: 0;
margin: auto;
} */

.pop-inner input, .pop-inner1 input {
width: 100%;
border: 1px solid #e6e6e6;
height: 55px;
margin-bottom: 13px;
border-radius: 0px; 
padding: 26px 20px;
background-color: #F6F9FC;
}

.pop-inner input, .pop-inner1 input::placeholder {
    font-size: 13px;

}

.pop-inner .agree, .pop-inner1 .agree {
    font-size: 15px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 1.2;
    padding-bottom: 25px;
    display: flex !important;
    align-items: self-end;
    gap: 5px;
}

  .agree a{
    display: contents;
    }   

.pop-inner .agree input, .pop-inner1 .agree input {
display: inline-block;
width: 15px;
margin: 0;
}
.pop-inner .agree a, .pop-inner1 .agree a {
color: #111;
font-weight: 500;
}

.pop-inner .agree a, .pop-inner1 .agree a:hover{
    color: var(--primary);
}


.pop-inner .sbt, .pop-inner1 .sbt {
text-align: center;
}
.pop-inner button, .pop-inner1 button {
font-family: "Work Sans";
}

.pckg-head h3{
font-family: var(--font-body);
font-size: 24px;
font-weight: 700;
line-height: 24.64px;
text-align: left;

}

.pckg-box {
background-color: var(--white);
padding: 21px 21px 40px;
border: 1px solid #F49F07;
border-bottom: 0;
position: relative;
z-index: 1;
}

.pckg-head h4 {
font-family: var(--font-body);
font-size: 14.37px;
font-weight: 500;
line-height: 17.55px;
text-align: left;
color: #08203A;
margin-top: 40px;
}

.pckg-head h4 span {
font-family: var(--font-body);
font-size: 60px;
font-weight: 700;
line-height: 73.26px;
color: #08203A;
margin-top: 3px;
}
 

section.sitemap {
    padding-top: 100px;
}


section.sitemap  h2.title {
    font-size: 48px;
    margin-bottom: 40px !important;
}



ul.site {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul.site li {
    width: 24%;
    border: 1px solid #d61120;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
 

ul.site li a {
    color: #000;
    display: block;
    width: 100%;
    text-align: center; 
}

.dropdown::after{ display: none !important; }

.copyright p a{ color: var(--primary); font-weight: 600; }

/* 404 */
/* terms */

.terms .roman {
    list-style: upper-roman;
}

.terms ul {
    padding-left: 40px;
    line-height: 25px;
    font-size: 16px;
    color: #333;
}

.terms ul li {
    margin-bottom: 1rem;
}

.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}

.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
}

.terms p {
    margin-bottom: 2rem;
}

/* terms */

.dropdown ul {
    padding: 0;
}

.tm-search-table {
    border: 1px solid #3333332b;
}
.tm-search-table tr:nth-child(even) {
  background-color: #0079b34d;
}
.tm-search-table tr:not(:last-child) {
    border-bottom: 1px solid #3333332b;
}
.tm-search-table tr td:not(:last-child) {
    border-right: 1px solid #3333332b;
}
.tm-search-table thead {
    background: #0079b3;
    color: #fff;
    font-weight: 600;
}
