@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/

 
/******* fonts *********/

@import url('../fonts/nexa_stylesheet.css');

/******* fonts *********/

html{
  overflow-x: hidden;
}

body{
  font-family: 'Nexa';
  background-color: #FBFBFB;
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

h1{
  font-family: 'Nexa';
  color: #ffffff;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 11px;
}

h1::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #FFCD00;
  border-radius: 5px;
}

h2{
  font-family: 'Nexa';
  color: #4D4D4D;
  font-size: 26px;
  line-height: 48px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  z-index: 9;
}

h2::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #FFCD00;
  border-radius: 5px;
}

h3{
  font-family: 'Nexa';
  color: #000000;
  font-size: 16px;
  font-weight: 900;
}

h4{
  font-family: 'Nexa';
  color: #053C87;
  font-size: 17px;
  font-weight: 800;
}

p{
  font-family: 'Nexa';
  font-size: 13px;
  color: #626262;
}

.btn-primary{
  font-family: 'Nexa XBold';
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  background-color: #FFCD00;
  color: #000000;
  border: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.btn-primary span{
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.btn-primary svg{
  width: 25px;
  margin-left: 8px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.btn-primary:hover{
  background-color: #fedf77;
  color: #000000;
}

.btn-primary:hover svg{
  transform: translateX(-40px);
}

.btn-primary:hover span{
  opacity: 0;
}

/* common css */

.line_text{
  font-size: 80px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff75;
  font-weight: 900;
}

.blue_line_text{
  position: absolute;
  font-size: 80px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #053C87;
  font-weight: 900;
  width: max-content;
  letter-spacing: 3px;
  right: 70px;
}

.rotate{
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

.none_after::after{
  background-color: transparent !important;
}

.none_before::before{
  background-color: transparent !important;
}

.cover_bg{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.font_46{
  font-size: 46px !important;
}


/* navbar */

main{
  position: absolute;
  width: 100%;
}

.top_nav{
  background-image: url(../images/dark_blue_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px 17px;
  border-radius: 50px;
}

.navbar-nav .nav-link{
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.navbar-nav .nav-link::after{
  position: absolute;
  content: "";
  left: 0;
  top: 33%;
  background-color: #ffffff;
  width: 1px;
  height: 35%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link {
  color: #FFD551;
  font-weight: 600;
}

.logo{
  width: 150px;
}

.slider_bg{
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rotate_text .line_text{
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: absolute;
  bottom: 0;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

.slider_con{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.down_btn_div{
  display: flex;
  gap: 10px;
  margin-bottom: 100px;
}

.down_btn{
  width: 150px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.down_btn:hover{
  box-shadow: #FFCD0040 0px 25px 50px -12px;
}

.social_icon_div a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  background-color: #082144;
  border-radius: 0 3px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.social_icon_div a:hover{
  background-color: #FFCD00;
  color: #082144;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 25px 50px -12px;
}

/* ===================== */
/* ===================== */

main{
  z-index: 9999;
}

.carousel-item {
  height: 100vh;
}

.carousel-caption {
  text-align: left;
  right: 0;
  left: 0;
  padding-bottom: 80px;
}

.slider_img_div{
  position: relative;
  left: -76px;
  top: 55px;
}

.slider_img_div .buddy_img{
  width: 240px;
  position: absolute;
  z-index: 2;
}

.slider_img_div .img_1 {
  width: 264px;
  position: absolute;
  left: 169px;
  top: -78px;
  z-index: 1;
}

.slider_img_div .img_2 {
  width: 300px;
  position: absolute;
  left: 359px;
  top: -140px;
}

.carousel-indicators{
  left: auto;
}

.carousel-indicators [data-bs-target]{
  background-color: #082144;
}

.carousel-indicators .active {
  width: 50px;
}

/* about us section */

.icon_flex{
  display: flex;
}

.icon_div img{
  width: 70px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 0px 4px;
}

.conatct_icon{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 0px 4px;
  width: 70px;
  background-color: #ffffff;
  padding: 10px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.conatct_icon img{
  width: 100%;
}

.icon_text{
  background-color: #ffffff;
  height: fit-content;
  margin-left: 8px;
  padding: 11px 12px;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.icon_text h3{
  margin-bottom: 0;
}

.icon_flex:hover .icon_text{
  background-color: #082144;
}

.icon_flex:hover .icon_text h3{
  color: #ffffff;
}

.icon_flex:hover .icon_text p{
  color: #ffffff;
}


/* features section */

.feature_card{
  background-color: #053C87;
  padding: 20px;
  position: relative;
  border-radius: 0 8px;
}

.feature_card img{
  width: 50px !important;
}

.feature_card p {
  color: #ffffff;
  margin-bottom: 0;
}

.feature_card h3 {
  color: #ffffff;
  line-height: 20px;
  position: relative;
  padding: 10px 0px;
  margin-bottom: 20px;
}

.feature_card h3::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #FFCD00;
  border-radius: 5px;
}

.feature_card .crown{
  width: 30px !important;
  border-radius: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 36px);
  right: -55px;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
  transition: 0.5s;
}

.owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 36px);
  left: -55px;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
  transition: 0.5s;
}

/* testimonials */

.testi_height{
  height: 400px;
}

.testi_icon{
  position: absolute;
  width: 150px;
  right: 0;
  top: -20px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 91% !important; */
  /* height: auto !important; */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  top: auto !important;
  bottom: 0 !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto !important;
  right: 11px !important;
  bottom: 15px !important;
}

.custom-prev,
.custom-next {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.custom-prev {
  background-image: url('../images/up_arrow.png');
}

.custom-next {
  background-image: url('../images/down_arrow.png');
}

.custom-prev {
  left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.custom-next {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: -20px !important;
}

.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}

.testi_profile{
  border-radius: 500px;
  border-left: #FFCD00 solid 3px;
  width: 100px !important;
  height: 100px !important;
}

.testi_text{
  background-color: #ffffff;
  border-radius: 0 7px;
  box-shadow: rgba(0, 0, 0, 0.044) 0px 5px 15px;
  padding: 15px;
}

.checked {
  color: #FFCD00;
}

.testi_text i{
  font-size: 14px;
}

/* footer */

.bg-white{
  background-color: #ffffff;
}

.footer_logo{
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 0 9px;
  box-shadow: rgba(0, 0, 0, 0.122) 0px 5px 15px;
}

.footer_logo img{
  width: 150px;
  margin-bottom: 25px;
}

.footer_logo p{
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 0;
}

.footer_logo p::before{
  content: "";
  position: absolute;
  top: -10px;
  height: 3px;
  width: 50px;
  background-color: #FFCD00;
  border-radius: 5px;
  /* left: 50%; */
}

.footer_nav a{
  font-size: 13px;
  color: #4D4D4D;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.footer_row a:hover{
  color: #053C87;
}

.footer_row p{
  margin-bottom: 8px;
}

.footer_row h4{
  position: relative;
  margin-bottom: 25px;
}

.footer_row .nav_header::before{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 30px;
  background-color: #FFCD00;
  border-radius: 5px;
}

.footer_nav{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact_div h2{
  font-weight: 800;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.contact_div h2:hover{
  color: #FFCD00;
}

.contact_div h2::before{
  background-color: transparent !important;
}

.footer_contact{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .contact_div a{
  width: fit-content;
  display: block;
} */

.footer_img{
  width: 100%;
  position: absolute;
  bottom: 50px;
}

.copyright_row{
  border-top: 1px solid #D4D4D4;
}

.copyright_row p{
  font-size: 11px;
  font-style: italic;
  font-weight: 600;
  color: #afafaf;
}

.owl-nav .owl-next{
  right: -10px;
}

.owl-nav .owl-prev{
  left: -10px;
}

/* mobile nav */

.mobi_nav_btn{
  background-color: #053C87;
  padding: 0;
}

/* inner pages */

.inner_slider .carousel-inner{
  background-position: bottom;
  height: 318px;
  background-repeat: no-repeat;
  background-size: cover;
}

.inner_slider .carousel-inner .carousel-item{
  height: 400px !important;
}

.benifit_card{
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  position: relative;
  border-radius: 7px;
}

.benifit_text img{
  width: 50px;
  margin-bottom: 10px;
}

.benifit_text{
  position: absolute;
  padding: 20px;
  bottom: 0;
  height: 110px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.benifit_card:hover .benifit_text{
  height: 200px;
}

.num_box h2{
  color: #ffffff;
  width: fit-content;
  margin-bottom: 0;
  padding: 0;
}

.num_box h3{
  color: #053C87;
}

.num_box .num_div{
  background-color: #5FCDA0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.work_text h2::before{
  left: 46%;
}

.work_line{
  font-size: 73px;
}

.none_hover{
  background-color: transparent;
}

.icon_flex:hover .none_hover{
  background-color: transparent;
}

.icon_flex:hover .none_hover p{
  color: #4D4D4D;
}

/* form */

.form_div{
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
}

.form-control {
  font-family: 'Nexa';
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #626262;
  background-color: transparent;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border-bottom: 1px solid #8f8f8f;
}

.form-floating>label {
  font-family: 'Nexa';
  color: #626262;
  font-size: 13px;
}

.form-control:focus {
  color: #626262;
  background-color: transparent;
  border-color: rgb(0, 0, 0);
  outline: 0;
  box-shadow: none;
}

.form-floating i {
  position: absolute;
  top: 23px;
  right: 15px;
  font-size: 13px;
  color: #626262;
}

/* mobi nav */

#menuToggle {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  background-color: #082144;
  padding: 10px;
  border-radius: 5px;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 0;
  padding: 25px;
  padding-top: 125px;
  right: -100px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ffffff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  background-image: url(../images/testi_bg.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}

#menu li
{
  padding: 10px 0;
}

#menu li h2{
  font-size: 16px;
}

#menu li h2::before {
  width: 28px;
}

#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  color: #000000 !important;
  font-weight: 900 !important;
}



