/* CSS Document */
/** Importing necessary  Styles. **/
/*------- Font -------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*----Bootstrap css ----- */
@import url('../vendor/bootstrap/css/bootstrap.min.css');
/*---- Navbar Css------*/
@import url('navbar.css');
/*----Framework css-----*/
@import url('framework.css');
/*---- Sections -----*/
@import url('source.css');
@import url('menus.css');
@import url('footers.css');

/*----------- Fancybox css -------*/
@import url('../vendor/fancybox/dist/jquery.fancybox.min.css');
/*----------- Slick Slider -------*/
@import url('../vendor/slick/slick.css');
/*----Animate css----*/
@import url('animate.min.css');
@import url('custom-animation.css');
/*----- Select Css ------*/
@import url('../vendor/selectize.js/selectize.css');
/*----- Animated Headline ------*/
@import url('../vendor/animated-headline-master/style.css');
/*----- Fullpage Scroll ------*/
@import url('../vendor/fullScroll/jquery.pagepiling.css');
/*-------- AOS css ------*/
@import url('../vendor/aos-next/dist/aos.css');
/*------- Phone Number Selector -------*/
@import url('../vendor/intl-tel/build/css/intlTelInput.css');


/******** 01. Loading Transition ********/
.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
  text-align: center;
}
.ctn-preloader .animation-preloader .icon {display: inline-block; position: relative;}
.ctn-preloader .animation-preloader .icon span {
  animation: spinner 1.5s infinite linear;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.ctn-preloader .animation-preloader .icon span:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  top: 12px;
  left: 0;
  box-shadow: 0 0 10px var(--red-two);
  border-radius: 50%;
  background: var(--red-one);
}
.ctn-preloader .animation-preloader .txt-loading {user-select: none;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: var(--heading);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {

  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  color: rgb(0 0 0 / 14%);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

/**** Scroll to Top ****/
.scroll-top {
  width:35px;
  height:35px;
  line-height: 35px;
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
  text-align: center;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--red-one);
  display: none;
  transition: all 0.3s ease-in-out;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/******** 02. Global settings ********/

/** Scrolbar
::-webkit-scrollbar{ width: 5px; }
::-webkit-scrollbar-track { background: #fff;}
::-webkit-scrollbar-thumb { background: #2a2a2a;border-radius: 0;}
**/

:root {
  --text-color   : #292929;
  --heading      : #222222;
  --red-one      : #FF2759;
  --red-two      : #FB1B1D;
  --orange-one   : #FF6839;
  --deep-cyan    : #EBF1EE;
  --light-cyan   : #F4FAFE;
  --light-blue   : #F1F7FD;
  --deep-blue    : #EBF6FF;
}
::selection {
  background-color: #2a2a2a;
  color: #fff;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 18px;
  position: relative;
  line-height: 1.66em;
  color: var(--text-color);
}
.main-page-wrapper {overflow-x:hidden;}
.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {color: var(--heading); font-weight: normal;}
.h1,h1 {font-size: 80px;}
.h2,h2 {font-size: 52px;}
.h3,h3 {font-size: 36px;}
.h4,h4 {font-size: 24px;}
.h5,h5 {font-size: 20px;}
.h6,h6 {font-size: 15px;}
::-webkit-input-placeholder {color: rgba(0, 0, 0, 0.6);}
:-ms-input-placeholder { color: rgba(0, 0, 0, 0.6);}
::placeholder {color: rgba(0, 0, 0, 0.6);}
.dark-bg ::-webkit-input-placeholder {color: rgba(255, 255, 255, 0.5);}
.dark-bg :-ms-input-placeholder { color: rgba(255, 255, 255, 0.5);}
.dark-bg ::placeholder {color: rgba(255, 255, 255, 0.5);}
.dark-style ::-webkit-input-placeholder {color: rgba(255, 255, 255, 0.5);}
.dark-style :-ms-input-placeholder { color: rgba(255, 255, 255, 0.5);}
.dark-style ::placeholder {color: rgba(255, 255, 255, 0.5);}
/*** Transitions ***/
.tran3s,.svg path {transition: all 0.3s ease-in-out;}
.tran4s {transition: all 0.4s ease-in-out;}
.tran5s {transition: all 0.5s ease-in-out;}
.tran6s {transition: all 0.6s ease-in-out;}
/*** Mix ***/
.style-none {list-style: none; padding-left: 0; margin-bottom: 0;}
.cs-screen {position: absolute;}
.shapes {position: absolute; z-index: -1;}
.light-bg {background-color: #FFFBF9;}
.dark-bg {background-color: #121212;}
.hero-spacing {margin: 135px 65px 0;}
.box-layout {padding-left: 65px; padding-right: 65px;}
.slick-dots {padding-left: 0; margin-bottom: 0;}
.border-bottom {border-bottom: 1px solid rgba(0, 0, 0, 0.08)!important;}
.border-top {border-top: 1px solid rgba(0, 0, 0, 0.08)!important;}
.border-left {border-left: 1px solid rgba(0, 0, 0, 0.08)!important;}
.dark-bg .border-bottom,.dark-bg.border-bottom {border-bottom: 1px solid rgba(255, 255, 255, 0.08)!important;}
.dark-bg .border-top,.dark-bg.border-top {border-top: 1px solid rgba(255, 255, 255, 0.08)!important;}
.dark-bg .border-left,.dark-bg.border-left {border-left: 1px solid rgba(255, 255, 255, 0.08)!important;}
.dark-footer.border-top {border-top: 1px solid rgba(255, 255, 255, 0.08)!important;}

/*** Text lg ***/
.text-lg {font-size: 24px; line-height: 1.7em;}

/*** Text sm ***/

@media (max-width: 1199px) {
  .text-lg {font-size: 19px;}
}



/******** 03. Titles ********/
.title-style-one .upper-title {
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  padding-bottom: 10px;
}
.title-style-one .title {

  font-weight: normal;
  font-size: 72px;
  line-height: 1.16em;
  margin-bottom: 0;
}
.title-style-one.white-vr .title {color: #fff;}
.title-style-one.white-vr .upper-title {color: rgba(255, 255, 255, 0.5);}
.title-style-one .title span {
  color: var(--red-one); 
  position: relative;
  display: inline-block;
}
.title-style-one .title span:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--red-one);
  left: 0;
  bottom: 2px;
}
.title-style-two .title {

  font-weight: normal;
  font-size: 68px;
  line-height: 1.25em;
  margin-bottom: 0;
}
.title-style-two.white-vr .title {color: #fff;}
.title-style-two .title span {
  color: var(--red-one); 
  position: relative;
  display: inline-block;
}
.title-style-two .title span:before {
  content: '';
  position: absolute;
  width: 98%;
  height: 3px;
  background: var(--red-one);
  left: 2px;
  bottom: 4px;
}
.title-style-three .title {
  font-weight: normal;
  font-size: 52px;
  margin-bottom: 0;
}
.title-style-three.white-vr .title {color: #fff;}
.title-style-three .title span {
  color: var(--red-one); 
  position: relative;
  display: inline-block;
}
.title-style-three .title span:before {
  content: '';
  position: absolute;
  width: 98%;
  height: 3px;
  background: var(--red-one);
  left: 2px;
  bottom: 4px;
}



/**** Buttons ****/
.ripple-btn {position: relative;}
.ripple-btn:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  transform: scale(0);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.ripple-btn:hover:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.ripple-btn.btn-one:hover {background: #161616;}
body .btn-one {
  
  font-size: 17px;
  color: #fff;
  padding: 0 42px;
  text-align: center;
  line-height: 58px;
  background: #161616;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
body .btn-one.border0 {border-radius: 0;}
body .btn-one.xs {font-size: 14px; text-transform: uppercase;}
body .btn-one img {vertical-align: 0; margin-left: 10px; display: inline-block;}
body .btn-one:active,body .btn-one:hover {background: var(--red-one);}
body .btn-two {
  
  font-size: 17px;
  color: var(--heading);
  padding: 0 40px;
  text-align: center;
  line-height: 51px;
  border: 2px solid var(--heading);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
body .btn-two:hover {background:var(--red-one); border-color: var(--red-one); color: #fff;}
body .btn-three {
  
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
body .btn-three.white-vr {color: #fff;}
body .btn-three.btn-color {color: var(--red-one);}
body .btn-three i {margin-left: 3px; font-size: 17px; vertical-align: -1px;}
body .btn-three:hover,body .btn-three.white-vr:hover {color: var(--red-one); text-decoration: underline;}


/**** 04. Main menu ****/
.main-menu {
  position: absolute;
  z-index: 99;
  top:0;
  left:0;
  right: 0;
  padding: 30px 65px;
  transition: all 0.4s ease-out;
}
.main-menu.sticky-menu.fixed {
  z-index: 990;
  padding-top: 8px; 
  padding-bottom: 8px;
  background: #fff;
  box-shadow: 0 13px 35px -12px rgba(35,35,35,0.1);
}
.main-menu .inner-content {position: relative;}
.main-menu .navbar,.main-menu .mega-dropdown {position: static;}
.main-menu.sticky-menu.fixed.white-vr,.main-menu.sticky-menu.fixed.dark-bg {background: #191919;}
.main-menu .logo {width: 50px;}
.main-menu .logo-xl {width: 203px;}
.menu-one .right-widget .login-btn {margin-right: 60px;}
.menu-one .right-widget .login-btn span {
  
  margin: 0 0 0 12px;
  transition: all 0.3s ease-in-out;
  color: var(--heading);
}
.menu-one .right-widget .login-btn:hover span {text-decoration: underline;}


/*** white top menu  ***/
.white-top-menu .navbar .navbar-nav .nav-link {color: #fff;}
.white-top-menu.fixed .navbar .navbar-nav .nav-link {color: #222;}

/*** Pin & unpin  ***/
.main-header-fixed {
  position: fixed !important;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-header-fixed--unpin {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.main-header-fixed--pin {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.main-header-fixed {background: #fff;}
.main-header-fixed .navbar .navbar-nav .nav-link {color: var(--heading)}


/* Responsive CSS Document */

@media (min-width: 992px) {
  .container {padding-right: 0;padding-left: 0;}
}

@media (min-width: 1400px) {
}

/*Grid xl Start*/
@media (max-width: 1399px) { 
}

/*Between Grid xl*/
@media (min-width: 1200px) and (max-width: 1399px) {
}

/*Grid lg Start*/
@media (max-width: 1199px) {
}

/*Between Grid lg*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/*Grid md Start*/
@media (max-width: 991px) {
}

/*Between Grid md*/
@media (min-width: 768px) and (max-width: 991px) {
}

/*Grid sm Start*/
@media (max-width: 767px) {
}

/*Between Grid sm*/
@media (min-width: 576px) and (max-width: 767px) {
}

/*Extra Small breakpoints*/
@media (max-width: 575px) {
}
