@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=PT+Serif:wght@400;700&display=swap'); html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: #151515;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}

a {
    color: #F2C01C;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #000000;
}

input:focus, textarea:focus, button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    font-family: 'PT Serif', serif;
}

h2 {
    font-size: 48px;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    width: 95%;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #C19C60;
}

::-webkit-scrollbar-thumb {
    background: #1d1d1d;
}

::-webkit-scrollbar-thumb:hover {
    background: #575757;
}

/* --- Button Code --- */
.custom-btn {
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 58px;
    border-radius: 42px;
    padding: 0 30px;
    position: relative; 
}

.custom-btn::before , .h_social .social_links a:before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #4F83BC;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 5px;
    transition: .5s;
    opacity: 0;
}
.h_social .social_links a:before{
    background-color: #4F83BC;
    z-index:1;
}
.social_links a:before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #F2C01C;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 5px;
    transition: .5s;
    opacity: 0;
}
.custom-btn:hover::before, .social_links a:hover:before, .h_social a:hover:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border:1px solid #fff;
    border-radius: 40px
}
.social_links a i{
    position:relative;
    z-index:9;
}


.custom-btn:hover {
    text-decoration: none;
}

.border-btn {
    color: #ffffff;
    border: 1px solid #F2C01C;
    background: #F2C01C;
}

.border-btn:hover {
    color: #ffffff;
    border: 1px solid #4F83BC;
}

.dark-btn {
    color: #ffffff;
    background-color: #000000;
}

.dark-btn:hover {
    color: #ffffff;
}

.light-btn {
    color: #000000;
    background-color: #C19C60;
}

.light-btn:hover {
    color: #ffffff;
}

/* --- Header Code --- */
.top_header {
    background: #F2C01C;
    padding: 15px 12%;
}

.main_header {
    padding: 10px 12%;
}

header .logo-div img {
    transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-div img {
    max-width: 70% ;
}

header .row {
    align-items: center;
}

header .nav-menu .navbar-collapse {
    justify-content: flex-end;
}

header .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 56%;
}

header ul.navbar-nav li {
    padding: 0px 20px;
    position: relative;
    list-style: none;
}

header ul.navbar-nav li:hover {
}

header ul.navbar-nav li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #4F83BC;
    transition: 0.3s ease;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    padding: 20px 0px;
}

header ul.navbar-nav li a:hover, header ul.navbar-nav li.current-menu-item a {
    color: #F2C01C;
    border-top: 2px solid #F2C01C;
    border-bottom: 2px solid #F2C01C;
    padding: 6px 0px;
}

header nav.navbar {
    padding: 0;
}

header ul.navbar-nav ul.sub-menu li a {
    color: #F2C01C;
}

header ul.navbar-nav ul.sub-menu {
    position: absolute;
    top: 38px;
    left: 0;
    min-width: 260px;
    padding: 22px 0 10px;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s ease, visibility .5s ease;
    -o-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease;
    z-index: 9;
}

header ul.navbar-nav ul.sub-menu li {
    padding: 10px 20px;
}

header ul.navbar-nav > li > ul > li.menu-item-has-children > ul.sub-menu {
    top: 0;
    left: 100%;
}

header ul.navbar-nav > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 13px;
    color: #4F83BC
}

.social_links a {
    display: flex;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    color: #F2C01C;
    position: relative;
    overflow: hidden;
}

.social_links a:hover {
    /* background: #4F83BC; */
    color: #fff;
}

.social_links {
    display: flex;
    justify-content: flex-end;
}

.h_stripe span {
    display: flex;
    align-items: center;
    padding-right: 40px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.h_stripe {
    display: flex;
}

.h_stripe span img {
    padding-right: 10px;
}

.h_stripe span a {
    color: #fff;
}

.h_stripe span a:hover {
    color: #4F83BC;
}

/* --- Footer Code --- */
footer {
    background: #4F83BC;
    position: relative;
    z-index: 1;
    padding: 80px 0px;
}

.footer-detail-row {
    padding: 80px 0 70px 0;
}

.footer-detail-row h4 {
    color: #FFF;
    font-size: 29px;
    font-family: PT Serif;
    font-weight: 400;
    margin-bottom: 30px;
}

.f_details p, .fcontact-div p {
    color: #FFF;
    font-size: 16px;
    font-family: Open Sans;
}

ul.q-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.q-link li {
    margin-bottom: 15px;
}

ul.q-link a {
    color: #fff;
}

ul.q-link a:hover, ul.q-link li.current_page_item a {
    color: #F2C01C;
}

.fcontact-div {
    margin: 0 auto;
    padding-left: 25%;
}

ul.footer-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.footer-details li {
    margin-bottom: 20px;
}

ul.footer-details span.icon {
    display: block;
    color: #C19C60;
    font-size: 20px;
    margin-bottom: 5px;
}

ul.footer-details a {
    color: #fff;
}

ul.footer-details:hover {
    color: #C19C60;
}

.social-div .social_links {
    justify-content: flex-start;
}

.social-div h4 {
    font-weight: 400;
    font-family: 'Montserrat';
    margin-bottom: 0;
}

.social-div ul.social-icon-lists {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.social-div li {
    margin-left: 20px;
}

.social-div a {
    color: #4F83BC;
    font-size: 16px;
    margin-left: 0;
    margin-right: 12px;
    overflow: hidden;
    position: relative;
}


footer a.logo-div {
    display: inline-block;
}

footer a.logo-div + p {
    margin: 30px 0;
    color: #fff;
    padding-right: 13%;
}

footer .newsletter-form {
    margin-bottom: 0px;
    text-align: center;
}

footer .newsletter-form h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

footer .newsletter-form .gjs-cell {
    display: flex;
    justify-content: center;
}

footer .newsletter-form .gjs-cell input[type="email"] {
    padding: 0px 20px;
    font-size: 10px;
    width: 80%;
    border: 0;
    color: #707070;
    font-weight: 500;
}

footer .newsletter-form .gjs-cell input[type="submit"] {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: transparent;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 14px 60px 14px 24px;
    transition: .4s;
    box-sizing: border-box;
    position: relative;
    z-index: 9;
}

footer .newsletter-form .gjs-cell input[type="submit"]:hover {
    color: #fff !important;
}

.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: #F2C01C;
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #F2C01C;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.back-to-top:hover {
    background-color: #4F83BC;
}

.back-to-top:hover i {
    color: #ffffff;
}

/* --- Home Page Code --- */
.hero-slider {
    background-color: #000000;
}

.hero-slider .hero-item {
    height: 810px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    counter-increment: count;
}

.hero-slider .hero-item .banner-content {
    max-width: 850px;
}

.hero-slider .hero-item h6 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    background: #F2C01C;
    border-radius: 35px;
    padding: 15px 32px;
    width: 70%;
    margin-bottom: 15px;
}

.hero-slider .hero-item h2 {
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 85px;
    line-height: 92px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.hero-slider .hero-item span {
    color: #F2C01C;
}

.hero-slider .hero-item p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
    width: 64%;
}

.hero-slider .hero-item .button_wrp {
    margin-top: 50px;
}

.hero-slider .slick-track {
    counter-reset: count;
}

.hero-slider .hero-item {
    counter-increment: count;
}

.hero-slider .slick-thumb-nav {
    font-size: 50px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 160px;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hero-slider .slick-thumb-nav span {
    position: relative;
    z-index: 1;
}

.hero-slider .slick-thumb-nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.3;
}

.hero-slider .slick-prev, .hero-slider .slick-next {
    z-index: 1;
    left: inherit;
    right: 20%;
}

.hero-slider .slick-arrow:before {
    display: none;
}

.hero-slider .slick-prev {
    top: 30%;
}

.hero-slider .slick-next {
    top: 52%;
}

.sub-title {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-family: Open Sans;
}

h6.sub-title i.fa {
    font-size: 12px;
    font-weight: bold;
    padding: 0px 4px;
}

.main-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.count_f {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: rotate(-90deg);
    position: absolute;
    bottom: 130px;
    left: 30px;
}

.count_f:after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 30px;
    height: 1px;
    background: #fff;
}

.stats-row {
    position: relative;
    z-index: 1;
    padding: 40px 0px;
    margin: 0;
    background-size: cover;
    background-position: center center;
    margin-bottom: -70px;
}

.stats-box {
    text-align: center;
    padding: 0 10px;
}

.stats-box h3 {
    color: #FFF;
    font-size: 68px;
    font-family: PT Serif;
    margin-bottom: 10px;
}

.stats-box p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Open Sans';
}

.testimonials-section {
    height: 845px;
    position: relative;
    z-index: 1;
}

.testimonials-section .heading-row {
    margin: 0;
    margin-bottom: 0;
}

.testimonials-slider .slick-track {
    display: flex;
}

.testimonials-slider .slick-slide {
    height: auto;
}

.testi-item {
    position: relative;
    transition: all 0.5s ease-in-out;
}

.testi-item .rate-img {
}

.testi-item ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.testi-item li {
    margin: 0 5px;
}

.testi-item .tt-content {
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.tt_content {
    padding-left: 20px;
}

.testi-item .tt-content>* {
    color: #000;
    width: 100%;
    display: flex;
    align-items: center;
}

.t_content_box {
    display: flex;
    align-items: center;
}

.testimonail_content_box {
    display: flex;
    justify-content: space-between;
}

.testi-item .tt-comment p {
    color: #000;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    padding-bottom: 15px;
    margin: 0;
}

.tt-comment {
    padding-bottom: 15px;
}

h6.tt-name {
    color: #000;
    font-size: 24px;
    font-family: PT Serif;
    font-weight: 700;
    margin: 0;
}

p.tt-profile {
    color: #000;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    margin: 0;
}

.tt-image {
    width: 86px;
    height: 86px;
    border-radius: 100%;
    overflow: hidden;
}

.testi-item.slick-current ::-webkit-scrollbar {
    width: 4px;
}

.testimonials-section .mtesti-image img {
    position: absolute;
    right: 0;
    top: 0;
    width: 82.6%;
}

.testimonials-section .tslider-col {
    position: relative;
    z-index: 1;
}

.testimonials-row {
    position: relative;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 190px 0;
    background-color: #000000;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.inner-banner-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    z-index: -1;
}

.inner-banner-section h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 400;
}

.inner-banner-section h1 span {
    color: #C19C60;
}

header ul.navbar-nav ul.sub-menu li:hover {
    background-color: #fff;
}

.header_btn {
    display: flex;
    justify-content: flex-end;
    width: 19%;
}

.header_btn a.custom-btn.border-btn {
    margin: 0;
}

.love_it {
    animation: blink 2s linear infinite;
    position: absolute;
    right: 12%;
    top: 22%;
    height: 190px;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .9;
    }

    100% {
        opacity: 1;
    }
}

section.home-banner-section {
    position: relative;
}

.hero-slider .love_it span {
    position: absolute;
    top: 0px;
    color: #FFF !important;
    font-size: 20px;
    line-height: normal;
    font-family: Open Sans;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    left: -13px;
    right: 0;
    margin: auto;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.button_wrp {
    display: flex;
    align-items: center;
}

span.video_icon {
    display: inline-block;
    margin-left: 30px;
}

span.video_icon img:hover {
    border-radius: 100%;
    box-shadow: 0px 0px 10px #F2C01C;
}

.footer_menu_wrp {
    display: flex;
    flex-wrap: wrap;
}
.footer_menu_wrp > div {
    width: 50%;
}
.menu-services-menu-container {
    padding-left: 30%;
}

.fcontact-div .custom-btn {
    line-height: 56px;
    padding: 0px 30px;
    margin-top: 20px;
}

.text-center p {
    background: #2E6BAE;
    padding: 15px 0px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-family: Open Sans;
    margin: 0;
}

.text-center p a {
    color: #fff;
}

.text-center p a:hover {
    color: #F2C01C;
}

.menu_wrp_box {
    padding-left: 5%;
}

button.sub-menu-toggle {
    display: none;
}

.row.newsletters_wrapper {
    margin: 0;
    background: #F2C01C;
    padding: 50px;
    align-items: center;
}

.row.newsletters_wrapper p {
    color: #FFF;
    font-size: 16px;
    font-family: Open Sans;
}

.row.newsletters_wrapper h2 {
    color: #FFF;
    font-family: PT Serif;
}

.gjs-cell {
    display: flex;
}

.gjs-cell input[type="email"] {
    width: 375px;
    height: 79px;
    flex-shrink: 0;
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    padding: 0px 26px;
    border: none;
    outline: none;
    transition: .4s;
}

.gjs-cell input[type="email"]:focus, .gjs-cell input[type="email"]:hover {
    box-shadow: inset 0px 0px 0px 2px #4F83BC;
}

.gjs-cell input[type="submit"] {
    width: 99px;
    height: 79px;
    background: transparent;
    border: none;
    margin-left: 0px;
    color: #F2C01C;
    font-size: 40px;
    font-weight: 700;
    transition: .4s;
    position:relative;
    z-index:99;
    border-radius:0
}
.btn_submit {
    position: relative;
    width: 99px;
    height: 79px;
     margin-left: 10px;
    border-radius:0;
    background: #fff;
}

.btn_submit:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color:#4F83BC;
}

.btn_submit::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #4F83BC;
    left: 0;
    top: 0;
    transition: .5s;
    opacity: 0;
    border-radius:0
}
.gjs-cell input[type="submit"]:hover {
    /* background: #4F83BC; */
    color: #fff;
}

.gjs-cell ::-webkit-input-placeholder {
    color: #4F83BC;
}

.gjs-cell :-ms-input-placeholder {
    color: #4F83BC;
}

.gjs-cell ::placeholder {
    color: #4F83BC;
}

.tslider-col {
    max-width: 960px;
    width: 100%;
    height: 545px;
    background: #F2C01C;
    padding: 90px;
}

a.custom-btn.testimonail-btn {
    background: #fff;
    color: #F2C01C;
}

.container-fluid.get_in_touch_content {
    padding: 100px 0px 30px;
}

.get_in_touch_content h6.sub-title {
    color: #4F83BC;
    margin-bottom: 20px;
}

.get_in_touch_content h2.main-title {
    color: #4F83BC;
}

.contact_form p {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
}

.container-fluid.get_in_touch_wrapper {
    background: #FBF2EE;
    padding: 50px 0px 100px;
}

.get_in_touch_form {
    max-width: 784px;
    width: 100%;
    float: right;
    padding-right: 10%;
}

.form_field input {
    width: 100%;
    height: 79px;
    background: #FFF;
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    outline: none;
    border: none;
    padding: 0px 20px;
    border-left: 5px solid #F2C01C;
}

.form_field textarea {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    height: 167px;
    width: 100%;
    border: none;
    resize: none;
    padding: 10px 20px;
    border-left: 5px solid #F2C01C;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #4F83BC;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #4F83BC;
}

::placeholder {
    color: #4F83BC;
}

.form_submit_field input {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 30.5px;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-size: 16px;
    font-family: Open Sans;
    font-weight: 600;
    transition: 0.4s;
    z-index:99;
    position: relative;
}
.form_submit_field p{
    display: inline-block;
    position: relative;
    background: #F2C01C;
    border: 2px solid #F2C01C;
    border-radius:55px;
    overflow:hidden;
    max-width: 203px;
    height: 61px;
    width: 100%;
}
.form_submit_field p:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color:#4F83BC;
}

.form_submit_field p::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #0273BA;
    left: 0;
    top: 0;
    border-radius: 5px;
    transition: .5s;
    opacity: 0;
}

.contact_details iframe {
    height: 840px;
    margin-top: -328px;
}

.container-fluid.bottom_content_wrapper {
    padding: 100px 0px 180px;
}

.inner_image {
    position: relative;
}

img.small_img {
    position: absolute;
    left: 30px;
    bottom: -62px;
}

.bottom_content {
    padding: 0 9% 0px 50px;
}

.bottom_content h6.sub-title, .heading_wrap h6.sub-title, .heading_wrap p {
    color: #4F83BC;
}

.bottom_content h2.main-title, .heading_wrap h2.main-title {
    color: #4F83BC;
    font-weight: 400;
}

.bottom_content p {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    padding-bottom: 10px;
}

.yr_box {
    width: 121px;
    height: 138px;
    flex-shrink: 0;
    background: #F2C01C;
    padding: 15px 10px;
}

.yr_box h2 {
    color: #FFF;
    font-size: 48px;
    font-family: Open Sans;
    font-weight: 600;
    text-align: center;
}

.yr_content .yr_box p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 19px;
    margin: 0;
    padding: 0;
}

.yr_content {
    display: flex;
    align-items: center;
    padding: 10px 0px 30px;
}

.yr_content p {
    padding-left: 20px;
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 27px;
    padding-bottom: 0;
}

.inner_image img.img-fluid {
    width: 100%;
}

.container-fluid.how_its_work {
    background: #FBF2EE;
    padding: 150px 0 100px;
}

.heading_wrap {
    text-align: center;
}

.inner_steps_box {
    background: #fff;
    height: 100%;
    transition: .6s;
}

.steps_box {
    padding: 0px 12px;
    margin: 15px 0px;
}

.steps_box img {
    width: 100%;
}

.inner_steps_box p {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 26px;
    padding: 20px 30px;
}

.container-fluid.about_content_wrapper {
    padding: 120px 0px;
}

.row.steps_repeater {
    padding-top: 30px;
}

.about_content h2 {
    color: #4F83BC;
    line-height: 1.2;
}

.about_content p {
    color: #4F83BC;
    padding: 15px 0px;
}

.about_content {
    padding-left: 60px;
    display: flex;
    align-items: center;
}

.about_content .quote_content, blockquote {
    border-left: 5px solid #F2C01C;
    margin-bottom: 35px;
    background: #fff;
}

.about_content .quote_content p, blockquote p {
    padding: 0;
    padding-left: 30px
}

.inner_therapy_box {
    height: 444px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    transition: .4s;
    z-index: 9;
}

.inner_therapy_box h6 {
    color: #FFF;
    font-size: 24px;
    font-family: PT Serif;
    margin-bottom: 20px;
}

.inner_therapy_box p {
    color: #FFF;
    font-size: 16px;
    font-family: Open Sans;
    font-weight: 600;
}

.therapy_hover_content {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    display: flex;
    align-items: center;
    padding: 30px;
    z-index: 9;
}
.inner_therapy_box:hover:before {
    opacity: 1;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.inner_therapy_box:before {
    bottom: 0;
    display: block;
    height: 100%;
    width: 0%;
    content: "";
    z-index: -1;
    border-radius: 5px;
    left: 0;
    right: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.inner_therapy_box:before {
    position: absolute;
    z-index: 1;
    background: #F2C01C;
    border-radius: 5px;
}
.container-fluid.therapy_wrapper {
    margin-top: -75px;
    position: relative;
}

.inner_therapy_box:hover .therapy_hover_content {
    opacity: 1;
}

.banner_heading h1 {
    color: #FFF;
    font-size: 59px;
    font-family: PT Serif;
    background: #F2C01C;
    display: inline-block;
    padding: 45px 10px;
    box-shadow: -26px -26px 0px -8px rgb(255 255 255 / 50%);
    margin: 0;
    max-width: 422px;
    width: 100%;
    text-align: center;
}

.about_content_wrapper {
    padding: 120px 0px;
}

.about_content_wrapper .bottom_content {
    padding: 0 12px 0px 50px;
}

.about_us_counter .stats-row {
    padding: 70px 0px;
    margin-bottom: -145px;
}

.stats-box i.fa {
    color: #F2C01C;
}

.About_Christine_wrapper {
    background: #FBF2EE;
    padding: 300px 0 100px;
}

.About_Christine_wrapper blockquote p {
    padding: 24px;
}

.About_Christine_wrapper .bottom_content {
    padding: 0 80px 0px 12px;
}

.ab_image {
    padding: 0;
}

.ab_content {
    background: #4F83BC;
    display: flex;
    align-items: center;
    padding: 0px 10% 0px 100px;
}

.ab_content h2 {
    color: #fff;
    margin-bottom: 30px;
}

.ab_content p {
    color: #fff;
    line-height: 27px;
}

.ab_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about_content_wrapper.four .bottom_content {
    padding: 0 50px 0px 12px;
}

.about_content_wrapper.four h2 {
    color: #4F83BC;
    margin-bottom: 30px;
    padding-right: 20px;
}

.container-fluid.quote_wrapper {
    padding-bottom: 120px;
}

.row.quote_repeater {
    padding-top: 45px;
    margin: 0px -20px;
}

.inner_quote_box {
    border: 9px solid #4F83BC;
    height: 100%;
    padding: 52px;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

img.ql {
    background: #fff;
    position: absolute;
    left: -26px;
    top: -45px;
    padding: 14px;
}

img.qr {
    background: #fff;
    position: absolute;
    right: -26px;
    bottom: -45px;
    padding: 14px;
}
.inner_quote_box p {
    margin: 0;
    color: #4F83BC;
    font-size: 24px;
    font-family: PT Serif;
}

.quote_box {
    padding: 0px 20px;
}
.container-fluid.blogs_wrapper {
    padding: 100px 0px 20px;
}
.inner_b_item_img{
	width:155px;
	height:155px;
}
.blog_inner_box {
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 30px;
    display: flex;
    transition: .4s;
}
.blogs_items:hover .blog_inner_box {
    border: 1px solid #F2C01C;
    box-shadow: -10px -10px 0px -2px rgb(242 192 28 / 88%);
}
.blogs_items {
    margin: 15px 0px;
}

.b_item_img {
    margin: 0px 20px;
}
span.date {
    color: #4F83BC;
    font-size: 48px;
    font-family: PT Serif;
    line-height: 48px;
}

span.month {
    color: #4F83BC;
    font-size: 24px;
    font-family: PT Serif;
    line-height: 24px;
}
.blog_content h5 {
    color: #4F83BC;
    font-size: 24px;
    font-family: PT Serif;
}

.blog_content h5 a {
    color: #4F83BC;
}
.blog_content h5 a:hover {
    color: #F2C01C;
}

.blog_content p {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
}
.read_more .custom-btn {
    line-height: 45px;
    padding: 0 25px;
}
.blog_btn .custom-btn {
    line-height: 55px;
    padding: 0 34px;
}

.blog_btn.common_btn {
    padding-top: 30px;
    text-align: center;
}
.blog .container-fluid.blogs_wrapper {
    padding: 100px 0px 80px;
}
.pink_bg{
	background: #FBF2EE;
	padding: 100px 0;
}
.full_content_wrapper{
	padding: 80px 0px;
}
.full_content_wrapper h5{
	color: #4F83BC;
	font-size: 24px;
	font-family: PT Serif;
	font-weight: 700;
	margin-bottom: 25px;
}
.blue_bg_content{
	background: #4F83BC;
	margin: 50px 0px 60px;
	padding: 55px 13%;
}
.full_content_wrapper .bottom_content {
    padding: 0 12px 0px 50px;
}


.blue_bg_content h5 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-family: PT Serif;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.full_width_content p {
    margin: 0;
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
    line-height: 25px;
}
.heading_wrap.f_content {
    padding-bottom: 40px;
}
.container-fluid.p_costs{
	padding-bottom: 30px;
}
.p_costs h2{
	color: #4F83BC;
	padding-bottom: 10px;
}
.container-fluid.packages_wrapper {
    padding: 100px 0px;
}
.packages_wrapper td.yellow, .packages_wrapper th.yellow {
    background-color: #F2C01C;
    color: #FFF;
    font-size: 18px;
    font-family: PT Serif;
}

.packages_wrapper td.pink, .packages_wrapper th.pink {
    background: #FBF2EE;
}
.packages_wrapper tbody, .packages_wrapper td, .packages_wrapper tfoot, .packages_wrapper thead, .packages_wrapper tr {
    color: #4F83BC;
    text-align: center;
    font-size: 18px;
    font-family: PT Serif;
    vertical-align: middle;
    border: none;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
}
.packages_wrapper th {
    max-width: 260px;
    height: 60px;
    color: #4F83BC;
    font-size: 18px;
    font-family: PT Serif;
    text-align: left;
    border: none;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
}
.packages_wrapper th.blue {
    background-color: #2E6BAE;
    text-align: center;
    height: 76px;
    color: #FFF;
    font-size: 24px;
    font-family: PT Serif;
    font-weight: 700;
    position: relative;
}
.packages_wrapper tbody tr th, .packages_wrapper thead tr th:nth-child(1) {
    border-right: 24px solid #fff;
}
.packages_wrapper tbody tr th.yellow:nth-child(1){
    position:relative;
}
.packages_wrapper tbody tr th.yellow:nth-child(1):after {
    background-color: transparent;
    background-image: url('../images/td.png');
    background-size: 100% 100%;
    content:'';
    position: absolute;
    left: 15px;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.packages_wrapper tr .first {
    width: 368px;
    padding: .5rem 1.2rem;
}

.packages_wrapper th.blue:before {
    content: '';
    position: absolute;
    width: 30px;
    background-image: url(../images/arrow.png);
    height: 30px;
    left: 0px;
    right: 0px;
    bottom: -15px;
    margin: 0 auto;
    z-index: 99999;
}
.container-fluid.packages_wrapper p {
    color: #4F83BC;
    font-size: 16px;
    font-family: Open Sans;
}

.packages_wrapper .table_total h5 {
    color: #4F83BC;
    font-size: 24px;
    font-family: PT Serif;
}

.packages_wrapper span.total {
    display: block;
    width: 300px;
    height: 60px;
    background: #FA2742;
    color: #FFF;
    font-size: 32px;
    font-family: PT Serif;
    font-weight: 700;
    text-align: center;
    margin-left: 20px;
}

.packages_wrapper .table_total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.packages_wrapper .heading_wrap.f_content {
    padding-bottom: 25px;
}
.packages_wrapper .light_blue{
	background: #E6EBED;
}
.packages_wrapper .white{
	background: #fff;
}
.packages_wrapper.pink_bg th, .packages_wrapper.pink_bg tbody, .packages_wrapper.pink_bg td, .packages_wrapper.pink_bg tfoot, .packages_wrapper.pink_bg thead, .packages_wrapper.pink_bg tr{
	border-left: 5px solid #FBF2EE;
    border-right: 5px solid #FBF2EE;
}
.packages_wrapper.pink_bg tbody tr th, .packages_wrapper.pink_bg thead tr th:nth-child(1) {
    border-right: 24px solid #FBF2EE;
}
.pink_bg tr td:nth-child(2), .pink_bg tr th:nth-child(2) {
    text-align: left;
    padding: 0.5rem 1.5rem;
}
.steps_image{
	position: relative;
	overflow: hidden;
}

.steps_image::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgb(242 192 28 / 50%);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.inner_steps_box:hover .steps_image::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.inner_steps_box:hover{
    box-shadow:0px 0px 10px #4F83BC;
}
input.wpcf7-not-valid, select.wpcf7-not-valid, textarea.wpcf7-not-valid {
    border: 1px solid #f00 !important;
    box-shadow: 0px 0px 2px #f00;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    padding: 0px !important;
    margin: 0 !important;
}
.wpcf7-not-valid-tip{
	display: none;
}
.default_wrapper{
	padding: 80px 0px
}
.default_wrapper h5,.default_wrapper h3{
	margin-bottom: 25px;
}
.ipi-gold-sea-logo img {
    max-width: 200px;
}

.ipi-gold-sea-logo {
    padding-top: 20px;
}
.packages_wrapper h2.main-title {
    padding: 0px 10%;
}
th.yellow.first {
    font-size: 24px;
}
.packages_wrapper tr span {
    position: relative;
    z-index: 9;
}
.packages_wrapper tr .first b {
    font-size: 22px;
}

/* Course And Facilitation css start */
.cus-section.section-2 .inner_image {
    display: none;
}
.cus-section.section-3 .inner_image {
    display: none;
}
.cus-section.section-9 .inner_image {
    display: none;
}
.cus-section.section-10 .inner_image {
    display: none;
}
.section-1 .col-md-6.bottom_image.wow.slideInLeft {
    background: #EBF9F9;
}
.banner_heading.cus h1 {
    max-width: 1128px;
    padding: 19px 34px 20px;
}
.cus-section .row {
		max-width: 1200px;
		margin: 0 auto;
	}
	.cus-section .col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}
	.cus-section p:last-child {
    margin: 0;
    padding: 0;
}
.col-md-12.banner_heading.cus {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cus-section .col-md-6 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cus-section.section-2 ol {
    margin-bottom: 0;
	  padding-left: 15px;
}
.cus-section.section-1 {
    padding: 126px 0 105px;
}
.container-fluid.about_content_wrapper.four.cus-section.section-2 {
    padding: 0 0 120px;
}
.cus-section.section-2 .bottom_content {
    padding: 0 40px 0 0;
}
.cus-section.about_content_wrapper.four h2 {
    padding-right: 0px;
}
.cus-section.section-2 li {
    margin-bottom: 20px;
    color: #4F83BC;
}
.cus-section.section-2 li:last-child {
    margin-bottom: 0;
}
.cus-section blockquote p {
    padding-left: 23px !important;
}
.cus-section.section-3 {
    padding: 94px 0;
    background: #FBF2EE;
}
.cus-section blockquote {
    background: transparent;
}
.section-3 .cus-section blockquote {
	margin-bottom: 0px;
}
.cus-section.section-3 .inner_content {
    padding: 40px 0;
}
.cus-section.section-4 {
    padding: 94px 0 30px;
}
.cta-section {
    background: #4F83BC;
    margin: 20px 0;
    padding: 0;
}

.cta-section p {
    color: #FFF;
    font-size: 16px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.cta-section p:first-child:before {content: '';width: 4px;height: 39px;background: #F2C01C;position: absolute;left: -25px;top: 6px;}

.cta-section .inner_content {
    padding: 28px 29px 31px 42px;
}

.cta-section p:first-child {
    position: relative;
}
.cus-section.section-4 .col-md-6.bottom_image.wow.slideInRight {
    padding-left: 60px;
}

.cus-section.section-4 .col-md-6.bottom_content.wow.slideInLeft {
    padding-right: 10px;
}
.cus-section.section-5 .about_content_wrapper .bottom_content {
    padding: 0 12px 0px 55px;
}
.cus-section.section-5 {
    padding: 40px 0 94px;
}
.cus-section.section-6 {
    padding: 89px 0 22px;
    background: #FBF2EE;
}
.cus-section.section-6 .col-md-12 {
    padding: 0;
}
.cta-section h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-family: PT Serif;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    padding: 0;
}
.cus-section.section-6 .cta-section .inner_content {
    padding: 36px 151px;
}
.cus-section.section-8 {
    padding: 85px 0 100px;
    background: #FBF2EE;
}
.cus-section.section-7 {
    padding: 0;
    background: #FBF2EE;
}
.cus-section-blue {
    background: #3C1A4A;
}
.cus-section .bottom_content h2 {
    color: #4F83BC;
}
.cus-section.section-7 .col-md-6.bottom_content.wow.slideInRight {
    padding: 0 8px 0px 50px;
}
.cus-section.section-8 .col-md-6.bottom_content.wow.slideInLeft {
    padding: 0 62px 0px 12px;
}
.cus-section.section-9 {
    padding: 97px 0 108px;
}
.cus-section.section-10 {padding: 0 0 17px;}
.section-10 .cta-section .inner_content {
    padding: 39px 71px;
}
.section-10 .cta-section {
    margin: 70px 0 0;
}
.cus-section.about_content_wrapper .bottom_content {
    padding: 0 0px 0px 62px;
}
.cus-section.about_content_wrapper.four .bottom_content {
    padding: 0 50px 0px 12px;
}
.section-4 .cta-section {
    margin: 49px 0 20px;
}
.cus-section.section-6 .cta-section {
    margin-top: 40px;
}
.cus-section.section-7 a {
    min-width: 190px;
    min-height: 61px;
}
.cus-section.section-2 ol {
    padding-left: 20px;
}

/* Course And Facilitation css end */