@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}
a {
  text-decoration: none !important;
}
li{
  list-style: none;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
}
:root {  
  --tsky: #2D8FF6;
  --tblue: #062A53;
  --tyellow: #FF8B00;
  --twhite: #ffffff;
  --tblack: #040404;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--tyellow);
  border: 1px solid var(--tyellow);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--twhite);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--tyellow);
  border-color: var(--twhite);
  color: var(--torg) !important;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--tblue);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #ffffff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  padding-right: 10px;
  color: #ffffff;
}
.mysc h4{
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  color: var(--tlblck);
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: var(--twhite);
  text-decoration: underline;
}

#topbar .social-links a {
  color: var(--tdark);
  background-color: var(--tlblck);
  padding: 5px;
  border-radius: 100px;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
  background-color: var(--torg);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  background-color: var(--tsky);
  border-radius: 100px 0px 0px 100px;
  width: 95%;
  margin-left: auto;
}

#header.fixed-top {
  height: 70px;
  background: var(--tblue);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 2px 15px var(--tyellow);
}
#header.fixed-top  .navbar a, .navbar a:focus{
  color: var(--twhite);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  width: 20%;
}

#header .logo a {
  color: #ffffff;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  width: 75%;
}

.scrolled-offset {
  margin-top: 70px;
}
.navbar {
  padding: 0;
  width: 75%;
  margin-left: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 14px;
  text-transform: uppercase;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 400;
  color: var(--twhite);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--torg);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--tyellow);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--twhite);
  font-size: 25px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background-color: var(--tyellow);
  padding: 10px;
  border-radius: 100px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--tblack);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 22px;
  color: var(--twhite);
  font-weight: 500;
  justify-content: center;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--torg);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* HEADER END */
.btn_yellow{
  background: var(--tyellow) !important;
  color: var(--tblack) !important;
  transition: 0.2s ease-in-out !important;
  border-radius: 100px !important;
  padding: 12px 35px !important;
  font-size: 16px !important;
  margin-left: 10px;
}
.btn_yellow:hover{
  background: #B5182C !important ;
  color: var(--twhite) !important;
  transform: scale(1.1);
}
.btn_blue{
  background: var(--tblue) !important;
  color: var(--twhite) !important;
  transition: 0.2s ease-in-out !important;
  border-radius: 100px !important;
  padding: 12px 35px !important;
  font-size: 16px !important;
}
.btn_blue:hover{
  background: var(--tyellow) !important ;
  color: var(--twhite) !important;
  transform: scale(1.1);
}
/* BUTTON SECTION END */

/* HERO SECTION START */
.hero{
  background-image: url(../images/rbnn.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.hercl2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.mhr{
  align-items: center;
  padding-top: 70px;
  padding-bottom: 30px;
}
.herocl1 h1{
  font-size: 20px;
  text-transform: uppercase;
  color: var(--tyellow);
  font-weight: 600;
  padding: 5px;
}
.herocl1 h2{
  font-size: 50px;
  color: var(--twhite);
  line-height: 60px;
  font-weight: 600;
}
.herocl1 p{
  font-size: 15px;
  line-height: 30px;
  color: var(--twhite);
  font-weight: 500;
}
.hercl2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.12); 
}
.sec_btn{
  margin-top: 30px;
}
.sec_btn .btn_org{
 margin-left: 0px;
}
/* HERO SECTION END*/

/* COUNTER START */
.mycout{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
.timer{
  text-align: center;
  color: var(--tyellow);
}
.counter h2{
  color: var(--tyellow);
}
.counter p{
  color: var(--tyellow);
  margin-top: -10px;
}
/* COUNTER START */
/* INNER PAGE FORM START */
.inner_page_form{
  background-color: var(--tblue);
  padding: 30px 30px;
  border-radius: 10px;
  position: relative;
}
.inner_page_form h3{
  color: var(--twhite);
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}
.inner_page_form input{
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 0px;
  height: 48px;
  font-size: 16px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
  background: #ffffff;
}
.inner_page_form input::placeholder{
  color: var(--tblack);
}
.inner_page_form input:focus{
  background-color: var(--twhite);
  border-color: var(--tblu);
  box-shadow: none;
  color: var(--tblack);
}
.sai{
  position: relative;
}
.sai button{
  width: 100%;
  margin-top: 20px;
  background: var(--tyellow);
  color: #000000;
  padding: 12px 30px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 0px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  border: 2px solid var(--tblu);
}
.sai button:hover{
  background: var(--twhite);
  color: var(--tblue);
  border-color: var(--tblue);
}
.inner_page_form::before {
  content: "";
  animation: zoom-in-zoom-out 2s ease-out infinite;
  position: absolute;
  top: -48px;
  right: -22px;
  background-size: 100% !important;
  background: url(../images/s3.webp) no-repeat;
  width: 28%;
  height: 132px;
}
/* INNER PAGE FORM END */
/* FORM SECTION START  */
.formsec{
  margin-bottom: 50px;
}
.frmsec2 img{
  width: 81%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: -70px;
  margin-bottom: -80px;
}
.hdf{
  display: flex;
  align-items: center;
}
.hdf label{
  font-weight: 500;
  font-size: 15px;
  color: var(--tblack) !important;
  margin-bottom: 5px !important;
}
.hdf input{
  width: 95%;
  height: 50px;
  background: #CECECE;
  border: 1px solid #CECECE;
  padding: 0px 15px;
  border-radius: 1px;
  margin-bottom: 15px;
}
.hdf input:focus{
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid var(--tblue);
}
.hdf input::placeholder{
  font-size: 16px;
  padding-left: 0px;
  font-weight: 500;
  color: #7e7e7e;
}
.frmsec{
  align-items: center;
}
.innfrmsec{
  padding-top: 30px;
}
.innfrmsec button{
  background-color: var(--tblue);
  border-color: var(--tblue);
  color: var(--twhite);
  border-radius: 5px;
  cursor: pointer;
  height: 50px;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 100px;
  transition: 0.5s ease-in-out;
}
.innfrmsec button:hover{
  background-color: var(--tyellow) !important;
  border-color: var(--tyellow);
  color: var(--tblue);
  transform: scale(1.1);
}
/* FORM SECTION START  */
/* HOME SECTION 3 START  */
.homesec3{
  padding-bottom: 30px;
  padding-top: 50px;
 }
 .hmsecrw{
  align-items: center;
 }
 .hs3cls2 img{
   width: 100%;
   margin-left: auto;
   margin-right: auto;
   display: block;
 }
 .hs3cls p{
   font-size: 16px;
   line-height: 30px;
   color: var(--tblack);
   font-weight: 400;
 }
 .hs3cls h2{
   font-size: 40px;
   color: var(--tblue);
   line-height: 55px;
   font-weight: 600;
 }
/* HOME SECTION 3 END  */

/* OUR PARTNERS START */
.partners{
  padding-top: 0px;
  padding-bottom: 30px;
}
.partners img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* OUR PARTNERS END */

/* SERVICES SECTION START */
.subject{
  padding-top: 0px;
  padding-bottom: 0px;
}
.myserv{
  display: flex;
  align-items: center;
  justify-content: center;  
}
.serboxes{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ser_item{
  background: var(--twhite);
  border-radius: 5px;
  box-shadow: 0 0 27px rgb(117 116 128 / 23%);
  padding: 20px 10px;
  width: 90%;
  transform: scale(1.2);
  transition: 0.8s ease-in-out;
  margin-top: 30px;

}
.ser_item:hover{
  background: linear-gradient(189deg, rgba(0,86,178,1) 0%, rgba(8,27,49,1) 100%);
  transform: scale(1.1) !important;
}
.ser_item img{
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.ser_item h3{
  color: var(--tyellow);
  margin-top: 10px; 
   text-align: center;
  font-size: 15px;
  font-weight: 500;
}
/* SERVICES SECTION END */

/* PAYMENT SECTION START */
.payment_sec{
  padding-top: 50px;  
  border-bottom: 10px solid var(--tblue);
}
.paym1 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.paym_rw{
  align-items: center;
}
.paym2 h2{
  font-size: 40px;
  font-weight:700;
  color: var(--tsky);
}
.paym2 p{
  color: var(--tblck);
  font-size: 15px;
  line-height: 30px;
}
.pay_img{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pay_img img{
  width: 25%;
  margin-left: auto;
  margin-right: auto;
}
/* PAYMENT SECTION END */
/* FEATURES SECTION START */
.features{
  padding-top: 50px;
  padding-bottom: 60px;
}
.dfbox1{
  display: flex;
  align-items: center;
}
.dfbox1 img{
  width: 60px;
  height: 60px;
  display: block;
}
.dfbox1 h3{
  color: var(--tsky);
  font-weight: 600;
  font-size: 20px;
  padding-left: 10px;
}
.fbox p{
  font-size: 15px;
  margin-top: 10px;
}
/* FEATURES SECTION END */

/* SERVICES SECTION START */
.topexpert{
  padding-top: 50px;
  padding-bottom: 30px;
  background-image: url(../images/tbac.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.sercl2r1 p{
  line-height: 28px;
  font-size: 16px;
}
.sbox{
  margin-top: 10px;
}
.sbox img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.insbox{
  background-color: var(--twhite);
  border: 1px solid var(--twhite);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 2px 14px 0px #00000045;
  margin-top: -50px;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
.insbox h3{
  color: var(--tblue);
  font-weight: 600;
  font-size: 22px;
}
.insbox p{
  font-size: 16px;
}
.btnorder i{
  color: var(--twhite);
  font-size: 18px;
  background-color: var(--tyellow);
  border-radius: 100px;
  padding: 15px;
  width: 14%;
  margin-top: -25px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  transition: 0.5s ease-in-out;
}
.btnorder i:hover{
  background-color: #B5182C;
  transform: scale(1.1);
  cursor: pointer;
}
.topexpcls{
  text-align: center;
}
.topexpcls h2{
  color: var(--twhite);
  font-size: 20px;
  font-weight: 500;
}
.topexpcls p{
  color: var(--twhite);
  font-size: 35px;
  font-weight: 500;
}
.insbox ul{
  padding-left: 0px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.insbox ul li i{
  font-size: 14px;
  margin-right: 10px;
}
.insbox ul li{
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}
.insbox::before{
  content: '';
  position: absolute;
  width: 201px;
  height: 17px;
  top: -182px;
  right: 154px;
  background-image: url(../images/rt1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}
.insbox::after{
  content: '';
  position: absolute;
  width: 63px;
  height: 126px;
  top: -220px;
  right: -36px;
  background-image: url(../images/r8.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  animation: zoom-in-zoom-out 3s ease-in infinite;

}
/* SERVICES SECTION START */
/* TOOLS SECTION START */
.tools_sec{
  padding-top: 50px;
  padding-bottom: 0px;
  border-bottom: 1px solid #00000017;
}
.tool_sec_bac{
  background-color: #EBEBEB;
}
.tols1 h2 {
  font-size: 40px;
  color: var(--tblck);
  font-weight: 700;
  text-align: center;
}
.tols1 p{
  color: var(--tblck);
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  margin-top: 15px;
}
.tool_imges{
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}
.tool_imges img{
  width: 15%;
}
/* TOOLS SECTION END */

/* TESTIMONIALS SECTION START */
.testimonials{
  padding-top: 50px;
  padding-bottom: 30px;
}
.main_test_box{
  display: flex;
  align-items: center;
}
.item_flx {
  display: flex;
  align-items: center;
}
.item{
  padding: 20px 25px;
  border-radius: 2px;
  box-shadow: 0px 0px 9px -1px rgb(195 195 195);
  margin-left: 10px !important;
  margin-right: 10px !important;
  height: 260px;
}
.item img{
  width: 35px;
  height: 35px;
}
.item p{
  font-size: 14px;
  line-height: 30px;
  margin-top: 10px;
}
.flx1 img {
  width: 60px;
  height: 60px;
}
.flx1 h3 {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 600;
  margin-top: 15px;
}
.flx2 h4{
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins';
  text-align: right;
}
.flx2 img {
  width: 88%;
  height: 18px;
  margin-top: 5px;
display: block;
}
.flx2{
  padding-left: 20px;
}
.testimonials .slick-dots li button:before{
  color: var(--tblue);
  opacity: 1;
  font-size: 14px;
  margin-top: 20px;
}
.testimonials ul.slick-dots {
  position: absolute;
  right: 0;
}
.testimonials .slick-dots li{
  margin: 7px 5px;
  width: 15px;
}
.testimonials .slick-dots li.slick-active button:before {
  color: var(--tyellow);
  opacity: 1;
}
/* TESTIMONIALS SECTION END */

/* TOP EXPERTS SECTION START */
.topexp{
  padding-top: 50px;
  text-align: center;
}
.topex h2{
  color: var(--tblck);
  font-size: 43px;
  font-weight: 600;
}
.myrcl{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.myrcl p{
  font-size: 16px;
  line-height: 30px;
}
.brandlogo img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.slidexp{
  background-image: url(../images/te.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 30px;
  padding-bottom: 20px;
}
.slidexp img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* TOP EXPERTS SECTION END */

/* CONTACT FORM SECTION START */
.contactfrm{
  padding-top: 30px;
  background-image: url(../images/cb.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 30px;
}
.cntcl h4{
  color: var(--tred);
  font-size: 17px;
  font-weight: 700;
}
.cntcl h3{
  color: var(--tblue);
  font-size: 35px;
  font-weight: 600;
}
.contactfrm input {
  width: 100%;
  height: 48px;
  background-color: #E5E5E5;
  border: 1px solid #E5E5E5;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--tblck);
  padding-left: 15px;
  border-radius: 5px;
}
.contactfrm input:focus{
  border-color: var(--torg);
  outline: none;
}
.contactfrm input::placeholder{
  color: var(--tblack);
  font-size: 16px;
}
.contactfrm textarea {
  width: 100%;
  height: 160px;
  background-color: #E5E5E5;
  border: 1px solid #E5E5E5;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--tblck);
  padding-left: 15px;
  border-radius: 5px;
  resize: none;
}
.contactfrm textarea:focus{
  border-color: var(--tblue);
  outline: none;
}
.contactfrm textarea::placeholder{
  color: var(--tblue);
  font-size: 16px;
}
.btn_cnfrm button {
  width: 30%;
  margin-right: auto;
  background: var(--tblue);
  color: var(--twhite);
  height: 53px;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 100px;
}
.btn_cnfrm button:hover{
  background: var(--tblack);
}
.cnfmg img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.mycntg{
  align-items: center;
}
/* CONTACT FORM SECTION END */

/* HOMES SECTION 4 START */
.sndrw{
  align-items: center;
}
.snd_lst_box{
  text-align: center;
  background-color: var(--tblue);
  border-radius: 5px;
  padding: 10px 15px;
  margin-top: 15px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: 230px;
  transition: 0.5s ease-in-out;
  box-shadow: 0px 0px 9px -1px rgb(195 195 195);

}
.snd_lst_box:hover{
  background-color: var(--tblue);
  transform: scale(1.1);
}
.snd_lst_box img{
  width: 60px;
  height: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  filter: brightness(0) invert(1);
}

.snd_lst_box h3{
  font-size: 20px;
  font-weight: 600;
  color: var(--twhite);
   padding-top: 10px;
}
.snd_lst_box p{
  font-size: 14px;
  color: var(--twhite);
  font-weight: 400;
}
.snd_rw_c{
  margin-left: auto;
  margin-right: auto;
}
/* HOMES SECTION 4 END */

/* RATING SECTION START */
.rating_sec{
  background: linear-gradient(189deg, rgba(0,86,178,1) 0%, rgba(8,27,49,1) 100%);
  border-top: 15px solid #FF8800;
}
.ratbox{
  text-align: center;
  padding: 25px;
  transition: 0.5s ease-in-out;
}
.ratbox:hover{
  transform: scale(1.1);
  background-color: #031026;
}
.ratbox h3{
  font-size: 22px;
  font-weight: 600;
  color: var(--twhite);
}
.ratbox h4{
  font-size: 23px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--twhite);
}
.ratbox  img{
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
}
.ratbox{
  text-align: center;
  color: var(--twhite);
  font-weight: 400;
  font-size: 16px;
}
/* RATING SECTION END */


/* POPUP FORM START */
.modal-header{
  border-bottom: 0px;
}
.modal-title{
  display: none;
}
.popupfrm .modal-content {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 600px !important;
  background-color: var(--tblue);
}
.popcl1{
  position: relative;
}
.popcl1::before {
  content: '';
  position: absolute;
  width: 309px;
  left: 5px;
  height: 348px;
  top: -23px;
  background-image: url(../images/awq.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.popcl1 img{
  width: 100%;
}
.modal-dialog {
  max-width: 600px;
}
.modal-header{
  position: relative;
}
 button.close {
  background: var(--tdark);
  border-radius: 100px;
  opacity: 1;
  width: 38px;
  height: 37px;
  position: absolute;
  top: 24px;
  padding: 5px 11px !important;
  right: 25px;
  font-size: 30px;
  color: #fff;
  font-weight: 200;
}
.btn-close{
  z-index: 999;
  background-color: var(--twhite);
  border-radius: 100px;
  opacity: 1;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 15px;
  font-weight: 200;
}
.popcol2 form{
  position: relative;
  z-index: 2;
}
.col-lg-6.col-md-6.popcol2 {
  position: relative;
}

.popcol2 h3{
  color: var(--twhite);
  font-size: 22px;
  font-weight: 500;
  font-family: 'Poppins';
  text-align: center;
}
.popcol2 input{
  width: 100%;
  height: 45px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 2px;
  margin-bottom: 8px;
  padding-left: 15px;
  font-size: 15px;
  color: var(--tblck);
  margin-left: 5px;
}
.popcol2 input::placeholder{
  color: rgb(104, 103, 103);
  font-size: 15px;
  font-weight: 400;
}
.popcol2 input:focus{
  box-shadow: none;
  outline: none;
  border-color: var(--tred);
}
.popcol2 .btn_submit input{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: var(--tyellow);
  border: 1px solid var(--tyellow);
  color: var(--twhite);
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.2s ease-in-out;
  margin-left: 5px;
}
.popcol2 .btn_submit input:hover{
  background: #B5182C;
  color: var(--twhite);
  border-color: #B5182C;
}
/* POPUP FORM END */

/* DISCLAIMER POPUP START */
.disclaimer_pop .modal-content {
  width: 465px !important;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer_pop h2{
  font-size: 30px;
  font-weight: 600;
  font-family: 'Poppins';
  color: var(--tred);
}
.disclaimer_pop p{
  font-size: 15px;
  line-height: 30px;
  color: var(--tblck);
}
.disc_bdy{
  padding: 25px 20px;
  box-shadow: 5px 4px 5px 0px #efa12194;
}
/* DISCLAIMER POPUP END */

/* TERMS AND PRIVACY START */
.terms_priv{
  padding-top: 70px;
  padding-bottom: 30px;
}
.terms_priv h2{
  font-size: 35px;
  font-weight: 600;
  color: var(--tblck);
  font-family: 'Poppins';
}
.terms_priv h4{
  font-size: 25px;
  font-weight: 500;
  color: var(--tblck);
  font-family: 'Poppins';
}
.terms_priv ul li{
  margin-top: 5px;
  list-style-type: disclosure-closed;
}
.terms_priv ul li::marker{
  color: var(--tred);
}
.terms_priv p{
  font-size: 15px;
  line-height: 28px;
}
.terms_priv ul li{
  font-size: 15px;
}
.terms_priv a{
  color: var(--tred);
}
.terms_priv a:hover{
  color: var(--tblck);
}
/* TERMS AND PRIVACY END */

/* THANKYOU CODE START */
.thankyou{
  padding-top: 100px;
  text-align: center;
  padding-bottom: 150px;
}
.thankyou img{
  width: 15%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.thankyou h2{
  font-family: 'Poppins';
  font-size: 40px;
  font-weight: 600;
}
.thankyou h2 span{
  color: var(--tred);
}
.thankyou p{
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.thankyou .secbtn {
  margin-top: 40px;
}
.thankyou .btn_trans{
  border-radius : 5px !important;
  padding: 0px 30px;
}
/* THANKYOU CODE END */

/* FOOTER SECTION START */
.footer{
  padding-top: 50px;
  background: linear-gradient(189deg, rgba(0,86,178,1) 0%, rgba(8,27,49,1) 100%);
  padding-bottom: 30px;
}
.footre_rw{
  align-items: flex-start;
  display: flex;
}
.fcol1 img{
  width: 65%;
  margin-right: auto;
  display: block;
}
.fcol1 p{
  font-size: 14px;
  color: var(--twhite);
  line-height: 28px;
  font-weight: 300;
  margin-top: 20px;
  font-family: 'Poppins';
}
.fcol2 h3{
  color: var(--twhite);
  font-family: 'Poppins';
  font-size: 19px;
  font-weight: 600;
}
.fcol3 h3{
  color: var(--twhite);
  font-family: 'Poppins';
  font-size: 19px;
  font-weight: 600;
}
.fcol2 ul{
  padding-left: 10px;
  margin-top: 20px;
}
.fcol3 ul{
  padding-left: 10px;
  margin-top: 20px;
}
.fcol2 ul li {
  margin-top: 10px;
  list-style-type: disclosure-closed;
  color: var(--twhite);
}
.fcol3 ul li {
  margin-top: 10px;
  list-style-type: disclosure-closed;
  color: var(--twhite);
}
.fcol2 ul li a{
  font-size: 15px;
  color: var(--twhite);
}
.fcol3 ul li a{
  font-size: 15px;
  color: var(--twhite);
}
.fcol2 ul li a:hover{
  color: var(--tyellow);
}
.fcol3 ul li a:hover{
  color: var(--tyellow);
}
.mt{
  margin-top: 60px;
}
/* FOOTER FORM START */
.footer_form{
  background: var(--twhite);
  padding: 20px;
}
.footer_form h3{
  color: var(--tblack);
  font-size: 25px;
  font-weight: 500;
}
.footer_form p{
  font-size: 14px;
  line-height: 28px;
  color: var(--tblack);
}
.footer_form input{
  width: 100%;
  height: 45px;
  background-color: #E5E5E5;
  border: 1px solid #E5E5E5;
  border-radius: 2px;
  margin-bottom: 8px;
  padding-left: 15px;
  font-size: 15px;
  color: var(--tblack);
}
.footer_form input::placeholder{
  color: var(--tblck);
  font-size: 15px;
  font-weight: 400;
}
.footer_form input:focus{
  box-shadow: none;
  outline: none;
  border-color: var(--tblue);
}
.footer_form .btn_submit input{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: #01064D;
  color: var(--twhite);
  margin-top: 10px;
  transition: 0.2s ease-in-out;
  height: 45px;
  border: none;
  border-radius: 100px;
}
.footer_form .btn_submit input:hover{
  background: var(--tblue);
  color: var(--twhite);
}
.fcol3{
  position: relative;
}
.fcol4{
  position: relative;
}
.fcol4::before {
  content: '';
  position: absolute;
  width: 195px;
  height: 126px;
  top: -52px;
  right: -42px;
  background-image: url(../images/rc1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  animation: zoom-in-zoom-out 3s ease-in infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
  transform: scale(1, 1);
  }
  50% {
  transform: scale(1.2, 1.2);
  }
  100% {
  transform: scale(1, 1);
  }
  }
/* FOOTER FORM END */
/* FOOTER SECTION END */
/* COPYWRITE SECTION START */
.copy{
  background: linear-gradient(180deg, rgba(255,197,0,1) 23%, rgba(255,139,0,1) 100%);

}
.copyright{
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.copr1 p{
  font-size: 15px;
  color: var(--twhite);
}
.copr1 p span{
  color: var(--tdark);
}
.copr2 ul{
  display: flex;
  align-items: center;
  padding-left: 0px;
  justify-content: center;
}
.copr2 ul li{
  padding-left: 10px;
}
.copr2 ul li a{
  color: var(--twhite);
  font-size: 15px;
  font-weight: 500;
}
.copr2 ul li a:hover{
  color: var(--tblue);
}
/* COPYWRITE SECTION END */

/* Window Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--tyellow); 
  border-color: var(--tyellow);
  border-radius: 7px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--tyellow); 
}
/* ANIMATION */
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
  }
  30% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
  100% {
    transform: scale(0.8);
    transition: all 0.7s ease-in-out;

  }
}
.hmrw2{
  align-items: center;
}

/* COUNTER SECTION START */
.mycounter{
  padding-top: 30px;
  padding-bottom: 30px;
}
.cntc2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.councl1{
  display: flex;
  align-items: center;
}
.mflx{
  display: flex;
 justify-content: center;
 align-items: flex-end;
}
.cbox{
  background-color: var(--tyellow);
  margin: 20px;
  border-radius: 5px;
  padding: 20px 30px;
  text-align: center;
  color: var(--twhite);
  font-weight: 600;
  width: 100%;
  height: 150px;
  display: grid;
  transition: 0.5s ease-in-out;
}
.cbox:hover{
  transform: scale(1.1);
  background-color: var(--tblue);
}
.cbox span{
  font-size: 35px;
  text-align: center;
}
.cbox p{
  font-size: 25px;
  text-align: center;
}
.cbox h3{
  font-size: 17px;
}
.cntrw{
  align-items: center;
}
/* COUNTER SECTION END */

/* INNE BANNER SECTION START */
.innbann{
  background-color: var(--tblue);
  padding-top: 30px;
  padding-bottom: 30px;
}
.sinrw{
  align-items: center;
}
.sinrw h2{
  color: var(--twhite);
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.sinrw p{
  font-size: 15px;
  line-height: 28px;
  color: var(--twhite);
}
/* INNE BANNER SECTION END */

/* Disclaimer */
.discla h3{
  font-size: 27px;
  color: #000;
  font-weight: 600;
}
.discla p{
  font-size: 15px;
  color: #000;
  line-height: 33px;
}
.dis{
  box-shadow: 3px 4px 10px rgb(243 155 40);
  background-color: var(--twhite);
}


/* Disclaimer */