/* Font Family ***********************************************************************/
/* Poppins Font ****/
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
  font-display: swap;
}

/* Cera Pro Font ****/
@font-face {
  font-family: "Cera-Pro-Medium";
  src: url("../fonts/Cera-Pro/Cera-Pro-Medium.otf");
  font-display: swap;
}
@font-face {
  font-family: "Cera-Pro-Bold";
  src: url("../fonts/Cera-Pro/Cera-Pro-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "Cera-Pro-Black";
  src: url("../fonts/Cera-Pro/Cera-Pro-Black.otf");
  font-display: swap;
}

/* Futura-Bk-BT-Book Font *****/
@font-face {
  font-family: "Futura-Bk-BT-Book";
  src: url("../fonts/Futura-Bk-BT/Futura-Bk-BT-Book.ttf");
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --black: #000000;
  --black-cow: #4D4A4A;
  --indigo: #52008D;
  --jaguar: #07000B;
  --orange: #FB653A;
  --porcelain: #F2F2F2;
  --vampire-grey: #505050;
  --very-light-pink: #FCF4F2;
  --white: #FFFFFF;
  --white-smoke: #F5F5F5;
  --spun-pearl: #AEA5B7; 
  --iron: #D8D8D8;
  --dune: #343434;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}

/**/
.orange-bg {
  background-color: var(--orange) !important;
}
.indigo-bg {
  background-color: var(--indigo) !important;
}
.white-smoke-bg {
  background-color: var(--white-smoke);
}
.very-light-pink-bg {
  background-color: var(--very-light-pink);
} 

.small {
  font-size: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
.common::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
body {
  background: #FFFFFF;
  font-family: "Poppins-Regular";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--dune);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 54px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 38px;
}
h4 {
  font-size: 34px;
}
h5 {
  font-size: 25px;
}
h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--dune);
}
p:last-child {
  margin-bottom: 0;
}
ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
a:hover {
  color: var(--dune);
}
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  color: var(--indigo);
  text-transform: uppercase;
  font-family: "Cera-Pro-Medium";
}
.section-heading p {
  font-size: 24px;
  text-transform: capitalize;
  max-width: 960px;
  margin: 0 auto;
}

.cmn-btn {
  font-size: 16px;
  padding: 11px 40px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  text-transform: capitalize;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins-Bold";
}
.cmn-btn:hover {
  color: var(--white);
}
.cmn-btn img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.bg {
  padding: 100px 0;
}

.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img, video {
  max-width: 100%;
}
/* .button-box {
  padding-top: 20px;
} */

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.form-control-common {
  font-size: 16px;
  color: var(--black);
  padding: 12px 20px;
  width: 100%;
  border-radius: 6px;
  background: var(--white);
  border: none;
  box-shadow: none;
  appearance: textfield;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 30px;
}

/**/
input::placeholder,
textarea::placeholder {
  color: var(--spun-pearl);
  font-family: "Poppins-Medium";
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--spun-pearl);
  font-family: "Poppins-Medium";   
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--spun-pearl);
  font-family: "Poppins-Medium";
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--spun-pearl);
  font-family: "Poppins-Medium";
}

/* header css start ******************************************************************************/
/* @keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
} */

/* #header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
} */
#header {
  padding: 15px 0;
  background-color: var(--white);
  transition: .5s all;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 120px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--orange);
  transition: .5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
}
#header .main-nav nav ul li:not(:last-child) {
  margin-right: 40px;
} 
#header .main-nav nav ul li a {
  font-size: 20px;
  color: var(--vampire-grey);
  padding: 5px 5px;
  transition: 0.5s all;
}
#header .main-nav nav ul li a:hover {
  color: var(--orange);
}
#header .main-nav nav ul li.active a,
#header .main-nav nav ul li.current-menu-item a {
  color: var(--orange);
}
#header nav ul li a::before {
  position: absolute;
  content: "";
  left: 5px;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: 0.5s all;
  border-radius: 10px;
  background-color: var(--orange);
}
#header .main-nav nav ul li.current-menu-item a:before, 
#header .main-nav nav ul li.active a:before, 
#header .main-nav nav ul li a:hover:before {
  background-color: var(--orange);
  width: 50%;
}

/* home banner css ******************************************************************************/
#home-banner {
  background: url("../images/home-banner-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 9%  0;
}
#home-banner .section-heading {
  text-align: left;
  margin-bottom: 0;
}
#home-banner .section-heading h1 {
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  font-family: "Cera-Pro-Bold";
}
#home-banner .section-heading h1 span {
  color: var(--orange);
  font-family: "Cera-Pro-Black";
}
#home-banner .section-heading p {
  font-size: 18px;
  margin: 0;
  max-width: 460px;
  text-transform: capitalize;
}
#home-banner .talk-box .title-box h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Cera-Pro-Medium";
}
#home-banner .talk-box p {
  color: var(--white);
  max-width: 540px;
}
#home-banner .talk-box p span {
  color: var(--orange);
}

/*  why-cold css ******************************************************************************/
#why-cold .box {
  text-align: center;
}
#why-cold .box .top-text-box li {
  font-size: 24px;
  color: var(--dune);
  padding: 4px 36px;
  text-transform: capitalize;
  width: max-content;
  margin: 20px auto;
  border-radius: 6px;
}
#why-cold .box .top-text-box li:nth-child(odd) {
  background-color: var(--iron); 
}
#why-cold .box .top-text-box li:nth-child(even) {
  background-color: var(--porcelain);
}
#why-cold .box .btm-text-box {
  margin-top: 60px;
}
#why-cold .box .btm-text-box p {
  font-size: 22px;
  color: var(--dune);
  text-transform: capitalize;
  font-family: "Poppins-Bold";
}
#why-cold .red {
  color: var(--indigo);
}

/* we css ******************************************************************************/
#we {
  background: url('../images/we-section-bg.png') no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 7% 0;
}
#we .box {
  text-align: center;
}
#we .box .text-box li {
  font-size: 34px;
  line-height: 1.3;
  color: var(--white);
  text-transform: capitalize;
  width: unset;
  margin: 20px auto;
}
#we .box .text-box li:first-child {
  margin-top: 0;
}

/* founder css ******************************************************************************/
#founder {
  overflow: visible;
  position: relative;
}
#founder:after {
  position: absolute;
  content: "";
  top: -70px;
  right: 0;
  width: 1320px;
  height: 1040px;
  background-color: #FCF4F2;
  border-radius: 598px 5px 615px 5px;
  z-index: -1;
}
#founder .top-box {
  margin-top: -160px;
}
#founder .top-box .text-box {
  position: relative;
  padding: 24px 90px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--orange);
  font-family: sans-serif;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
#founder .top-box .text-box::before {
  position: absolute;
  content: '';
  top: -30%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(to bottom, #fdb270, #FFFFFF);
  filter: blur(40px);
  z-index: -1;
}
#founder .top-box .text-box p {
  font-size: 24px;
  color: var(--black);
}

/**/
#founder .btm-box {
  padding-top: 170px;
}
#founder .btm-box .box.box1 {
  position: relative;
}
#founder .btm-box .box.box1 .image-box img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
  margin-top: 60px;
}
#founder .btm-box .box.box1 .profile-box {
  position: relative;
  max-width: 500px;
  padding: 30px 30px 30px 100px;
  margin: 0 auto;
  margin-top: -50px;
  margin-right: 50px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--orange);
}
#founder .btm-box .box.box1 .profile-box:after {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 3px;
  height: 70px;
  border-radius: 50px;
  left: 80px;
  top: auto;
  bottom: -30px;
}
#founder .btm-box .box.box1 .profile-box h4 {
  text-transform: uppercase;
}

#founder .btm-box .box.box1 .profile-box .link-box a img {
  max-width: 70%;
}

#founder .btm-box .box.box2 .text-box {
  max-width: 530px;
  padding-left: 65px;
  position: relative;
}
#founder .btm-box .box.box2 .text-box:after {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 2px;
  height: 340px;
  border-radius: 50px;
  left: 0;
  top: -50px;
  bottom: auto;
}
#founder .btm-box .box.box2 .text-box::before {
  position: absolute;
  content: "";
  background-color: var(--indigo);
  width: 2px;
  height: 270px;
  border-radius: 50px;
  left: 12px;
  top: auto;
  bottom: 155px;
}
#founder .btm-box .box.box2 .text-box p {
  font-size: 22px;
  line-height: 1.6;
}

/* why-us css ******************************************************************************/
#why-us {
  padding-top: 20px;
}
#why-us .section-heading h4 {
  color: var(--indigo);
  margin-top: 45px;
  text-transform: uppercase;
  font-family: "Cera-Pro-Medium";
}

#why-us .custom-col {
  flex: 0 0 20%;     
  max-width: 20%;
  /* padding: 15px;    */
}

#why-us .box {
  text-align: center;
  padding: 50px 16px;
  border-radius: 20px;
  background-color: var(--very-light-pink);
  height: 100%;
}
#why-us .box .icon-box {
  min-height: 85px;
  margin-bottom: 30px;
}
#why-us .box .icon-box img {
  max-width: 35%;
}
#why-us .box .text-box h6 {
  text-transform: capitalize;
}

/* choose-us css ******************************************************************************/
#choose-us .row {
  row-gap: 22px;
}
#choose-us .box {
  padding: 66px 38px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}
#choose-us .box h5,
#we-write .box h5 {
  color: var(--white);
  text-transform: capitalize;
}
#choose-us .choose-us-tagline-box {
  text-align: center;
  margin-top: 50px;
}
#choose-us .choose-us-tagline-box p {
  font-size: 24px;
  text-transform: capitalize;
}

/* package css ******************************************************************************/
#package .top-box .text-box {
  text-align: center;
  padding: 20px 30px;
  border: 1px solid var(--orange);
  border-radius: 22px;
}
#package .top-box .text-box h5 {
  color: var(--orange);
  font-family: "Poppins-Bold";  
}
#package .top-box .text-box p {
  text-transform: capitalize;
  font-family: "Poppins-Medium";
}

/**/
#package .tagline-box {
  padding: 30px 0 36px 0;
  text-align: center;
}
#package .tagline-box p {
  font-size: 22px;
  text-transform: capitalize;
  font-family: "Poppins-Bold";
}

#package .tagline-box.middle-box {
  padding: 40px 0 46px 0;
}
#package .tagline-box.middle-box p {
  font-size: 18px;
  font-family: "Poppins-Medium";
}

/**/
#package .middle-box .box {
  text-align: center;
  padding: 50px 16px;
  border-radius: 20px;
  background-color: var(--very-light-pink);
  height: 100%;
}
#package .middle-box .box .icon-box {
  min-height: 75px;
  margin-bottom: 26px;
}
#package .middle-box .box .icon-box img {
  max-width: 18%;
}
#package .middle-box .box h5 {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-family: "Poppins-Bold";
} 
#package .middle-box .box p {
  text-transform: capitalize;
}

/**/
#package .btm-box .box {
  text-align: center;
  border-radius: 20px;
  background-color: var(--very-light-pink);
  box-shadow: rgba(0, 0, 0, 0.10) 0px 25px 20px -20px;
  height: 100%;
}
#package .btm-box .box .top-title-box {
  border-radius: 20px;
  padding: 36px 20px;
}
#package .btm-box .box .top-title-box h4 {
  color: var(--white);
  font-family: "Poppins-Bold";
}
#package .btm-box .box .content-box {
  padding: 31px 31px;
}
#package .btm-box .box .content-box ul li {
  font-size: 19px;
  line-height: 1.4;
  color: var(--black);
  text-transform: capitalize;
  position: relative;
}
#package .btm-box .box .content-box ul li:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 14px;
}
#package .btm-box .box .content-box ul li:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: #707070;
  transform: translate(-50%);
}
#package .tagline-box.btm-box {
  padding: 0 0;
  margin-top: 70px;
}
#package .tagline-box.btm-box p {
  font-size: 24px;
  font-family: "Poppins-Bold";
}

/* What we css ******************************************************************************/
#what-we {
  padding: 0 0;
  position: relative;
}
#what-we .box {
  padding: 83px 80px;
  height: 100%;
}
#what-we .box.box1 .box-inner-bx {
  margin: 0 auto;
  margin-right: 0;
  height: 100%;
}
#what-we .box .top-title-box h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-family: "Poppins-Bold";
}
#what-we .box .box-inner-bx {
  max-width: 556px;
  border: 1px solid #FCF4F2;
  border-radius: 20px;
  padding: 50px 70px;
  text-align: center;
  height: 100%;
}
#what-we .box .text-box ul li {
  font-size: 19px;
  padding: 12px 10px;
  border-radius: 6px;
  margin: 16px auto;
  background-color: #F2F2F2;
  text-transform: capitalize;
}
#what-we .box .text-box .tag p {
  font-size: 19px;
  color: #F0F0F0;
  max-width: 370px;
  margin: 0 auto;
  text-transform: capitalize;
}

#what-we .girls-image-box {
  position: absolute;
  left: 46%;
  bottom: 0;
  transform: translateX(-50%);
}
#what-we .girls-image-box img {
  width: 100%;
  max-width: 92%;
}

/* how it works css ******************************************************************************/
#how-it-works .step-title-box {
  text-align: center;
  margin: 0 auto;
}
#how-it-works .step-title-box .title-box {
  border-radius: 12px;
  border: 1px solid var(--orange);
  display: inline-block;
  padding: 8px 32px;
  text-transform: uppercase;
}
#how-it-works .step-title-box .title-box h5 {
  color: var(--black);
} 
#how-it-works .outer {
  position: relative;
}
#how-it-works .box.box1 .outer::after {
  right: -129.5px;
}
#how-it-works .box.box2 {
  height: 100%;
}
#how-it-works .box.box2 .line {
  background-color: var(--orange);
  width: 1px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#how-it-works .box .line:after {
  position: absolute;
  content: "";
  top: 50%;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--orange);
  transform: translateX(-47%);
}
#how-it-works .content-box {
  align-items: center;
  padding: 24px 20px;
  margin: 50px 0;
}
#how-it-works .content-box .text-box ul {
  padding-left: 34px;
}
#how-it-works .content-box ul li {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
}
#how-it-works .content-box ul li:after {
  position: absolute;
  content: "";
  left: -30px;
  top: 3px;
  width: 17px;
  height: 20px;
  background: url('../images/list-style-icon.png') no-repeat;
  background-size: 100% 100%;
}
#how-it-works .row:nth-child(even) .content-box .image-box {
  display: flex;
  position: relative;
  margin-left: auto;
}
#how-it-works .row:nth-child(odd) .content-box .text-box {
  display: flex; 
  justify-content: end;
}
#how-it-works .how-it-works-box .row:nth-child(odd) {
  flex-direction: row-reverse
}
#how-it-works .content-box .image-box img {
  max-width: 80%;
  margin-left: auto;
}
#how-it-works .row:last-child .box.box2:last-child .line:last-child {
  position: relative;
}
#how-it-works .row:last-child .box.box2:last-child .line:last-child::before {
  position: absolute;
  content: "";
  background-color: var(--orange);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  bottom: 0;
  left: -7.5px;
}

/* we-writ css ******************************************************************************/
#we-write .box {
  padding: 60px 38px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

/* connect-now css ***************************************************************************/
#connect-now {
  padding: 60px 0;
}
#connect-now .button-box ul {
  justify-content: center;
}
#connect-now .button-box ul li .cmn-btn {
  font-size: 20px;
  padding: 11px 26px;
}

/* footer css ******************************************************************************/
#footer {
  padding-top: 60px;
  background-color: var(--jaguar);
}
#footer .top-box .logo-box img {
  max-width: 150px;
}
#footer .address-cmn-bx {
  margin-bottom: 38px;
}
#footer .address-cmn-bx span {
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: "Futura-Bk-BT-Book";
}
#footer .address-cmn-bx p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  font-family: "Futura-Bk-BT-Book";
}
#footer .address-cmn-bx a {
  font-size: 20px;
  color: var(--white);
  text-transform: none;
  font-family: "Futura-Bk-BT-Book";
}
#footer .box.box3 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 40px;
}
#footer .box.box3 .link-box {
  display: flex;
  align-items: flex-end;
}
#footer .box.box3 .link-box a img {
  max-width: 80%;
}
#footer .end-box {
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid var(--black-cow);
}
#footer .end-box .copy-right-text-box p {
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-family: "Futura-Bk-BT-Book";
}

/*#home-banner form.wpcf7-form p {
    width: 100% !important;
    max-width: 100%;
}*/
#home-banner form.wpcf7-form span {
  width: 100%;
}

#home-banner form.wpcf7-form p.small span {
  width: auto;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--white) !important;
}

#home-banner form .wpcf7-response-output {
    color: #fff;
}