@charset "UTF-8";
@font-face {
    font-family: 'Aptos';
    src: url('../fonts_new/Aptos.woff2') format('woff2'),
        url('../fonts_new/Aptos.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos';
    src: url('../fonts_new/Aptos-Bold.woff2') format('woff2'),
        url('../fonts_new/Aptos-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos';
    src: url('../fonts_new/Aptos-Black.woff2') format('woff2'),
        url('../fonts_new/Aptos-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos Narrow';
    src: url('../fonts_new/Aptos-Narrow-Bold.woff2') format('woff2'),
        url('../fonts_new/Aptos-Narrow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos';
    src: url('../fonts_new/Aptos-Light.woff2') format('woff2'),
        url('../fonts_new/Aptos-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos Narrow';
    src: url('../fonts_new/Aptos-Narrow.woff2') format('woff2'),
        url('../fonts_new/Aptos-Narrow.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aptos';
    src: url('../fonts_new/Aptos-SemiBold.woff2') format('woff2'),
        url('../fonts_new/Aptos-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}







body{background-color: #fff; font-family: 'Aptos'; font-size: 16px; font-weight: 400; margin: 0px; padding: 0px;}
html{scroll-behavior:smooth;}


a{
    text-decoration: none;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #000;
}
a:hover {
    text-decoration: none !important;
}
a:focus{outline: none;}
input:focus, textarea:focus-visible{outline: none !important; box-shadow: none !important;}

header {
    transition-duration: 0.5s;
    position: sticky;
    background-color: #fff;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 0px 5px #00000022;
}
.header-block{
    display: flex;
    justify-content: space-between;
    height: 90px;
    align-items: center;
}
.header-right{
   display: flex; 
}
.header-menu{
    display: flex;
    align-items: center;
}
.menu-link{
    font-size: 18px;
    margin-right: 40px;
}
.menu-link:hover{
    color: #0077DB;
}
.header-btn-block .header-btn, .header-btn{
    display: flex;
    flex-direction: column;
    height: 50px;
    background-color: #F06424;
    justify-content: center;
    padding: 0px 20px;
    border-radius: 3px;
    color: #fff;
    line-height: 8px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.header-btn-block .header-btn span{
    font-size: 13px;
}
.header-btn-block .header-btn::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    left: -110%;
    top: 0;
    opacity: 0.2;
    transition-duration: 0.3s;
    transform: skewX(20deg);
    z-index: 0;
}
.header-btn-block .header-btn:hover::after{
    left: -20%;
}
.menu-contact-btn{
    display: none !important;
}
.site-menu-toggle{color: #0077DB;}



footer{
    background-color: #0077DB;
    color: #fff;
}
.footer-main1{
    padding: 50px 0px 30px 0px;
}
.footer-block1{
    height: 100%;
}
.footer-menu1 ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.footer-menu1 ul li{
    list-style: none;
    margin-bottom: 10px;
}
.footer-menu1 ul li a{
    color: #fff;
    opacity: 0.8;
    transition-duration: 0.3s;
}
.footer-menu1 ul li a:hover{
    opacity: 1;
}
.footer-title1{
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
}
.footer-contact-icon {
    width: 30px;
    margin-right: 10px;
}
.footer-contact-item p {
    margin: 0px;
}
.footer-contact-item a {
    color: #fff;
}
.footer-map{
    height: 100%;
}
.footer-map iframe{
    height: 100%;
}
.footer-bottom{
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}
.footer-social{
    display: flex;
    gap: 30px;
    align-items: center;
}
.footer-social a{
    color: #fff;
}



.cta-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
    display: none;
  }
  .cta-popup.active {
    display: flex;
  }
  .cta-popup-bg {
    background-color: #000;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
  }
  .cta-popup-block {
    position: relative;
    z-index: 1;
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    padding: 40px 30px 30px 30px;
    border-radius: 20px;
  }
  .cta-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
  }
  .cta-popup-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .cus-btn,
a.cus-btn,
button.cus-btn {
  height: 50px;
  padding: 0px 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  text-transform: uppercase;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
/* .cus-btn, a.cus-btn, input.cus-btn{
    height: 50px;
    padding: 0px 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    text-transform: uppercase;
    gap: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
} */
.cus-btn::after,
a.cus-btn::after,
button.cus-btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  left: -110%;
  top: 0;
  opacity: 0.2;
  transition-duration: 0.3s;
  transform: skewX(20deg);
  z-index: 0;
}
.cus-btn::after,
a.cus-btn::after,
input.cus-btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  left: -110%;
  top: 0;
  opacity: 0.2;
  transition-duration: 0.3s;
  transform: skewX(20deg);
  z-index: 0;
}
.btn-small,
a.btn-small,
button.btn-small {
  height: 40px;
  font-size: 14px;
}
.cus-btn:hover::after,
a.cus-btn:hover::after,
button.cus-btn:hover::after {
  left: -20%;
}
/* .cus-btn:hover::after, a.cus-btn:hover::after, input.cus-btn:hover::after{
    left: -20%;
} */
.btn-blue,
a.btn-blue,
button.btn-blue {
  background-color: #0077db;
  color: #fff !important;
}
/* .btn-blue, a.btn-blue, input.btn-blue{
    background-color: #0077DB;
    color: #fff !important;
} */
.btn-blue,
a.btn-white,
input.btn-white {
  background-color: #fff;
  color: #003862 !important;
}
.btn-orange,
a.btn-orange,
input.btn-orange {
  background-color: #ff683d;
  color: #fff;
}






/* media screen and (max-width: 1170px)
---------------------------------------------------------------------- */
@media screen and (max-width:1170px) {
    
}
/* Large devices (laptops/desktops, 992px and up) */
@media screen and (max-width: 992px) {
    
}
/* media screen and (max-width: 728px)
---------------------------------------------------------------------- */
@media screen and (max-width:728px) {
	
}
/* media screen and (max-width: 640px)
---------------------------------------------------------------------- */
@media screen and (max-width:640px) {

}
/* media screen and (max-width: 550px)
---------------------------------------------------------------------- */
@media screen and (max-width:550px) {
    body{font-size: 14px;}
    .header-right{flex-direction: row-reverse; gap: 20px;}
    .header-btn-block .header-btn, .header-btn{
        height: 40px;
    }
    .header-btn-block .header-btn, .header-btn{font-size: 16px; padding: 0px 15px;}
    .header-btn-block .header-btn span{font-size: 11.5px;}
    .menu-contact-btn{display: block !important; font-size: 16px !important;}
    .menu-contact-btn a{font-size: 16px !important;line-height: 16px !important;}
    
    .footer-main1{flex-direction: column; padding: 40px 0px;}
    .footer-menu1{padding-top: 30px;}
    .footer-menu1 ul{flex-wrap: wrap; gap: 0px; justify-content: center;}
    .footer-menu1 ul li{margin-top: 10px; margin-right: 20px;}
    .footer-bottom{flex-direction: column; align-items: center; gap: 10px;}
    







}
/* media screen and (max-width: 480px)
---------------------------------------------------------------------- */
@media screen and (max-width:500px) {
    
}
/* media screen and (max-width: 414px)
---------------------------------------------------------------------- */
@media screen and (max-width:414px) {

}