:root {
    --FontFamily: "PT Sans", sans-serif;
    --ThemeColor: #35748C;
    --TopBarHeight: 40px;
    --HeaderHeight: 100px;
    --SecSpace: 70px;
    --SpaceX: 40px;
    --TransitionEase: 0.15s ease;
}
* {box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;padding: 0;margin: 0;}
.menuToggle:after{background-image: url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='2.5' y1='5.5' x2='28.5' y2='5.5' stroke='black' stroke-width='2'/%3E%3Cline x1='2.5' y1='15.5' x2='28.5' y2='15.5' stroke='black' stroke-width='2'/%3E%3Cline x1='2.5' y1='25.5' x2='28.5' y2='25.5' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");}
.icn.f-menu-icon:before{background-image: url("data:image/svg+xml,%3Csvg width='8' height='11' viewBox='0 0 8 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75 11C1.50391 11 1.28516 10.918 1.12109 10.7539C0.765625 10.4258 0.765625 9.85156 1.12109 9.52344L4.86719 5.75L1.12109 2.00391C0.765625 1.67578 0.765625 1.10156 1.12109 0.773438C1.44922 0.417969 2.02344 0.417969 2.35156 0.773438L6.72656 5.14844C7.08203 5.47656 7.08203 6.05078 6.72656 6.37891L2.35156 10.7539C2.1875 10.918 1.96875 11 1.75 11Z' fill='%2335748C'/%3E%3C/svg%3E%0A");}
.icn:after,.icn:before{content: "";display: inline-block;width: 16px;height: 16px;background-size: contain;background-repeat: no-repeat;background-position: center;flex-shrink: 0;}


html, body {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--FontFamily);
    color: var(--TextColorLight);
    scroll-behavior: smooth;
/*    word-break: break-word;*/
    overflow-x: hidden;

}

::-webkit-scrollbar {height: 5px;width: 5px;}
::-webkit-scrollbar-track {background: #ebeef2;}
::-webkit-scrollbar-thumb {background: var(--ThemeColor);border-radius: 5px;}
::-webkit-scrollbar-thumb:hover {background: #000;}
.hide-scrollbar::-webkit-scrollbar {width: 0px;}


.container{
    max-width: 1440px;
}
.container-fluid.lg {max-width: 1820px;}
.container-fluid.xl {max-width: 2560px;}
.container-fluid.md {max-width: 1620px;}
.container-fluid {max-width: 1620px;}

.container, .container-fluid{padding-left: var(--SpaceX);padding-right: var(--SpaceX);}
@media(min-width: 1061px){
    .container{padding-left: 100px;padding-right: 100px;}
    .container-fluid{padding-left: 42px;padding-right: 42px;}
}

.w-180{width: 180px;}
.text-theme{color: var(--ThemeColor);}

.sec-space-t,.sec-space-y{padding-top: var(--SecSpace);}
.sec-space-b,.sec-space-y{padding-bottom: var(--SecSpace);}
.header-space-t{margin-top: calc(var(--HeaderHeight) + var(--TopBarHeight));}

.sec-title{
    color: #161C2D;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sec-title span{
    color: var(--ThemeColor);
}

.sec-para{
    color: #423B4F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bg-top-left{
    position: absolute;
    left: 0px;
    top: 0;
    width: 40%;
}
.bg-top-right{
    position: absolute;
    right: -30px;
    top: -30px;
}
.bg-top-right-2{
    position: absolute;
    right: -80px;
    top: 150px;
    z-index: -1;
}

.badge-title{
  border-radius: 100px;
  background: #E5F8FF;
  display: inline-flex;
  height: 28px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #35748C;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}



/*INPUT START */
.form-control{
    border: 1px solid #fff;
    border-radius: 12px;
    background: transparent;
}
.form-control,
.form-floating>label{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-control:focus{
    background-color: transparent;
    border-color: #fff;
    box-shadow: 0 0 0 .25rem rgba(255,255,255,.25);
}


/*INPUT END */

/*BUTTON START*/
.btn {
    border-radius: 8px;
    border: 0px;
    padding: 10px 10px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}
.btn.sm {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
}
.btn-check:focus+.btn, .btn:focus, .btn-close:focus {box-shadow: unset;}
.btn-main {
    background: var(--ThemeColor);
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.15s ease;
}
.btn-main:hover, 
.btn-main:focus {
    background: var(--ThemeColor);
    color: #fff;
    transition: 0.15s ease;
}

.btn-light {
    background: #fff;
    color: var(--ThemeColor);
    font-weight: 500;
    position: relative;
    transition: 0.15s ease;
}
.btn-light:hover, 
.btn-light:focus {
    background: #fff;
    color: var(--ThemeColor);
    transition: 0.15s ease;
}




.btn-main-border {
    background: transparent;
    color: var(--ThemeColor);
    border: 1px solid var(--ThemeColor);
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.15s ease;
}
.btn-main-border:hover{
    background: var(--ThemeColor);
    color: #fff;
    border: 1px solid var(--ThemeColor);
}


.btn-main[disabled]:hover{transform: translateY(0px);}
.btn-light:hover,
.btn-main:hover,
.btn-main-border:hover{
    transform: translateY(-1px);
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    transition: 0.15s ease;
}
/*BUTTON END*/



/*HEADER START*/
header{
    position: fixed;
    left: 0;
    top:0;
    right: 0;
    width: 100%;
    z-index: 999;
}
header .top-bar {
    background: var(--ThemeColor);
    height: var(--TopBarHeight);
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    padding: 10px 0;
}
header .top-bar a{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: none;
    margin: 0 5px;
}
header .top-bar .right{text-align: right;}
header .top-bar .left{letter-spacing: 0.5px;}


header .header-inner{
    background: #fff;
    height: var(--HeaderHeight);
}

header .logo{
    width: auto;
    height: 85px;
}
header .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    line-height: 0;
    object-position: left;
}
header .btn-main.sm{
    width: 117px;
}
header .menu .nav-link{
    color: #797A7B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
header .menu{
    justify-content: space-between;
    width: 100%;
    max-width: 530px;
}
header .menu .nav-link.active{
    color: var(--ThemeColor);
}
.menuToggle{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: 0px !important;
}
.menuToggle:after{
    width: 30px;
    height: 30px;
}
.menuToggle:before{display: none;}
.collapse.navbar-collapse.show{
    position: absolute;
    left: 0;
    right: 0;
    top: var(--HeaderHeight);
    padding: 40px var(--SpaceX);
    padding-top: 30px;
    background: #fff;
    z-index: 999;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}
.navbar-collapse{
    transition:none !important;
}


/*HEADER END*/

footer{
    padding-bottom: 40px;
    background: #fff;
    box-shadow: 0px -4px 4px 0px rgba(227, 224, 224, 0.25);
}

.footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
}

footer .f-menu h4{
    color: var(--ThemeColor);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 26px;
}
footer .f-menu ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    line-height: 0;
}
footer .f-menu ul li{margin-bottom: 18px}
footer .f-menu ul a,
footer .f-menu ul li{
    color: #797A7B;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-decoration: none;
}

footer .f-menu .f-menu-icon{
}
footer .f-menu .f-menu-icon:before{
    width: 14px;
    height: 14px;
}
.footer-bottom{
    color: #838282;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 187.5% */
border-top: 1px solid #838282;
padding-top: 16px;
max-width: 1076px;
margin: 0 auto;
    margin-top: 90px;
}
footer .f-menu .contact-info li{
    display: flex;
}
footer .f-menu .contact-info li .fm-icon{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
