@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Vollkorn:wght@400;500;600;700;800;900&display=swap');

*,
body {
    font-family: 'Vollkorn', serif;
}

body {
    overflow-x: hidden;
    position: relative;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

h2 {
    font-size: 42px;
    font-weight: 700;
    color: #262626;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

a {
    font-family: 'Poppins';
    color: #ffb50a;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s
}

button:focus {
    outline: none;
}

a:hover {
    text-decoration: none
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

:focus {
    outline: none;
}

:hover {
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto
}

p {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #6e6e6e;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0
}

strong {
    font-weight: bold;
}

.form-control.error {
    border-color: red !important
}

label.error {
    display: none !important
}

.sec_pt {
    padding-top: 140px;
}

.sec_pb {
    padding-bottom: 140px;
}

.sec_title {
    margin-bottom: 50px;
}

.white_hd h2 {
    color: #fff;
}

h2 span.clr_white {
    color: #fff;
    font-weight: 400;
}

.sec_title p {
    font-size: 20px;
    color: #666666;
    margin-top: 10px;
}

/* DEFAULT BTN STYLES START*/
.hvr-radial-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right, #fff0, #fff0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-radial-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    -webkit-transform: scale(2);
    transform: scale(1.5);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-radial-in:hover,
.hvr-radial-in:focus,
.hvr-radial-in:active {
    color: white;
}

.hvr-radial-in:hover:before,
.hvr-radial-in:focus:before,
.hvr-radial-in:active:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.default_btn {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    padding: 11px 30px;
    font-family: 'Poppins', sans-serif;
    border-radius: 100px;
    transition: all 0.25s ease-in-out;
}

.orange_btn {
    background-color: #000;
}

.orange_btn.hvr-radial-in:before {
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
}

.black_btn {
    background: #000;
}

.black_btn.hvr-radial-in:before {
    background-color: #ffb50a;
}

.white_btn {
    background-color: #000;
    color: #262626;
}

.white_btn.hvr-radial-in:before {
    background-image: -moz-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
}

.sec_btn {
    margin-top: 60px;
}

/* DEFAULT BTN STYLES END*/

/*HEADER CSS START*/

header .container-fluid {
    padding: 0 20px;
}

.header_top {
    background-color: #1d3557;

    padding: 12px 0;
}

.header_top li {
    display: inline-block;
}

.top_left li,
.top_left li a {
    color: #fff;
    font-size: 14px;
}

.top_left li a span {
    font-family: 'Poppins', sans-serif !important;
}

.top_left li {
    margin-right: 50px;
}

.top_left li img {
    margin-top: -3px;
    margin-right: 15px;
}

.top_right {
    text-align: right;
}

.top_right li a {
    font-size: 15px;
    color: #fff;
    margin-left: 25px;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: none;
    display: none;
}

/* Show with animation */
.sticky-clone.show-sticky {
    display: block;
    animation: slideDown 0.4s ease forwards;
}




/*.header_bottom .navbar {
    padding-left: 0px;
    padding-right: 0px;
}*/
.header_bottom .navbar-light .navbar-nav .nav-link {
    color: #5a5a5a;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 24px 0px;
    margin: 0 10px;
}

.header_btn li {
    display: inline-block;
}

.chat_btn {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 50px;
}

.chat_btn:hover {
    color: #666;
}

.chat_btn:before {
    content: "";
    position: absolute;
    background-color: #15d706;
    border-radius: 100%;
    width: 9px;
    height: 9px;
    top: 44%;
    transform: translateY(-50%);
    left: -20px;
    animation: greenlight 1.3s ease infinite;
}

@keyframes greenlight {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*dropdown menu*/
.cust-navbar-nav .dropdown-menu {
    left: auto;
    top: 54px;
    border-radius: 0;
    border: 0;
    box-shadow: 0 5px 20px 0 #0000001c;
    margin: 0;
    border-radius: 0 0 10px 10px;
    padding: 15px 20px;
    min-width: max-content;
    width: auto;
    z-index: 2;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
}

.dropdown-list li {
    padding: 7px 0 7px 15px;
    border-bottom: 1px solid #eee;
    margin: 0 15px 0 0;
    display: block;
    flex: 0 0 auto;
    width: 190px;
    position: relative;
    transition: all .2s ease-in-out;
}

.dropdown-list a {
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s linear;
}

.dropdown-list li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 52%);
    clip-path: polygon(0 0, 0 100%, 100% 52%);
    background-color: #5a5a5a;
    top: 50%;
    color: #ffb50a;
    left: 0;
    transform: translateY(-50%);
    border-radius: 10px;
    transition: all .2s ease-in-out
}

.dropdown-list li:hover:before {
    left: 2px;
    background-color: #ffb50a !important
}

/*HEADER CSS END*/


/*BANNER CSS START*/
.banner {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 854px;
    display: flex;
    align-items: center;
}

.banner_right_img img,
.banner_left_img img {
    border-radius: 10px;
}

#regForm .tab {
    display: none;
    margin: 0;
    position: relative;
}

.banner_content h1 {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.banner_content h1 span {
    font-weight: 800;
    color: #ffb50a;
}

.banner_content p {
    font-size: 16px;
    color: #e9e9e9;
    margin-bottom: 30px;
}

.banner_form_area input.form-control {
    height: 50px;
    border-radius: 100px;
    font-size: 16px;
}

.banner_form_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.form_wrap {
    position: relative;
}

.banner_form_btn button {
    border-radius: 100%;
    border: none;
    background-color: #1d3557;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.banner_content .default_btn {
    margin: 0px 0 30px;
    box-shadow: 0px 0px 35.72px 2.28px rgba(244, 116, 38, 0.72);
}

.banner_content .default_btn::before {
    background: #ffb50a;
}


.banner_left_img {
    display: grid;
    grid-template-columns: auto auto;
    left: 80px;
    position: absolute;
}


.banner_left_img .banner_img_box {
    position: relative;
}

.banner_left_img .img-box-one {
    left: -35px;
    top: -20px;
}

.banner_left_img .img-box-four {
    right: -35px;
    top: 20px;
}




.banner_right_img {
    display: grid;
    grid-template-columns: auto auto;
    right: 80px;
    position: absolute;
}

.banner_right_img .banner_img_box {
    position: relative;
}

.banner_right_img .img-box-two {
    right: -35px;
    top: -20px;
}

.banner_right_img .img-box-three {
    left: -35px;
    top: 20px;
}



/*BANNER CSS END*/



/*FEATURE CSS START*/
.feature_sec {
    padding-top : 60px !important;
    padding-bottom : 60px !important;
}
.feature_box img {
    margin-bottom: 30px;
}

.feature_box h5 {
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    color: #262626;
    margin-bottom: 18px;
    border-bottom: 1px solid #1d3557;
    padding-bottom: 18px;
}

.feature_box p {
    font-size: 16px;
}

/*FEATURE CSS END*/


/*ABOUT CSS START*/
.about {
    background-image: url(../images/about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 73%;
    position: relative;
}

.btn_space {
    margin-right: 20px;
}

.about p {
    font-size: 18px;
    line-height: 28px;
}

.inner_service_sec p {
    font-size: 17px;
}

.about_box {
    padding: 30px 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.21);
    margin-bottom: 40px;
    background-color: #fff;
}

.about_icon {
    background-color: #1d3557;
    height: 56px;
    width: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.about_box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.about_girl {
    position: absolute;
    bottom: 0;
    left: 37px;
    /* width: 558px; */
}

/*ABOUT CSS END*/


/*CTA ONE CSS START*/
.cta_one {
    background-image: url(../images/cta-one.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.cta_one h2 {
    color: rgb(255, 255, 255);
}

.cta_one p {
    font-size: 18px;
    color: #fdfdfd;
    margin-bottom: 30px;
    padding: 0 90px;
}

.cta_one_book {
    position: absolute;
    bottom: -16px;
    left: 15px;
    width: 500px;
}

/*CTA ONE CSS END*/


/*SERVICES SEC CSS START*/
.services_slider .item {
    padding-bottom: 30px;
}

.service_box {
    text-align: center;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.15); */
    border: 1px solid #1d3557;
    height: 432px;
    padding: 44px 47px;
    position: relative;
    overflow: hidden;
}

.service_box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    transform: translateY(-100%);
    transition: all 0.25s ease-in-out;
}

.service_box img {
    margin-bottom: 25px;
    width: initial !important;
    margin-right: auto;
    margin-left: auto;
}

.service_box * {
    position: relative;
    z-index: 1;
}

.service_box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service_box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service_box a {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    border-radius: 50px;
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    padding: 6px 24px;
    color: #fff;
}

.service_box:hover:before {
    transform: translateY(0%);
}

.service_box:hover h3,
.service_box:hover p {
    color: #fff;
}

.service_box:hover a {
    /* background-image: -moz-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%); */
    background: #ffb50a;
    color: #ffffff;
}

/*SERVICES SEC CSS END*/

/*PORTFOLIO SEC CSS START*/
.portfolio_sec {
    background-image: url(../images/portfolio_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolio_tabs img {
    width: 100%;
}

.portfolio_sec .nav-tabs {
    border: none !important;
    margin-bottom: 60px;
}

.portfolio_sec .nav-tabs .nav-link {
    border: 1px solid #ffffff;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-radius: 100px;
    margin: 0 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
}

.portfolio_sec .nav-tabs .nav-link:hover,
.portfolio_sec .nav-tabs .nav-link.active {
    /* background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%); */
    background: #ffb50a;
    border: 1px solid transparent;
}

.portfolio_sec .default_btn:nth-child(1) {
    background: #000;
}

.portfolio_sec .default_btn:nth-child(1)::before {
    background: #98c1d9;
}

.portfolio_sec .default_btn:nth-child(2) {
    z-index: 999999999999999999999;
    position: static;
}



.portfolio-box {
    display: block;
    position: relative;
    overflow: hidden;
}

.portfolio-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000000cc;
    transform: scale(0);
    transition: all .3s ease-in-out;
    transform-origin: center;
    border-radius: 0% 0% 0% 0%/20% 24% 76% 70%;
    border: 1px solid transparent;
}

.portfolio-box img:last-child {
    position: absolute;
    width: 25%;
    left: 50%;
    top: 112%;
    transform: translate(-50%, -50%) scale(.1);
    pointer-events: none;
    transition: all .3s ease-in-out .1s;
}

.portfolio-box:hover::before {
    transform: scaleX(1);
}

.portfolio-box:hover img:last-child {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-box img:first-child {
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
    border: 1px solid #ffb50a;
    border-radius: 10px;
}

/*PORTFOLIO SEC CSS END*/


/*CTA TWO SEC CSS START*/
.cta_two {
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    position: relative;
}

.cta_two_wrap {
    padding: 70px 15px 70px 150px;
}

.cta_two p {
    color: #fff;
}

/* .cta_two .default_btn:last-child:hover {
    color: #262626;
} */

.cta_two_wrap a.default_btn:nth-child(2):hover {
    color: #000 !important;
}

.cta_two img {
    position: absolute;
}

.cta_two_img1,
.cta_two_img2 {
    top: 50%;
    transform: translateY(-50%);
}

.cta_two_img1 {
    left: 20px;
    width: 500px;
}

.cta_two_img2 {
    right: 5px;
}

.cta_two_img3 {
    bottom: 0;
    right: -140px;
    top: -26px;
}

/*CTA TWO SEC CSS END*/


/*PROCESS SEC CSS START*/
.process_sec {
    background-image: url(../images/process_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process_sec .container {
    max-width: 1250px;
}

.process_mob.row {
    display: none;
}

.process_wrapper {
    position: absolute;
    width: 100%;
    top: 217px;
}

.process_wrapper h3 {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.process_wrapper p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
}

.process_row1 {
    margin-bottom: 161px;
}

.process_row2 {
    margin-bottom: 150px;
}

.process_box3 {
    padding-left: 60px;
}

img.process_shape {
    width: 1920px;
    max-width: initial;
}

.process_box1 {
    padding-left: 20px;
}

.process_box2 {
    padding-right: 79px;
}

/*PROCESS SEC CSS END*/

/*CLIENT SEC CSS START*/
.clients_sec {
    background-image: url(../images/client_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 898px;
    overflow: hidden;
}

.testimonial_tabs h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ffb50a;
    margin-bottom: 0;
}

.testimonial_tabs p {
    font-size: 16px;
    color: #a5a5a5;
    line-height: 28px;
}

.testimonial_tabs p.caption {
    color: #fff;
}

.client_img {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: 2;
}

.testimonial_tabs.owl-theme .owl-dots {
    text-align: left;
    margin-top: 60px;
}

.testimonial_tabs.owl-theme .owl-dots .owl-dot span {
    width: 80px;
    height: 80px;
    border-radius: 100% !important;
    margin: 5px 7px;
    background-image: url(../images/client_img1.png) !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid #ffb50a;
}

.testimonial_tabs.owl-theme .owl-dots .owl-dot.active span,
.testimonial_tabs.owl-theme .owl-dots .owl-dot:hover span {
    box-shadow: 0px 0px 35.72px 2.28px rgb(244 116 38 / 72%);
}

.testimonial_tabs .nav-fill .nav-item {
    flex: initial;
    margin-right: 15px;
    border: none !important;
}

.testimonial_tabs .nav-link {
    padding: 0;
}

.testimonial_tabs .nav-link:focus,
.testimonial_tabs .nav-link:hover {
    outline: none;
    border: none;
}

.testimonial_tabs .nav-tabs .nav-item.show .nav-link,
.testimonial_tabs .nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.testimonial_tabs .nav-tabs {
    border-bottom: none;
}

/*CLIENT SEC CSS END*/

/*FOOTER FORM SEC CSS START*/
.footer_form {
    background-color: rgb(227, 232, 235);
    position: relative;
    overflow: hidden;
    padding: 40px 0px !important;
}

.footer_form .form-group .form-control {
    font-size: 16px;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    border-radius: 30px;
}

.footer_form .form-group textarea.form-control {
    padding-top: 17px;
    height: 140px;
}

.form_btn {
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    padding: 11px 66px;
    border-radius: 100px;
    transition: all 0.25s ease-in-out;
    border: none;
    text-transform: uppercase;
    height: 48px;
}

.footer_img {
    position: absolute;
    left: 0;
    top: 0;
}

.footer_form .row * {
    position: relative;
    z-index: 1;
}

/*FOOTER FORM SEC CSS END*/


/*FOOTER SEC CSS START*/
.main-footer {
    background-color: #000;
    padding: 90px 0 75px;
    position: relative;
}

.footer-detail-area p {
    padding: 20px 0 30px;
    font-size: 16px;
    color: #5a5271;
    font-weight: 400;
    line-height: 25px;
}

.footer-detail-area h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.footer-detail-area ul {
    padding-top: 30px;
}

.footer-detail-area ul li a {
    padding-bottom: 15px;
    display: inline-flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.footer-detail-area ul li a i {
    padding-right: 20px;
    color: #000;
    padding-top: 5px;
    background-color: #fff;
    height: 23px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 100%;
    font-size: 11px;
    margin-right: 15px;
}

.footer-detail-area ul li a:hover {
    color: #ffb50a;
}

.footer-menu-wrap {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.footer-menu-wrap ul li a span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #5a5271;
}

.footer-menu-wrap h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 15px;
    padding-top: 20px;
}

.footer-menu-wrap ul li a {
    font-size: 13px;
    color: #a9a9a9;
    padding-bottom: 13px;
    font-family: 'Poppins', sans-serif;
    display: block;
    position: relative;
    padding-left: 20px;
}

.footer-menu-wrap ul li a:before {
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffb50a;
}

.footer-menu-wrap ul li a:hover {
    color: #ffb50a;
}

.copyright {
    background-color: #121212;
    padding: 20px 0;
}

.copyright p,
.copyright p a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Vollkorn', serif;
}

/*FOOTER SEC CSS END*/



/*INNER PAGE STYLE*/

/*BANNER SEC START*/
ul.banner_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

ul.banner_list li {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 13px;
    display: block;
    text-align: left;
    position: relative;
    padding-left: 20px;
    flex: 0 0 50%;
}

ul.banner_list li:before {
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffb50a;
}

ul.banner_list li:hover {
    color: #ffb50a;
}

.inner_banner .banner_content .default_btn {
    margin: 0px 0 30px;
}

section.banner.inner_banner {
    height: auto;
    padding: 100px 70px;
}

.inr_bnr_formbox {
    margin-left: 70px;
    background-color: #000000;
    border: 2px solid #ffb50a;
    box-shadow: 0px 33px 84px 0px rgb(0 0 0 / 20%);
    border-radius: 10px;
    padding: 26px 18px;
}

.inr_bnr_formbox h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 26px;
}

.inr_bnr_formbox h3 span:nth-child(1) {
    color: #ffb50a !important;
}

.inr_bnr_formbox h3 span {
    font-family: 'Poppins', sans-serif !important;
}

.inr_bnr_formbox .form-control {
    height: 50px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
}

.inr_bnr_formbtn {
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    padding: 6px 0;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
    border: none;
    text-transform: uppercase;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.inner_banner .banner_content h1 {
    font-size: 48px !important;
}

/*BANNER SEC END*/

/*INNER ABOUT SEC START*/
.inner_about {
    background-image: url(../images/inner-images/non-fiction/non-fiction-bg.jpg);
    overflow: hidden;
}

.inner_about_box {
    background-color: #fff;
    padding: 50px 0px 50px 120px;
}

.inner_about_box:before {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 100%;
    right: -100%;
    top: 0;
}

.inner_about_box * {
    position: relative;
    z-index: 1;
}

/*INNER ABOUT SEC END*/


/*INNER SERVICE SEC START*/
.inner_about {
    background-image: url(../images/inner-images/services/non-fiction-bg.jpg);
    overflow: hidden;
}

.inner_about_box {
    background-color: #fff;
    padding: 50px 0px 50px 120px;
}

.inner_about_box:before {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 100%;
    right: -100%;
    top: 0;
}

.inner_about_box * {
    position: relative;
    z-index: 1;
}


ul.service_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

ul.service_list li {
    font-size: 16px;
    font-weight: 400;
    color: #6e6e6e;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 13px;
    display: block;
    position: relative;
    padding-left: 20px;
    flex: 0 0 50%;
}

ul.service_list li:before {
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffb50a;
}

ul.service_list li:hover {
    color: #ffb50a;
}

/*INNER SERVICE SEC END*/


/* CONTACT PAGE */
.contact_form {
    background-color: #ffffff;
}

.contact_map {
    height: 100%;
}

.contact_map iframe {
    border-radius: 15px;
}

/* CONTACT PAGE END */


/* ABOUT PAGE START */
section.about-sec2 {
    /* padding: 110px 0px; */
    background-color: #f0eff4;
    position: relative;
    overflow: hidden;
}

.about_img {
    position: absolute;
    right: 0;
    top: 0;
}

.about-sec2 .col-lg-7 * {
    position: relative;
    z-index: 1;
}

/* ABOUT PAGE START */


/* THANKYOU PAGE START */
.main-thankyou {
    text-align: center;
    padding: 200px 0px 100px;
}

.site-header__title {
    font-size: 120px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0px;
    margin: 0px;
    color: #00082b;
}

.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* THANKYOU PAGE END */

/* PRIVACY PAGE START */
.main-heading {
    font-size: 40px;
    width: 100%;
    font-weight: 700;
    line-height: 1.1;
}

.main-para {
    color: #666666;
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    margin: 0px;
    padding: 0 0 10px 0;
}

/* PRIVACY PAGE END */



/* New form styling */
div#popup_form {
    padding-right: 0 !important;
}

.modal-dialog.modal-dialog-centered {
    max-width: 100% !important;
}

.entry-box {
    background: 0 0;
    margin: 0 auto;
    position: relative;
    pointer-events: auto;
    width: 1272px !important;
    height: auto;
    border: none;
}

ul.flip-clock-container.flip-2 {
    margin-bottom: 35px;
}

.flip-clock-container [class|=flip-item] .flip-digit>span::before {
    font-size: 33px;
    font-family: 'Poppins';
    color: #ffb50a;
    font-weight: 700;
}

.flip-clock-container [class|=flip-item] .flip-digit>span::after {
    font-size: 33px;
    font-family: 'Poppins';
    color: #ffb50a;
    font-weight: 700;
}

.discount-label {
    background-color: #ffb50a;
    margin: 37px 0 17px;
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.discount-label:after {
    content: "";
    position: absolute;
    /*! background-image:  url(../images/discount-after.webp);*/
    width: 67px;
    height: 62px;
    right: 15px;
    top: -20px
}

.discount-label h3 {
    font-size: 47px;
    font-weight: 900;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

.discount-label h3 span {
    font-family: 'Poppins', sans-serif;
    font-size: 37px;
    font-weight: 700
}

.popup-form-wrap p {
    font-size: 16px;
    font-weight: 400;
    color: #fff
}

.popup-form-wrap p span {
    color: #ffb50a;
    font-weight: 600
}

.modal.show {
    background-color: #00000096;
}

.popup-form-wrap {
    background: #141414;
    border-radius: 20px;
    opacity: 1;
    padding: 70px 0 60px;

}

.popup-form-wrap h2 {
    margin-bottom: 0px;
    font-size: 78px;
    color: #fff;
    font-weight: 700;
    line-height: 37px;
}

.popup-form-wrap h2 span {
    font-size: 33px;
    padding-left: 110px;
}

button#bio_ep_close {
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    opacity: 1;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    color: #fff;
    position: absolute;
    top: -15px;
    right: -15px;
}

.form-box-wrap .form-control {
    height: 47px;
}

.form-box-wrap {
    padding: 0 140px;
}

/* New form styling */




ul.top_left li,
ul.top_left li a,
.footer-detail-area li a {
    font-family: 'Poppins' !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    /* background: #f25a26; */
    background-image: -moz-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
}



/* THANKYOU PAGE START */
.main-thankyou {
    text-align: center;
    padding: 200px 0px 200px;
}

.site-header__title {
    font-size: 8rem !important;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0px;
    margin: 0px;
    color: #00082b;
}

.main-content__checkmark {
    font-size: 9.75rem !important;
    line-height: 1 !important;
    color: #f9a727;
}

.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 35px;
}

.backHome_btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    font-family: 'Poppins';
    border-radius: 50px;
    background: #f9a727;
    color: #fff;
}

.backHome_btn:hover {
    background: #262626;
    box-shadow: 0 0 25px #26262675;
    color: #fff;
}

/* THANKYOU PAGE END */

/* PRIVACY PAGE START */

.main-heading {
    font-size: 40px;
    width: 100%;
    font-weight: 700;
    line-height: 1.1;
}

.termCondition_body *,
.privacyPolicy_body * {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
}

.termCondition_body h2,
.privacyPolicy_body h2 {
    font-size: 24px !important;
}

.termCondition_body h3,
.privacyPolicy_body h3 {
    font-size: 18px !important;
    margin-block: 20px !important;
}

.termCondition_body p,
.privacyPolicy_body p {
    padding-bottom: 8px !important;
}

.main-para {
    color: #666666;
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    margin: 0px;
    padding: 0 0 10px 0;
}

/* PRIVACY PAGE END */

/* Our Own Book START */
.own-book-sec {
    /* background-color: #ffb50a; */
    /* background: rgb(61,90,128);
    background: linear-gradient(0deg, rgba(61,90,128,1) 0%, rgba(127,165,193,1) 100%); */
    /* background: rgb(147,188,212);
    background: linear-gradient(90deg, rgba(147,188,212,1) 15%, rgba(74,105,141,1) 100%); */
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    margin: 90px 130px 90px;
    padding: 80px 30px 50px;
    position: relative;
    border-radius: 10px;
}

.wrapper-own-book-1 {
    padding: 0 0 30px;
}

.wrapper-own-book-1>h4,
.wrapper-own-book-2>h4 {
    font-size: 36px;
    margin-bottom: 25px;
}

.own-book-inner-txt h4 {
    /* background-image: -webkit-linear-gradient(90deg,rgba(21,72,144,.99608) 0,#1d6bda 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    /* color: #2d3a4d; */
    color: #ffffff;
}

.own-book-sec p {
    margin-bottom: 30px;
    /* color: #000000; */
    color: #ffffff;
}

.wrapper-own-book-2 li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffb50a;
    padding-right: 10px;
}

.wrapper-own-book-2 li {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    margin-bottom: 10px;
    /* color: #000000; */
    color: #ffffff;
    font-family: 'Poppins';
}

.hire-ghostwriters-img {
    text-align: center;
    margin: 50px 0;
}

.sprite-hire-ghostbookwriters {
    width: 344px;
    height: 373px;
    background-position: -2119px -10px;
}

.sprite-writes-clients {
    background-image: url(./images/writers-clients.webp);
    background-repeat: no-repeat;
    display: block;
}

/* Our Own Book END */

/* Premium services START */
.comprehensive-serv {
    padding: 110px 130px 0px;
}

.comp-serv>h5 {
    margin-bottom: 60px;
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
}

.compr-serv-boxes .row .col-lg-3:nth-child(1) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(11) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(14) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(16) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(3) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(6) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(8) .compr-serv-box,
.compr-serv-boxes .row .col-lg-3:nth-child(9) .compr-serv-box {
    background: #ffe4a7;
}

.compr-serv-box {
    text-align: center;
    padding: 30px 0;
    height: 100%;
}

.sprite-compr {
    background-image: url(../images/compr-reasons.png);
    background-repeat: no-repeat;
    display: block;
}

/* ICONS START*/
.sprite-compr-icon-1 {
    width: 43px;
    height: 48px;
    background-position: -10px -10px;
}

.sprite-compr-icon-2 {
    width: 43px;
    height: 48px;
    background-position: -514px -10px
}

.sprite-compr-icon-3 {
    width: 43px;
    height: 48px;
    background-position: -577px -10px
}

.sprite-compr-icon-4 {
    width: 43px;
    height: 48px;
    background-position: -640px -10px
}

.sprite-compr-icon-5 {
    width: 43px;
    height: 48px;
    background-position: -703px -10px
}

.sprite-compr-icon-6 {
    width: 43px;
    height: 48px;
    background-position: -766px -10px
}

.sprite-compr-icon-7 {
    width: 43px;
    height: 48px;
    background-position: -829px -10px
}

.sprite-compr-icon-8 {
    width: 43px;
    height: 48px;
    background-position: -892px -10px
}

.sprite-compr-icon-9 {
    width: 43px;
    height: 48px;
    background-position: -955px -10px
}

.sprite-compr-icon-10 {
    width: 43px;
    height: 48px;
    background-position: -73px -10px
}

.sprite-compr-icon-11 {
    width: 43px;
    height: 48px;
    background-position: -136px -10px
}

.sprite-compr-icon-12 {
    width: 43px;
    height: 48px;
    background-position: -199px -10px
}

.sprite-compr-icon-13 {
    width: 43px;
    height: 48px;
    background-position: -262px -10px
}

.sprite-compr-icon-14 {
    width: 43px;
    height: 48px;
    background-position: -325px -10px
}

.sprite-compr-icon-15 {
    width: 43px;
    height: 48px;
    background-position: -388px -10px
}

.sprite-compr-icon-16 {
    width: 43px;
    height: 48px;
    background-position: -451px -10px
}

/* ICONS END */
.compr-serv-box>i {
    margin: 0 auto 11px;
}

.compr-serv-box>a {
    color: #333;
    font-size: 18px;
    display: block;
}

.compr-serv-box>a h3 {
    color: inherit;
    font-size: inherit;
    transition: 0.3s all ease-in-out;
}

.compr-serv-box>a h3:hover {
    color: #ffb50a;
}

.owl-nav button {
    font-size: 40px !important;
    font-weight: 700 !important;
}

/* Premium services END */

/* PRICING */
/* .pricing-banner{
    background-position: 0px -270px;
} */
.pricing {
    background: url(../images/package-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 70px 0px 220px;
    /* padding-bottom: 40px;
    margin-bottom: 90px; */
}

.pricing-title h2 {
    text-align: center;
    font-size: 42px;
    /* background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #ffb50a;
    padding: 0px 0px 70px 30px;
}

.pricing-title h2 span {
    font-size: 20px;
    color: #000000 !important;
}

.package-box {
    /* background: #2f3dab; */
    background-image: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);

    position: relative !important;
    /* height: 548px; */
    border-radius: 10px;
    padding: 20px 25px 40px 0px;
    -webkit-transition: all 0.4s ease-in-out;
}

.package-box:hover {
    background: rgb(238, 108, 64);
    background: linear-gradient(0deg, rgba(238, 108, 64, 1) 53%, rgba(255, 128, 84, 1) 100%);
    /* -webkit-transition: 0.3s all ease-in-out; */

}

.package-title {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 35px;
    font-weight: 600;
}

.box-price h3 {
    font-size: 75px;
    font-weight: 600;
    padding-left: 30px;

}

.package-bottom {
    display: block;
    margin-top: 40px;
    padding-left: 35px;
}

.pack-list::-webkit-scrollbar-thumb {
    background: #000000 !important;
}

.box-price {
    background: url(../images/box-price-bg.png);
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
    width: 300px;
    position: absolute;
    left: 0px;
    padding: 10px 0px 0px;
}

.package-body {
    margin-top: 140px;
    padding-left: 35px;
}

.pack-body-head {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    text-transform: capitalize;
    font-family: 'Vollkorn', serif;

}

.pack-body-para {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 20px 0px;
    font-family: 'Poppins';
}

ul.pack-list {
    margin-bottom: 40px;
    height: 200px;
    overflow-y: scroll;
}

.pack-list li {
    color: #ffffff;
}

.pack-list li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffb50a;
    padding-right: 10px;
}

.pack-list li {
    color: #ffffff;
    line-height: 30px;
}

.box-btn {
    background: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding: 13px 27px;
    font-family: 'Poppins';
}

.package-box:hover .box-btn {
    background: -webkit-linear-gradient(90deg, rgb(29, 53, 87) 0%, rgb(65, 105, 161) 100%);
    color: #ffffff;
}

.package-box:hover .pack-list li:before {
    color: rgb(65, 105, 161);
}

/* PRICING */

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.book-editing-sec {
    padding-top: 0px;
}


/* Tabs Section */


.tabs-section {
    padding: 50px 0
  }
  .banner-form-heading{
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
  }
  .tabs-section h3{
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
  }
  .section-title h3 span{
    color : #EB3D27;
  }
  .tabs-section ul#pills-tab {
    padding: 10px 5px;
  }
  .tab-content > .active {
    display: block;
    padding: 20px;
  }
  .tabs-section ul.check-50-li li {
    min-width: 48%;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    display: inline-flex
  }
  .tabs-section ul.check-50-li li img {
    margin-right: 10px;
    position: relative;
    top: 5px;
    width: 20px
  }
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #ffb50a !important;
  }
  .tabs-section .book-tab-img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }
  .tabs-section img {
    max-width: 100%;
    min-height: calc(100% - 30px);
    object-fit: cover;
  }
  
  .tabs-section .nav-pills .nav-link {
    color: #fff;
    text-transform: capitalize;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    background-color: #1d3557;
    border: none;
    cursor: pointer;
    border-radius: 99px;
    margin: 5px 5px;
    font-weight: 600;
    font-size: 12px;
    line-height: 13px;
  }
  .my-pill {
    height: 40px!important;
    width: 200px!important
  }

  /* Faqs Section */

  .faqs-section{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .accordion-item {
    background-color: #1d3557;
    color: #fff;
    margin: 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 2px 5px 0 rgba(174, 163, 253, 0.25);
  }
  .accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  .accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    background-color: #ffb50a;
    position: absolute;
    padding: 10px;
    border-radius: 50px;
    right: 1rem;
  }
  .accordion-item-header.active::after {
    content: "\2212";
  }
  .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #98a5d3, transparent) 1;
  }
  


  .client-logos {
    position: relative;
    padding: 50px 0;
    z-index: 1;
    background: #f15a25;
}

.client-logos ul {
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    text-align: center;
    margin: auto;
}

.client-logos ul li {
    list-style: none;
}

.client-logos ul li img {
    width: 75%;
}

/* Marquee Slider Styles */
.marquee_slider {
    position: relative;
    padding: 20px 0;
    background: #ffffff;
    overflow: hidden;
}

.marquee_track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee_item {
    display: flex;
    align-items: center;
    gap: 8vw;
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .marquee_track {
        animation-duration: 60s;
    }
    .marquee_item {
        gap: 5vw;
    }
    .marquee_item img {
        width: 60%;
    }
}





.ibp_counter_box h3 {
    font-size: 40px;
    font-weight: 800;
    color: #1d3557;
    margin-bottom: 5px;
  }
  
  .ibp_counter_box p {
    font-size: 15px;
    color: #555;
    margin: 0;
  }
  
  .ibp_counter_section {
    background-color: transparent;
    padding-top: 5px;
    padding-bottom: 30px;
  }
  
  .ibp_counter_box {
    position: relative;
  }
  
  @media (max-width: 767px) {
    .ibp_counter_box {
      margin-bottom: 20px;
    }
  }
  


  .video-testi {
    padding: 5rem 0;
}
.video-clip video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 2px solid #000;
}