*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
}
:root{
  --yellow:#d0a035;
  --light:#fff;
  --dark:#000;
  --grey:#cbc6c8;
  --text-color: #303030;
}

a{
    text-decoration: none;
}
h1{
  font-size: 50px;
  font-weight: 600;
}
 h2 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
}
h4{
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 10px;
}
p{
  font-size: 16px;
  line-height: 30px;
}
.btn:focus{
    box-shadow: none;
}

.btn-primary{
    font-size: 16px;
    font-weight: 400;
    color: var(--light);
    background-color: var(--yellow);
    border-radius: 0px 0px 0px 0px;
    padding: 8px 30px 8px 30px;
    transition: all .5s ease;
    border-color: var(--yellow);
}

.btn-primary:hover{
    color: var(--light);
    background-color: var(--yellow);
}

.btn-primary:focus{
    box-shadow: none;
}

.btn-yellow{
    color: var(--dark);
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.08);
    perspective: 300px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
    font-weight: 500;
  }
  .btn-yellow:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-origin: left center 0;
    transition: all 0.3s ease 0s;
  }
  .btn-yellow:hover:before{
    transform: rotateY(103deg);
  }
  .btn-yellow{ border: 2px solid var(--yellow); }
  .btn-yellow:hover{ color: var(--yellow); }
  .btn-yellow:before{ background: var(--yellow); }
  
.btn-red{
  background-color: #b8310b !important;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  color: var(--light);
  border: 2px solid #b8310b;
  /* margin-left: 10px; */
}
.btn-red:hover{
  background-color:#0000 !important ;
  color: #b8310b !important;
}




/* fixed social call btn======================= */
.fixed-social-btn .social {
    position: fixed;
    top: 40%;
    right: 20px; 
    z-index: 10000;
}

.fixed-social-btn .social ul {
    list-style: none;
    padding: 0;
    transform: translateX(270px); 
}

.fixed-social-btn .social ul li {
    display: block;
    margin: 5px;
    background: rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: left; /* Changed from right to left */
    padding: 10px;
    border-radius: 30px 0 0 30px; /* Changed border-radius for right alignment */
    transition: all 1s;
}

.fixed-social-btn .social ul li#callnow {
    background: #1DA1F2;
}

.fixed-social-btn .social ul li#whatsapp {
    background: #0e9e59;
}

.fixed-social-btn .social ul li#callback {
    background: #3A559F;
}

.fixed-social-btn .social ul li:hover {
    transform: translateX(-110px); /* Changed from 110px to -110px */
}

.fixed-social-btn .social ul li#callnow i {
    color: #1DA1F2;
}

.fixed-social-btn .social ul li#callnow:hover {
    background-color: #1DA1F2;
}

.fixed-social-btn .social ul li#callback i {
    color: #3A559F;
}

.fixed-social-btn .social ul li#callback:hover {
    background-color: #3A559F;
}

.fixed-social-btn .social ul li#whatsapp i {
    color: #0e9e59;
}

.fixed-social-btn .social ul li#whatsapp:hover {
    background-color: #0e9e59;
}

.fixed-social-btn .social ul li a {
    color: var(--light);
    text-decoration: none;
}

.fixed-social-btn .social ul li i {
    text-align: center;
    color: var(--dark);
    margin-right: 14px; /* Changed from margin-left to margin-right */
    background: var(--light);
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    transform: rotate(0deg);
}

.fixed-social-btn .social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}
.fixed-social-btn .social .popup-callback .modal-dialog .modal-content .modal-header button.btn-close{
    box-shadow: none;
}
.fixed-social-btn .social .popup-callback .modal-dialog .modal-content .modal-body form .form-group {
    margin-bottom: 10px;
}

.fixed-social-btn .social .popup-callback .modal-dialog .modal-content .modal-body form .form-group .form-control {
    border-radius: 0;
    padding: 10px;
}

.fixed-social-btn .social .popup-callback .modal-dialog .modal-content .modal-body form .form-group .form-control:focus {
    border-color: var(--yellow);
    box-shadow: none;
}


/* fixed social call btn======================= */


  /* scroll-top button================ */
  .backToTopBtn {
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: var(--yellow);
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
    background-color: transparent;
}
    .backToTopBtn:not(:hover) {
      border: 2PX solid var(--yellow);
    }
    .backToTopBtn:hover {
      background: var(--yellow);
      color: #CCC;
    }
    .backToTopBtn.active {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    .backToTopBtn:not(.active) {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

h2{
    font-size: 46px;
    color: var(--yellow);
    margin-bottom: 20px;
    font-weight: 600
}
p{
    font-size: 16px;
    line-height: 30px;
    color: var(--text-color);
    text-align: justify;
}
/* header=============== */
.navigation {
    height: 110px;
    background: rgb(24 26 31);
    box-shadow: 0px 3px 5px 0px var(--dark);
}
.navigation .brand {
    position: absolute;
    padding-left: 0px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 40px;
    top: 5px;
}
.navigation .brand a, .navigation .brand a:visited {
    color: var(--light);
    text-decoration: none;
}
.navigation .brand a img{
    width: 90px;
    margin-top: 5px;
}
.navigation .nav-container {
    margin: 0 auto;
}
nav {
    float: right;
    margin-top: 32px;
}
.navigation nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.navigation nav ul li {
    float: left;
    position: relative;
}
.navigation nav ul li a, .navigation nav ul li a:visited {
    display: block;
    padding: 8px 20px;
    color: var(--light);
    background: #262626 ;
    text-decoration: none;
    font-size: 16px;
}
.navigation nav ul li a{
    background: transparent;
    color: var(--light);
}
.navigation nav ul li a:hover, .navigation nav ul li a:visited:hover, .navigation nav ul li a.active {
    color: var(--yellow);
}
.navigation .navbar-dropdown li a{
    background: var(--yellow);
}
.navigation nav ul li a:not(:only-child):after, .navigation nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}
.navigation nav ul li ul li {
    min-width: 190px;
}
.navigation nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}
.navigation .navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: var(--light);
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
.navigation .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

.navigation #navbar-toggle {
    position: absolute;
    left: 18px;
    top: 0px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}
.navigation #navbar-toggle span, .navigation #navbar-toggle span:before, .navigation #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: var(--light);
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}
.navigation #navbar-toggle span:before {
    top: -10px;
}
.navigation #navbar-toggle span:after {
    bottom: -10px;
}
.navigation #navbar-toggle.active span {
    background-color: transparent;
}
.navigation #navbar-toggle.active span:before, .navigation #navbar-toggle.active span:after {
    top: 0;
}
.navigation #navbar-toggle.active span:before {
    transform: rotate(45deg);
}
.navigation #navbar-toggle.active span:after {
    transform: rotate(-45deg);
}


  /* topheader================ */
  .topheader {
    padding: 10px 0px;
    background: var(--yellow);
}
  .topheader .inner-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topheader .inner-text ul{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
  }
  .topheader .inner-text ul li{
    list-style: none;
    margin: 0px 10px;
  }
  .topheader .inner-text ul li a i{
    color: var(--light);
    font-size: 18px;
    transition: all .5s linear;
  }
  .topheader .inner-text ul li a i:hover{
    color: #181a1f;
  }
  .topheader .inner-text .right-text a{
    color: var(--light);
    font-size: 18px;
    margin-left: 15px;
    transition: all .5s linear;
  }
  .topheader .inner-text .right-text a span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 300;
}
  .topheader .inner-text .right-text a:hover{
    color: #181a1f;
  }

   .search-section{
     display: none;
     padding: 20px 0px;
   }
   .search-box-show{
    display: block;
  }

  .search-section .search-btn {
    border-bottom: 1px solid var(--yellow);
  }
  .search-section .search-btn input {
    width: 100%;
    padding: 20px;
    
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    color: #5b5b5b;
    font-weight: 600;
}
.search-section .search-btn input:focus{
    outline: none;
    box-shadow: none;
}
.search-section .search-btn{
    position: relative;
}
.search-section .search-btn i {
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 24px;
    color: var(--yellow);
    cursor: pointer;
}
.search-section .search-btn input::placeholder{
    color: #5b5b5b;
}

 /* footer======================= */
 footer ul.sitemap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-left: 0;
 }
 footer ul.sitemap li{
  list-style: none;
 }
 footer ul.sitemap li a{
  color: var(--light);
  transition: all .3s linear;
 }
 footer ul.sitemap li a:hover{
  color: var(--yellow);
 }
 footer {
    padding: 80px 0px;
    background-color:#0c0c0c;
}
 footer .inner-text .left-content img{
    width: 90px;
    margin-bottom: 20px;
 }
 footer .inner-text .left-content h5{
    color: var(--yellow);
 }
 footer .inner-text .left-content .location{
    display: flex;
    margin-bottom: 20px;
    transition: all .5s ease;
    cursor: pointer;
 }
 footer .inner-text .left-content .location:hover :is(i, p, a){
    color: var(--yellow);
 }
 footer .inner-text .left-content .location i{
    margin-right: 10px;
    font-size: 20px;
    transition: all .5s ease;
    color: var(--light);
    margin-top: 5px;
 }
 footer .inner-text .left-content .location p{
    color: var(--light);
    margin-bottom: 0;
    font-size: 16px;
    transition: all .5s ease;
 }
 footer .inner-text .left-content .location a{
    color: var(--light);
    font-size: 16px;
    transition: all .5s ease;
    word-break: break-all;
 }
 footer .inner-text .left-content .location:last-child{
    margin-bottom: 0;
 }
 footer .inner-text .middle-content h5{
    color: var(--yellow);
    margin-bottom: 20px;
 }
 footer .inner-text .middle-content  ul{
    margin-bottom: 0px;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
 }
 footer .inner-text .middle-content  ul li{
    list-style: none;
    margin-top: 20px;
    width: 50%;
 }
 footer .inner-text .middle-content  ul li a{
    color: var(--light);
    transition: all .5s ease;
 }
 footer .inner-text .middle-content  ul li a:hover{
    color: var(--yellow);
    opacity: .9;
 }
 footer .inner-text .right-content h5{
    color: var(--yellow);
    margin-bottom: 20px;
 }
 footer .inner-text .right-content form .form-group{
    margin-top: 20px;
 }
 footer .inner-text .right-content form .form-group :is(input, textarea){
    background: transparent;
    color: var(--light);
    padding: 10px;
    border-radius: 0;
 }
 footer .inner-text .right-content form .form-group :is(input, textarea):focus{
    box-shadow: none;
 }
 .subfooter {
    padding: 10px;
    background: #010202;
    color: antiquewhite;
}
.subfooter p{
    margin-bottom: 0;
    color: var(--light);

}
.subfooter p a{
    color: var(--yellow);
}


/* banner section======================= */
  .banner-section{
    position: relative;
  }
  .banner-section .owl-carousel .item{
    background-image: url(../images/banner1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 85vh;
    width: 100%;
    position: relative;
  }
  .banner-section .owl-carousel .item2{
    background-image: url(../images/banner2.jpg);
    background-position: right center;
  }
  .banner-section .owl-carousel .item3{
    background-image: url(../images/banner3.jpg);
    background-position: right center;
  }
  .banner-section .owl-carousel .item::before{
    position: absolute;
    content:"";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background:linear-gradient(90deg, rgb(0 0 0 / 41%) 0%, rgb(0 0 0 / 20%) 35%, rgb(255 255 255 / 4%) 100%)
  }
  .banner-section .owl-carousel .item .box{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-18%, -50%);
    text-align: left;
    width: 50%;
  }
  .banner-section .owl-carousel .item .box h1{
    color: var(--light);
    margin-bottom: 20PX;
  }
  .banner-section .owl-carousel .item .box p{
    font-size: 20px;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 34px;
    font-weight: 300;
  }
  
  
   .owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
  }
   .owl-carousel .owl-dots .owl-dot{
     height: 15px;
     width: 15px;
     border-radius: 50%;
     background-color: var(--light);
     margin: 0px 5px;
  }
   .owl-carousel .owl-dots .owl-dot.active{
   background-color: var(--yellow);
  }
   .owl-carousel  .owl-nav .owl-prev.disabled{
    opacity: .3;
  }
   .owl-carousel  .owl-nav .owl-next.disabled{
    opacity: .3;
  }
   .owl-carousel .owl-nav .owl-prev::after{
    position: absolute;
    content: "\f053";
    left: 20px;
    bottom: 50%;
    font-size: 20px;
    font-family: fontawesome;
    color: var(--light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:var(--yellow)
  }
   .owl-carousel .owl-nav .owl-next::after{
    position: absolute;
    content: "\f054";
    right: 20px;
    bottom: 50%;
    font-size: 20px;
    font-family: fontawesome;
    color: var(--light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow)
  }
   .owl-carousel .owl-nav .owl-prev span{
    display: none;
  }
   .owl-carousel .owl-nav .owl-next span{
    display: none;
  }

  /* about us=========================== */
  .about-us{
    padding: 60px 0px;
  }
  .about-us .left-content img{
    width: 100%;
  }

  .remarkable-agency{
    padding: 60px 0px;
  }

  .remarkable-agency .inner-text{
    text-align: center;
  }
  .remarkable-agency .inner-text P{
    text-align: justify;
    text-align-last: center;
  }
  

  section.area-of-practice {
    padding: 60px 0px;
    text-align: center;
}
section.area-of-practice  .inner-text ul{
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

section.area-of-practice .inner-text ul li {
  list-style: none;
  background-color: #b8310b1a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border-radius: 5px;
  padding: 0px 20px;
  transition: all .3s linear;
}
section.area-of-practice .inner-text ul li:hover{
  background-color: var(--yellow);
  color: var(--light);
}
section.area-of-practice  .inner-text ul li h3{
    font-size: 18px;
    margin: 0;
    line-height: inherit;
}
section.area-of-practice  .inner-text a.btn{
    font-size: 16px;
}


/* about us section===================== */
.banner-about {
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center;
    position: relative;
    text-align: center;
}
.banner-about:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, rgb(0 0 0 / 20%) 0, #00000059 50%, #000000bf);
    opacity: 0.85;
    content: "";
}

.banner-about .banner-content h6{
    z-index: 1;
    position: relative;
    color: var(--yellow);
}
.banner-about .banner-content h1{
    z-index: 1;
    position: relative;
    color: var(--light);
    margin-bottom: 20px;
}
.banner-about .banner-content p{
    z-index: 1;
    position: relative;
    font-size: 18px;
    color: var(--light);
    margin-bottom: 20px;
}



  .banner-about .banner-content nav{
    float: none;
    margin-top: 0;
    position: relative;
    z-index: 1;
    color: var(--light);
  }
  .banner-about .banner-content nav .breadcrumb .breadcrumb-item{
    color: var(--light);
    font-size: 18px;
    margin-right: 10px;
  }
  .banner-about .banner-content nav .breadcrumb .breadcrumb-item a{
    color: var(--light);
  }
  .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: var(--light);
    content: "\f054";
    font-family: fontawesome;
    font-size: 14px;
    margin-top: 3px;
    margin-right: 10px;
  }

/* contact-form============================== */

.contact-form{
    padding: 60px 0px;
}
.contact-form .inner-text form{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    margin-top: -180px;
    padding: 60px;
    background-color: #e9ecf1;
}
.contact-form .inner-text h2{
    text-align: center;
    margin-bottom: 40px;
}
.contact-form .inner-text h5{
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 500;
}
.contact-form .inner-text h5 span{
    color: #F60000;
}
.contact-form .inner-text .input-group {
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form .inner-text .input-group .form-control {
    width: 100%;
    background-color: var(--light);
    border: 1px solid var(--yellow);
    height: 70px;
    border-radius: 0px;
}

.contact-form .inner-text .input-group .form-control:focus{
    box-shadow: none;
}
.error_box {
    color: var(--yellow);
    font-size: 14px;
}
.contact-form .inner-text .input-group textarea.form-control {
    resize: none;
    height: 200px;
    padding-top: 25px;
}
.contact-form .inner-text .input-group .addfile-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form .inner-text .form-control:focus{
   box-shadow: none;
   border-color: var(--yellow);
} 
.contact-form .inner-text .form-control{
    border-color: var(--yellow);
}
.contact-form .inner-text form .form-floating label sup {
    color: #F60000;
    font-size: 20px;
    top: 0;
}
.contact-form .inner-text .conttact-left {
    padding: 20px;
    height: 100%;
    background-color: #e9ecf1;
}
.contact-form .inner-text .conttact-left h3 {
    margin: 0 0 10px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 10px;
    color: var(--dark);
    font-size: 30px;
}
.contact-form .inner-text .conttact-left ul{
   padding-left: 0;
   margin-bottom: 0;
}
.contact-form .inner-text .conttact-left p{
    font-size: 18px;
}
.contact-form .inner-text .conttact-left ul li{
    list-style: none;
    margin: 15px 0px;
    font-size: 18px;
    transition: all .3s ease;
}
.contact-form .inner-text .conttact-left ul li i{
    color: var(--yellow);
    margin-right: 10px;
    font-size: 22px;
}

.contact-form .inner-text .conttact-left ul li span a:hover{
    text-decoration: underline;
}
.contact-form .inner-text .conttact-left .maps iframe {
    width: 100%;
    height: 250px;
    border: 0;
}
.contact-form .inner-text form .form-floating .attached-info .left-attached {
    position: absolute;
    right: 10px;
    top: 18px;
    margin: 0;
    z-index: 9;
    text-align: right;
}
.contact-form .inner-text form .form-floating .attached-info .left-attached .uploadfile {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 90px;
    opacity: 0;
}
.contact-form .inner-text form .form-floating .attached-info .left-attached .addfile {
    color: var(--dark);
}
.contact-form .inner-text form .form-floating .attached-info .left-attached .addfile img {
    max-width: 100%;
    height: auto;
}

.contact-form .inner-text form .form-floating  .attached-info .uploadfiletext {
    font-size: 14px;
}

/* about-us========================= */
.about-us{
    padding: 60px 0px 60px;
    background-color: #ff822521;
  }
  .about-us-page .inner-text .inner-div {
    border-bottom: 1px dashed #bdbdbd !important;
  }
  .about-us .inner-text h2{
    font-size: 46px;
  }

  .about-us .inner-text .inner-div{
    border-bottom: 1px dashed var(--yellow);
    margin-bottom: 25px;
  }
  .about-us .inner-text .inner-div h4{
    color: var(--yellow);
  }
  .about-us .inner-text .inner-div ul li{
    margin: 15px 0px;
  }
  .about-us .inner-text .inner-div:last-child{
    border-bottom:none;
    margin-bottom: 0px;
  }
  .about-us-page .inner-text .inner-div:last-child{
    border-bottom:none !important;
    margin-bottom: 0px;
  }
  .about-us-page .inner-text .inner-div ul{
    padding-left:0px;
  }
  .about-us-page .inner-text .inner-div ul li{
    margin: 20px 0px;
    list-style-type: none;
    text-align: justify;
  }
  .about-us-page .inner-text .inner-div ul li strong{
    font-weight: 600;
  }
  /* gallery page===================== */
 .gallery-page{
    padding: 80px 0px;
 }
 .gallery-page .inner-text .nav-pills{
  justify-content: center;
 }
 .gallery-page .inner-text .nav-pills .nav-item .nav-link{
   border-radius: 0;
   color: var(--yellow);
   font-size: 18px;
 }
 .gallery-page .inner-text .nav-pills .nav-item .nav-link.active{
  background-color: var(--yellow);
  color: #fff;
 }
 .gallery-page .inner-text .tab-content .tab-pane img{
  width: 100%;
 }


 /* on page load popup modal============================= */
 .window-popup #modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  height: 100%;
  width: 100%;
}
.window-popup #modalOverlay .modalPopup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50%;
  padding: 0 0 30px;
  box-shadow: 0 2px 10px 3px rgba(0,0,0,.2);
}
.window-popup #modalOverlay .modalPopup  .modalContent {padding: 0 2em;}
.window-popup #modalOverlay .modalPopup  .headerBar {
  width: 100%;
  background: var(--yellow);
  margin: 0;
  text-align: center;
}
.window-popup #modalOverlay .modalPopup .headerBar h3{
  font-size: 20px;
}
.window-popup #modalOverlay .modalPopup  .modalContent  p {margin: .75em 0 1.5em;}

.window-popup #modalOverlay .modalPopup  .modalContent .form-check-input:checked {
  background-color: #d0a035 !important;
  border-color: #d0a035 !important;
  border-radius: 0;
}
.window-popup #modalOverlay .modalPopup  .modalContent .form-check{
  cursor: pointer;
}
.window-popup #modalOverlay .modalPopup  .modalContent .form-check-input{
  border-radius: 0;
  cursor: pointer;
}
.window-popup #modalOverlay .modalPopup  .modalContent .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(208 160 53 / 49%);
}
.window-popup #modalOverlay .modalPopup .modalContent p{
  font-size: 14px;
  line-height: 24px;
}
.window-popup #modalOverlay .modalPopup .modalContent .btn-yellow{
  font-size: 14px !important;
}
.window-popup #modalOverlay .modalPopup .modalContent .form-check{
  font-size: 14px;
}
/* sitemap======================================= */
.sitemap-section{
  padding: 60px 0px;
}
.sitemap-section .inner-text ul{
  padding-left: 0;
  margin-bottom: 0;
}
.sitemap-section .inner-text ul li{
  margin: 15px 0px;
  list-style-type: square;
}


 