:root {
    --primary-color: #20296e;
    --secondary-color: #f4f5ff;
    --text-color: #666666;
    --accent-color: #ff70a3;
    --white-color: #ffffff;
    --divider-color: #20296e1a;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Onest", sans-serif;
}

body {
    min-width: 320px;
}

.text-warning {
    color: #ff7f29 !important;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.1em;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: #ff7f29 !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 54px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: transparent;
}

.btn-default::before {
    content: "\f061";
    font-family: "FontAwesome";
    position: absolute;
    top: 16px;
    right: 30px;
    font-size: 18px;
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
    font-weight: normal;
}

.btn-default:hover::before {
    transform: rotate(0deg);
}

.btn-default::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover,
.btn-default.btn-highlighted:hover:before {
    color: #ff7f29 !important;
}

.btn-default.btn-highlighted::after {
    background: var(--white-color);
}

.section-title h3 {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero,
.form,
.thankyou,
.fertility-journey {
    background: url(https://d3ft41x6qpsnjy.cloudfront.net/new_web_assets/images/lpbg.jpg) no-repeat center center;
    background-size: auto;
    position: relative;
    overflow: hidden;
}

/************************************/
/*** 	   05. Hero Info css	  ***/
/************************************/

.Benefit .content ul li::before,
.our-program .section-title ul li::before,
.Benefit .benefit-content ul li::before {
    content: "";
    background: url(https://d3ft41x6qpsnjy.cloudfront.net/new_web_assets/images/lpcheck.png) no-repeat center center;
    position: absolute;
    height: 18px;
    width: 18px;
    left: 0;
    top: 3px;
}

.Benefit .img,
.our-program .our-program-img,
.our-program .our-program-image-1,
.Journey .owl-slider .our-program-img {
    position: relative;
    overflow: hidden;
}

.Benefit .img:after,
.our-program .our-program-img:after,
.our-program .our-program-img-1:after,
.Journey .owl-slider .our-program-img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.Benefit .img:hover:after,
.our-program .our-program-img:hover:after,
.our-program .our-program-img-1:hover:after,
.Journey .owl-slider .our-program-img:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.Shortcuts h3,
.Shortcuts p,
.trusted-client .item img {
    transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    transform: scale(0.9);
}

.Shortcuts h3:hover,
.Shortcuts p:hover,
.trusted-client .item img:hover {
    transform: scale(1);
    transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    cursor: pointer;
}

.Benefit .banner {
    background: url("../Images/bg.jpg") no-repeat center center;
    background-size: cover;
}

#customers-testimonials .item {
    text-align: center;
    opacity: 0.2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
.Journey .owl-carousel .owl-dots .owl-dot.active span {
    background: #ff7f29;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots,
.Journey .owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot,
.Journey .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span,
.Journey .owl-carousel .owl-dots .owl-dot span {
    background: #ff7f29;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50%;
}

.Journey .owl-carousel .owl-dots {
    margin-top: 30px;
}

.Journey .step1:hover,
.Journey .step2:hover,
.Journey .step3:hover,
.Journey .step4:hover {
    cursor: pointer;
}

.trusted-client .owl-dots {
    display: none;
}

.trusted-client {
    background: url(https://d3ft41x6qpsnjy.cloudfront.net/new_web_assets/images/Registration.jpg) no-repeat top center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.trusted-client:before {
    content: "";
    position: absolute;
    background-color: #5d5d5d;
    opacity: 0.65;
    height: 100%;
    width: 100%;
    top: 0;
}

@media (max-width: 991px) {

    .section-title h1,
    .our-program .section-title h2,
    .Journey .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .section-title h1,
    .our-program .section-title h2,
    .Journey .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .section-title h1,
    .our-program .section-title h2,
    .Journey .section-title h2 {
        font-size: 28px;
    }

    .families h3 {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .Journey .owl-dots {
        display: none;
    }

    .Journey .owl-slider .owl-nav {
        display: block !important;
    }

    .Journey .owl-slider .owl-nav button.owl-prev {
        left: 0;
        border-radius: 0 10px 10px 0;
    }

    .Journey .owl-slider .owl-nav button.owl-next {
        right: 0;
        border-radius: 10px 0 0 10px;
    }

    .Journey .owl-slider .owl-nav button {
        position: absolute;
        transform: translateY(-50%);
        background: #ff7f29 !important;
        top: 50%;
        width: 35px;
    }

    .Journey .owl-slider .owl-prev span,
    .Journey .owl-slider .owl-next span {
        font-size: 70px;
        position: relative;
        top: -10px;
        color: white;
    }

    .Journey .owl-dots {
        display: none !important;
    }
}