@import url('./css2');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.my-tabs {
    display: none;
}

.my-tabs.current {
    display: block;
}

.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

::selection {
    color: #598878;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #598878;
}

.btn,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
    outline: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    font-size: 150px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 22px;
}

p {
    font-size: 16px;
}

.my-tabs {
    display: none;
}

.my-tabs.current {
    display: block;
}

.scroll_block {
    overflow: auto;
    padding-right: 10px
}

.scroll_block::-webkit-scrollbar {
    width: 1px
}

.scroll_block::-webkit-scrollbar-track {
    background: transparent;
    /* background-image: -moz-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -webkit-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -ms-linear-gradient(-129deg, #14288d 0, #072cc8 100%) */
}

.scroll_block::-webkit-scrollbar-thumb {
    background: transparent
}

.sec_padding {
    padding: 80px 0;
}

.combo_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.btn {
    padding: 12px 40px;
    font-size: 22px;
    border-radius: 50px;
    font-family: "Bebas Neue", sans-serif;
}

.btn_1 {
    background: #b5cac3;
}

.btn_2 {
    background: #fff;
}

.sec_padding {
    padding: 80px 0;
}

.no_border {
    border: none !important;
}

.line_break {
    display: block;
}

/* Start Header */

.mobile_header {
    display: none;
}

header {
    padding: 10px 0;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .logo.main_logo {
    display: none;
}

header .nav-btn .nav-links .logo {
    transform: translateY(15px);
    z-index: -1;
}

header .nav-btn .nav-links {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header .nav-btn .nav-links::before {
    content: "";
    width: 100%;
    height: 65px;
    border-radius: 36px;
    border: 2px solid rgba(31, 49, 37, 0.80);
    background: #182A35;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

header .nav-btn .nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

header .nav-btn .nav-links ul .nav-link {
    position: relative;
    padding: 0;
}

header .nav-btn .nav-links ul .nav-link>a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    transition: .5s;
}

header .nav-btn .nav-links ul .nav-link>a>i {
    margin-left: .2rem;
}

header .nav-btn .nav-links ul .nav-link:hover>a {
    transform: scale(1.1);
}

header .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

header .dropdown ul {
    position: relative;
}

header .dropdown-link>a {
    display: flex;
    background-color: #111e1e;
    color: #fff;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

header .dropdown-link:hover>a {
    background-color: #111e1e;
    color: #fff;
}

header .dropdown-link i {
    transform: rotate(-90deg);
}

header .arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

header .dropdown-link {
    position: relative;
}

header .dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

header .dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

header .nav-link:hover>.dropdown,
header .dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

header .dropdown.open {
    display: block !important;
}

header .nav-link:hover>.dropdown,
header .dropdown-link:hover>.dropdown {
    display: block;
}

header .hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

header .hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

header .hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

header .hamburger-menu div:before,
header .hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background: #ffffff;
    border-radius: 3px;
    transition: .5s;
}

header .hamburger-menu div:before {
    transform: translateY(-7px);
}

header .hamburger-menu div:after {
    transform: translateY(7px);
}

header #check {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

header #check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

header #check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

header #check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* End Header */

/* Start Banner */

.banner {
    background: url("../images/banner-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 0 80px;
    position: relative;
    z-index: 1;
}

.banner .sec_top {
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -1;
}

.banner .sec_before {
    position: absolute;
    top: 300px;
    left: 0;
    z-index: -1;
}

.banner .sec_after {
    position: absolute;
    top: 300px;
    right: 0;
    z-index: -1;
}

.banner .content h1 {
    text-align: center;
    line-height: 150px;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: -1;
}

/* .banner .content h1::after {
    content: "";
    width: 63px;
    height: 70px;
    background: url("../images/banner-heading-after.webp");
    background-size: contain;
    position: absolute;
    right: -10px;
    bottom: 120px;
    z-index: 1;
} */

.banner .content h1 .video {
    display: inline-block;
    width: 150px;
    transform: translateY(25px);
    margin: 0px -35px;
}

.banner .content h1 .video video {
    width: 100%;
}

.banner .content p {
    color: #fff;
    margin: 25px 0;
}

.banner .content .combo_btn {
    justify-content: center;
    gap: 20px;
}


.banner .banner_inner {
    margin-top: 60px;
    display: none;
}

.banner .banner_inner .banner_slider_rtl {
    margin-top: 40px;
}

/* End Banner */

/* Start Section 2 */

.section2 {
    background: url("../images/sec2-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 200px 0 280px;
    position: relative;
    z-index: 1;
}

.section2 .sec_left h4 {
    margin: 25px 0;
}

.section2 .sec_left h4 span {
    font-family: "Bebas Neue", sans-serif;
    color: #FF0000;
}

.section2 .sec_left p {
    margin: 0;
}

.section2 .sec_left .combo_btn {
    margin-top: 25px;
}

.section2 .sec_right {
    width: 45%;
    background: #fff;
    padding: 60px 200px 60px 80px;
    border-radius: 50px 0 0 0;
    box-shadow: -40px -16px 44px 0px rgba(203, 226, 136, 0.10);
    position: absolute;
    top: 80px;
    right: 0;
}

.section2 .sec_right form .form_group {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.section2 .sec_right form .form_group img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(0%);
}

.section2 .sec_right form .form_group label {
    display: block;
}

.section2 .sec_right form .form_group input,
.section2 .sec_right form .form_group textarea {
    width: 100%;
    height: 50px;
    color: #000;
    border-radius: 9px;
    border: 1px solid #b5cac3;
    background: #FDFFF2;
    padding: 15px;
    outline: none;
}

.section2 .sec_right form .form_group input::placeholder,
.section2 .sec_right form .form_group textarea::placeholder {
    color: #b5cac3;
}

.section2 .sec_right form .form_group textarea {
    height: 100px;
    resize: none;
}

.section2 .sec_right form .btn_1 {
    margin-top: 25px;
}

.sec2_inner {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -25px;
    transform: rotate(-3deg);
    overflow: hidden;
}

.sec2_inner .content {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sec2_inner .sec2_slider {
    background: #182a35;
}

.sec2_inner .sec2_slider .box,
.sec2_inner .sec2_slider_rtl .box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sec2_inner .sec2_slider .box p,
.sec2_inner .sec2_slider_rtl .box p {
    color: #fff;
    font-size: 55px;
    font-family: "Bebas Neue", sans-serif;
    margin: 0;
}

.sec2_inner .sec2_slider .box span,
.sec2_inner .sec2_slider_rtl .box span {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    color: #b5cac3;
    font-size: 100px;
    line-height: 100px;
    transform: translate(25px, 15px);
}

.sec2_inner .sec2_slider_rtl {
    background: #b5cac3;
}

.sec2_inner .sec2_slider_rtl .box p {
    color: #000;
}

.sec2_inner .sec2_slider_rtl .box span {
    color: #fff;
    transform: translate(-25px, 15px);
}

.sec2_inner .content .sec_logo {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
}

/* End Section 2 */

/* Start Section 3 */

.section3 {
    padding: 100px 0 60px;
}

.section3 .sec_content {
    margin-top: 60px;
}

.section3 .sec_content ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.section3 .sec_content ul li {
    width: 32%;
    height: 450px;
}

.section3 .sec_content ul li .box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    text-align: center;
    background: #F6F6F1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section3 .sec_content ul li .box h4 {
    margin: 0;
    color: #212529;
}

.section3 .sec_content ul li .box .img {
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_one:hover {
    background: #F9F9F9;
}

.section3 .sec_content ul li .box_one .img {
    margin-top: 70px;
    z-index: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_one:hover .img {
    transform: translateY(-20px) scale(1.1);
}

.section3 .sec_content ul li .box_one .img::before,
.section3 .sec_content ul li .box_one .img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/sec3-img-01.webp");
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_one:hover .img::before {
    bottom: -20px;
    transform: translateY(10px) scale(.9);
    opacity: .8;
}

.section3 .sec_content ul li .box_one:hover .img::after {
    bottom: -40px;
    transform: translateY(20px) scale(.8);
    opacity: .7;
}

.section3 .sec_content ul li .box_two:hover {
    background: #EFE2F9;
}

.section3 .sec_content ul li .box_two .img {
    margin-top: 25px;
}

.section3 .sec_content ul li .box.box_two .img_icon {
    position: absolute;
    left: 160px;
    bottom: 100px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_two:hover .img_icon.heart-badge {
    bottom: 300px;
    left: 70px;
}

.section3 .sec_content ul li .box_two:hover .img_icon.x-ads {
    bottom: 200px;
    left: 80px;
}

.section3 .sec_content ul li .box_two:hover .img_icon.fb-ads {
    bottom: 80px;
    left: 30px;
}

.section3 .sec_content ul li .box_two:hover .img_icon.amazon-badge {
    bottom: 245px;
    left: 270px;
}

.section3 .sec_content ul li .box_two:hover .img_icon.heart-rating {
    bottom: 180px;
    left: 230px;
}

.section3 .sec_content ul li .box_two:hover .img_icon.insta-badge {
    bottom: 70px;
    left: 310px;
}

.section3 .sec_content ul li .box_three:hover {
    background: #F9F9F9;
}

.section3 .sec_content ul li .box_three .img {
    margin-top: 70px;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_three:hover .img {
    transform: scale(1.1);
}

.section3 .sec_content ul li .box_three .img_icon {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_three .author-page-left {
    top: 150px;
    left: -150px;
    z-index: -1;
}

.section3 .sec_content ul li .box_three:hover .author-page-left {
    top: 30px;
    left: 10px;
    z-index: -1;
}

.section3 .sec_content ul li .box_three .author-page-right {
    right: -350px;
    bottom: 250px;
    z-index: 2;
}

.section3 .sec_content ul li .box_three:hover .author-page-right {
    right: 20px;
    bottom: 130px;
    z-index: 2;
}

.section3 .sec_content ul li .box_four:hover {
    background: #FFF7EB;
}

.section3 .sec_content ul li .box_four .img {
    width: 100%;
    margin-top: 70px;
    height: 100%;
}

.section3 .sec_content ul li .box_four .img .front {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: scale(.9);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    z-index: 2;
}

.section3 .sec_content ul li .box_four:hover .img .front {
    top: -10px;
    left: 20px;
    z-index: 1;
}

.section3 .sec_content ul li .box_four .img .back {
    position: absolute;
    top: -10px;
    right: 0px;
    transform: scale(.9);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    z-index: 1;
}

.section3 .sec_content ul li .box_four:hover .img .back {
    top: 10px;
    right: 25px;
    z-index: 2;
}

.section3 .sec_content ul li .box_five:hover {
    background: #F2FAEB;
}

.section3 .sec_content ul li .box_five .img {
    margin-top: 90px;
}

.section3 .sec_content ul li .box_five .img .main-img {
    width: 100%;
    transform: translateX(80px) scale(1.2);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_five:hover .img .main-img {
    width: 100%;
    transform: translateX(-50px) scale(1.2);
}

.section3 .sec_content ul li .box_six:hover {
    background: #F6E3E0;
}

.section3 .sec_content ul li .box_six .img {
    margin-top: 40px;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_six:hover .img {
    transform: scale(.9);
}

.section3 .sec_content ul li .box_six .img_icon {
    position: absolute;
    z-index: -1;
}

.section3 .sec_content ul li .box_six .img_icon.youtube-badge {
    top: 200px;
    left: 150px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_six:hover .img_icon.youtube-badge {
    top: 160px;
    left: 10px;
}

.section3 .sec_content ul li .box_six .img_icon.big-heart {
    top: 200px;
    right: 150px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 .sec_content ul li .box_six:hover .img_icon.big-heart {
    top: 140px;
    right: 40px;
}

.section3 .sec_content .combo_btn {
    justify-content: center;
    margin-top: 60px;
}

.section3 .sec_content .combo_btn .btn_2 {
    background: #EEECEC;
}

/* End Section 3 */

/* Start Section 4 */

.section4 {
    padding: 0;
    position: relative;
    z-index: 1;
}

.section4::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0D0D0D;
    background: linear-gradient(0deg, #0d0d0d 50%, #ffffff 50%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.section4 .content {
    background: url("../images/sec4-bg.webp");
    background-size: cover;
    background-position: center;
    margin: 0 25px;
    padding: 60px 0;
    border-radius: 35px;
}

.section4 .content .sec_content {
    margin-top: 20px;
}

.section4 .content .sec_content .slick-list.draggable {
    padding-top: 50px;
}

.section4 .content .sec_content .slick-slide {
    margin: 0 10px;
}

.section4 .content .sec_content ul li .box {
    width: 100%;
    margin: 10px 0;
    border-radius: 23px;
    background: #FFF;
    text-align: center;
    padding: 50px 20px 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.section4 .content .sec_content ul li .box .img {
    position: absolute;
    top: -50px;
    z-index: 2;
}

.section4 .content .sec_content ul li .box h5 {
    margin: 40px 0 10px;
}

.section4 .content .sec_content ul li .box .scroll_block {
    font-size: 14px;
    height: 105px;
}

.section4 .content .combo_btn {
    justify-content: center;
    margin-top: 60px;
}

/* End Section 4 */

/* Start Section 5 */

.section5 {
    display: none;
    background: linear-gradient(180deg, #0D0D0D 8.48%, #292929 94.37%);
    position: relative;
    z-index: 1;
}

.section5 .sec_top h2 {
    color: #fff;
}

.section5 .sec_top p {
    color: #fff;
    margin: 0;
}

.section5 .sec_content {
    margin-top: 60px;
}

.section5 .sec_content .sec5_slider .slick-slide {
    margin: 0 10px;
}

.section5 .sec_content .sec5_slider .slick-arrow {
    width: 60px;
    height: 60px;
    z-index: 22;
}

.section5 .sec_content .sec5_slider .slick-next {
    right: -45px;
}

.section5 .sec_content .sec5_slider .slick-prev {
    left: -45px;
}

.section5 .sec_content .sec5_slider .slick-dots {
    bottom: -45px;
}

.section5 .sec_content .sec5_slider .slick-dots li {
    transition: .2s linear;
}

.section5 .sec_content .sec5_slider .slick-dots li button:before {
    font-size: 12px;
    color: #ffffff;
}

.section5 .sec_content .sec5_slider .slick-dots li.slick-active button:before {
    color: transparent;
}

.section5 .sec_content .sec5_slider .slick-dots li.slick-active {
    width: 50px;
    height: 10px;
    transform: translateY(4px);
    border-radius: 50px;
    background: #b5cac3;
}

.section5 .sec_content .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #b5cac3;
}

.section5 .sec_content .sec5_slider .slick-slide .box {
    width: 100%;
    height: 420px;
}

.section5 .sec_content .sec5_slider .slick-slide .box a.img {
    width: 100%;
    height: 100%;
    display: block;
}

.section5 .sec_content .sec5_slider .slick-slide .box a.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section5 .sec_content .combo_btn {
    justify-content: center;
    margin-top: 80px;
}

/* End Section 5*/

/* Start Section 6 */
.section6 {
    background: linear-gradient(168deg, #182a35 8.48%, #182A35 94.37%);
    padding: 20px;
}

.section6 .sec6_slider .slick-slide {
    margin: 0 10px;
}

.section6 .sec6_slider .slick-slide .box {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* End Section 6 */

/* Start Section 7 */

.section7 {
    background: url("../images/sec7-bg.webp");
    background-size: cover;
    background-position: center;
}

.section7 .sec_left h2 {
    margin: 0;
}

.section7 .sec_left p {
    margin: 30px 0;
}

.section7 .sec_left .combo_btn .btn_2 {
    background: #EEECEC;
}

/* End Section 7 */

/* Start Section 8 */

.bg {
    background: url("../images/sec8-bg.webp");
    background-size: cover;
    background-position: bottom right;
}

.section8 .sec_content {
    margin-top: 40px;
}

.section8 .sec_content .slick-slide {
    margin: 0 10px;
}

.section8 .sec_left .box .img {
    width: 100%;
    height: 100%;
}

.section8 .sec_left ul .box .img img {
    width: 100%;
    height: 100%;
}

.section8 .sec_right .box {
    background: #182a35;
    border-radius: 30px;
    padding: 70px 40px;
}

.section8 .sec_right .box p {
    color: #fff;
    font-size: 25px;
    height: 155px;
}

.section8 .sec_right .box .box_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.section8 .sec_right .box .box_info .info_left h6 {
    color: #fff;
    margin: 0;
}

.section8 .sec_right .box .box_info .info_left span {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

/* End Section 8 */

/* Start Section 9 */

.section9 {
    padding-top: 60px;
}

.section9 .sec_left p {
    margin: 25px 0 40px;
    padding-right: 150px;
}

.section9 .sec_left .combo_btn .btn_2 {
    background: #EEECEC;
}

.section9 .sec_right form {
    border-radius: 50px 50px 0 0;
    background: #b5cac3;
    box-shadow: -40px -16px 44px 0px rgba(203, 226, 136, 0.10);
    padding: 40px 40px 20px;
}

.section9 .sec_right form .form_group {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.section9 .sec_right form .form_group img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(0%);
}

.section9 .sec_right form .form_group label {
    display: block;
}

.section9 .sec_right form .form_group input,
.section9 .sec_right form .form_group textarea {
    width: 100%;
    height: 50px;
    color: #000;
    border-radius: 9px;
    border: 1px solid #b5cac3;
    background: #FDFFF2;
    padding: 15px;
    outline: none;
}

.section9 .sec_right form .form_group input::placeholder,
.section9 .sec_right form .form_group textarea::placeholder {
    color: #b5cac3;
}

.section9 .sec_right form .form_group textarea {
    height: 100px;
    resize: none;
}

.section9 .sec_right form .btn_1 {
    background: #fff;
    margin-top: 25px;
}

/* End Section 9 */

/* Start Footer */

footer {
    background: linear-gradient(138deg, #171717 23.74%, #182a35 87.57%);
    position: relative;
    z-index: 1;
    padding: 80px 0 20px;
    overflow: hidden;
}

footer::before {
    content: "Get in touch";
    text-align: center;
    width: 100%;
    font-family: "Bebas Neue", sans-serif;
    -webkit-text-stroke: 3px #525252;
    -webkit-text-fill-color: transparent;
    font-size: 325px;
    font-style: normal;
    font-weight: 400;
    line-height: 300px;
    text-transform: capitalize;
    opacity: 0.1;
    position: absolute;
    top: 200px;
    left: 0;
    z-index: -1;
}

footer .sec_before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

footer .sec_after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

footer .ft_left {
    display: flex;
    justify-content: center;
    align-items: self-start;
    flex-direction: column;
    gap: 60px;
}

footer .ft_left ul.menu {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

footer .ft_left ul.menu li a {
    color: #fff;
    font-weight: 300;
}

footer .ft_left ul.social_links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

footer .ft_left ul.social_links li a {
    display: block;
    width: 30px;
    height: 30px;
    background: #262a2b;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .ft_center {
    text-align: center;
}

footer .ft_center .img img {
    width: 250px;
}

footer .ft_center p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    margin-top: 60px;
}

footer .ft_right {
    text-align: end;
    display: flex;
    justify-content: start;
    align-items: self-end;
    flex-direction: column;
    gap: 60px;
}

footer .ft_right ul.refund_links {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    gap: 10px;
}

footer .ft_right ul.refund_links li a {
    color: #fff;
    font-weight: 300;
}

footer .ft_right ul.info_links {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 10px;
}

footer .ft_right ul.info_links li .box {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
}

footer .ft_right ul.info_links li .box a {
    color: #fff;
    font-weight: 300;
}

footer .main_ft {
    background: rgba(21, 35, 40, 0.01);
    backdrop-filter: blur(3px);
    margin-top: 40px;
}

footer .main_ft .container {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 15px;
    padding-bottom: 15px;
}

footer .main_ft .container p {
    margin: 0;
    color: #fff;
}

footer .main_ft .container p span {
    color: #b5cac3;
}

footer .main_ft img.payment {
    display: block;
    margin-left: auto;
}

/* End Footer */

/* ==============================================================
                     INNER PAGES
============================================================== */

/* Start About Us Page */

/* Start About Us Banner */

.about_us_banner {
    padding: 200px 0;
    background: url("../images/about-us/banner-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.about_us_banner .sec_before {
    width: 190px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 300px;
    transform: translateY(-50%);
    z-index: 22;
}


.about_us_banner .sec_before .img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about_us_banner .sec_before .img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/about-us/banner-before-bg.webp");
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.about_us_banner .sec_after {
    position: absolute;
    right: 28%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 22;
}

.about_us_banner .content h1 {
    font-size: 348px;
    font-style: normal;
    font-weight: 400;
    line-height: 348px;
    background: linear-gradient(180deg, #FFF 22.27%, #b5cac3 79.89%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(2px);
}

.about_us_banner .content p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    letter-spacing: -0.18px;
}

.about_us_banner .sec2_inner {
    bottom: -50px;
}

/* End About Us Banner */

/* Start About Section 2 */

.about_sec2 {
    background: url("../images/about-us/sec2-bg.webp");
    background-size: cover;
    background-position: center top;
    padding: 150px 0 60px;
}

.about_sec2 .sec_left h4 {
    margin: 25px 0;
}

.about_sec2 .sec_left h4 span {
    font-family: "Bebas Neue", sans-serif;
    color: #FF0000;
}

.about_sec2 .sec_left p {
    margin: 0;
}

.about_sec2 .sec_left .combo_btn {
    margin-top: 25px;
}

.about_sec2 .sec_left .combo_btn .btn_2 {
    background: #EEECEC;
}

.about_sec2 .sec_right .img {
    transform: translateY(-25px);
}

/* End About Section 2 */

/* Start About Section 3 */

.about_sec3 {
    background: linear-gradient(138deg, #171717 23.74%, #14252C 87.57%);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.about_sec3::after {
    width: 100%;
    content: "Process";
    font-size: 300px;
    text-align: center;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    color: #fff;
    opacity: 0.045;
}

.about_sec3 .sec_top h2 {
    color: #fff;
}

.about_sec3 .sec_top p {
    color: #fff;
}

.about_sec3 .sec_content {
    margin-top: 60px;
}

.about_sec3 .sec_content ul#myList li .box {
    padding: 20px 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.about_sec3 .sec_content ul#myList li .box {
    max-height: 150px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    position: relative;
    z-index: 1;
}

.about_sec3 .sec_content ul#myList li .box::before {
    content: "";
    width: 100%;
    height: 0;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about_sec3 .sec_content ul#myList li.active .box::before {
    height: 320px;
}

.about_sec3 .sec_content ul#myList li.active .box::after {
    content: "";
    width: 332px;
    height: 320px;
}

.about_sec3 .sec_content ul#myList li.active .box {
    max-height: 400px;
    padding: 20px 0;
}

.about_sec3 .sec_content ul#myList li .box .sec_left {
    border-top: 1px solid #ffffff93;
    border-bottom: 1px solid #ffffff93;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .box .sec_left {
    border-top: none;
    border-bottom: none;
}

.about_sec3 .sec_content ul#myList li .box h2 {
    color: #fff;
    font-size: 40px;
    padding: 10px;
    margin: 0;
    transform: translateX(0px);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li .box h2 span {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
}

.about_sec3 .sec_content ul#myList li.active .box h2 {
    margin: 0;
    color: #b5cac3;
    font-size: 50px;
    transform: translateX(-105px);
}

.about_sec3 .sec_content ul#myList li .box h2 img {
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .box h2 img {
    filter: invert(1) grayscale(1) brightness(111);
}

.about_sec3 .sec_content ul#myList li .box .sec_left p {
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .box .sec_left p {
    height: unset;
    font-size: 14px;
    margin-top: 25px;
    color: #fff;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li .box .sec_right .img {
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .box .sec_right .img {
    width: 335px;
    height: 320px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li .box .sec_right .arrow {
    width: 50px;
    height: 0px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .sec_right .arrow {
    width: 50px;
    height: 50px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.about_sec3 .sec_content ul#myList li.active .box .sec_right {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0px;
}

.about_sec3 .sec_content ul#myList li.active .box .sec_right .arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.about-page::after {
    background: linear-gradient(0deg, #ffffff 50%, #171717 50%);
}

/* End About Section 3 */

/* End About Page */

/* Start Services Pages */

/* Start Services Banner */

.services_banner {
    background: url("../images/author-website/banner-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 200px 0 80px;
    position: relative;
    z-index: 1;
}

.services_banner .sec_left h4 {
    color: #fff;
}

.services_banner .sec_left h1 {
    color: #fff;
    font-size: 80px;
    line-height: 85px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* .services_banner .sec_left h1::after {
    content: "";
    width: 63px;
    height: 70px;
    background: url(../images/banner-heading-after.webp);
    background-size: contain;
    position: absolute;
    right: 0px;
    top: 35px;
    z-index: 1;
} */

.services_banner .sec_left p {
    color: #fff;
    margin: 25px 0 40px;
}

.services_banner .sec_right {
    position: relative;
    z-index: 1;
}

.services_banner .sec_right .img_sign,
.services_banner .sec_right .img_star,
.services_banner .sec_right .img_chat,
.services_banner .sec_right .img_tablet {
    position: absolute;
    z-index: 2;
}

.services_banner .sec_right .img_sign {
    top: 10px;
    left: 60px;
}

.services_banner .sec_right .img_star {
    top: 20px;
    right: -50px;
}

.services_banner .sec_right .img_chat {
    top: 45%;
    left: 0px;
}

.services_banner .sec_right .img_tablet {
    right: -30px;
    bottom: -30px;
}

.services_banner .sec_right .img {
    width: 100%;
    margin-left: auto;
    display: block;
}

.services_banner .sec_right .img img {
    width: 100%;
}

/* End Services Banner */

/* Start Services 3 */

.services_sec3 {
    background: url("../images/author-website/sec3-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 80px 0 250px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services_sec3 .sec_content {
    margin: 60px 25px 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.services_sec3 .sec_content .sec_left {
    width: 45%;
    border-radius: 40px;
    border: 1px solid #B3B3B3;
    background: #fff;
    padding: 50px 150px 50px 50px;
    transform: scale(1.2) translateX(70px);
}

.services_sec3 .sec_content .sec_left .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services_sec3 .sec_content .sec_left .tabs li {
    border-radius: 35.889px;
    border: 1.306px solid #0000004f;
    background: #FFF;
    color: #363636;
    font-size: 22px;
    padding: 15px 25px;
    font-family: "Bebas Neue", sans-serif;
    cursor: pointer;
}

.services_sec3 .sec_content .sec_left .tabs li.current {
    background: #182a35;
    color: #fff;
}

.services_sec3 .sec_content .sec_left .my-tabs {
    margin-top: 60px;
}

.services_sec3 .sec_content .sec_left .my-tabs .box .scroll_block {
    height: 75px;
    margin: 25px 0;
}

.services_sec3 .sec_content .sec_left .my-tabs .box .combo_btn .btn_2 {
    background: #EEECEC;
}

.services_sec3 .sec_content .sec_right {
    width: 55%;
}

.services_sec3 .sec_content .sec_right .my-tabs .img {
    width: 100%;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}

.services_sec3 .sec_content .sec_right .my-tabs .img img {
    width: 100%;
}

/* Start Services 3 */

/* Start Services 4 */

.services_sec4 {
    position: relative;
    z-index: 1;
}

.services_sec4 .sec_before {
    position: absolute;
    bottom: 50px;
    right: 0;
    transform: rotateY(180deg);
}

.services_sec4 .sec_after {
    position: absolute;
    top: 50px;
    left: 0;
    transform: rotateY(180deg);
}

.services_sec4 .sec_content {
    padding: 0 150px;
}

.services_sec4 .sec_content p.sub_heading {
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 5px 20px;
    margin: 0;
    margin-bottom: 25px;
}

.services_sec4 .sec_content p.sub_heading img {
    transform: translateY(-4px);
}

.services_sec4 .sec_content p {
    margin: 35px 0;
}

.services_sec4 .sec_content .combo_btn {
    justify-content: center;
}

.services_sec4 .sec_content .combo_btn .btn_2 {
    background: #EEECEC;
}

/* End Services 4 */

.services-page::after {
    background: linear-gradient(0deg, #ffffff 50%, #282828 50%);
}

.faqs {
    background: url("../images/sec7-bg.webp");
    background-size: cover;
    background-position: center;
}

.faqs .sec_top p.sub_heading {
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 5px 20px;
    margin: 0;
    margin-bottom: 25px;
}

.faqs .sec_top p.sub_heading img {
    transform: translateY(-4px);
}

.faqs .sec_content {
    margin-top: 30px;
}

.faqs .sec_content .accordion .accordion-item {
    margin-top: 25px;
    border-radius: 20px;
    border: 1px solid #F2F1F0;
    background: #F5F5F5;
    overflow: hidden;
}

.faqs .sec_content .accordion .accordion-item .accordion-button {
    border-radius: 0;
    background: transparent;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: #000;
}

.faqs .sec_content .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0) grayscale(111);
}

/* End Services Pages */

/* Start Book Portfolio Page */

/* Start Portfolio Banner */

.portfolio_banner {
    padding: 250px 0;
    background: url("../images/portfolio/banner-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.portfolio_banner .sec_before {
    width: 190px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 260px;
    left: -80px;
    z-index: 2;
}


.portfolio_banner .sec_before .img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.portfolio_banner .sec_before .img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/about-us/banner-before-bg.webp");
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.portfolio_banner .sec_after {
    position: absolute;
    right: 0;
    bottom: 160px;
    z-index: -1;
}

.portfolio_banner .content h1 {
    font-size: 348px;
    font-style: normal;
    font-weight: 400;
    line-height: 348px;
    background: linear-gradient(180deg, #FFF 22.27%, #b5cac3 79.89%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.portfolio_banner .content h1::before {
    content: "";
    width: 135px;
    height: 113px;
    background: url("../images/portfolio/heading-before.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 35px;
    z-index: -1;
}

.portfolio_banner .content p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    letter-spacing: -0.18px;
}

.portfolio_banner .sec2_inner {
    bottom: -50px;
}

/* End Portfolio Banner */

/* Start Portfolio Section 2 */

.port_sec2 {
    background: linear-gradient(168deg, #0D0D0D 8.48%, #292929 94.37%);
    padding: 180px 0 80px;
    position: relative;
    z-index: 1;
}

.port_sec2::after {
    width: 100%;
    content: "Portfolio";
    font-size: 350px;
    text-align: center;
    position: absolute;
    top: 20px;
    left: -10px;
    font-family: "Bebas Neue", serif;
    color: #fff;
    opacity: 0.045;
    z-index: -1;
}

.port_sec2 .sec_top h2 {
    color: #fff;
}

.port_sec2 .sec_top p {
    color: #fff;
    margin: 0;
}

.port_sec2 .sec_content {
    margin-top: 0px;
}

.port_sec2 .sec_content .tabs {
    width: 945px;
    border-radius: 35px;
    background: #2B2B2B;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px auto;
}

.port_sec2 .sec_content .tabs li {
    border-radius: 35px;
    padding: 10px 34px;
    background: transparent;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    cursor: pointer;
}

.port_sec2 .sec_content .tabs li.current {
    background: #b5cac3;
    color: #000;
}

.port_sec2 .sec_content .my-tabs .box a {
    display: block;
    margin-top: 25px;
}

.port_sec2 .sec_content .my-tabs .box a img {
    width: 100%;
}

/* End Portfolio Section 2 */

/* End Book Portfolio Page */

/* Start Contact Us */

.contact_us_banner {
    background: url("../images/contact-us/banner-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 200px 0 100px;
}

.contact_us_banner .sec_left h1 {
    font-size: 80px;
    line-height: 85px;
    margin: 0;
}

.contact_us_banner .sec_left p {
    margin: 35px 0;
}

.contact_us_banner .sec_right {
    position: relative;
    z-index: 1;
    transform: translateX(130px);
}

.contact_us_banner .sec_right .img_1 {
    transform: translateY(0px) scale(1.1);
}

.contact_us_banner .sec_right .img_1 img {
    width: 100%;
}

.contact_us_banner .sec_right .img_2 {
    display: none;
    position: absolute;
    bottom: 5px;
    left: 45px;
}

/* End Contact Us */

/* Start Main Author Page */

.author_sec3 {
    background: url("../images/author-website/sec3-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 80px 0 300px;
    position: relative;
    z-index: 1;
}

.author_sec3 .sec_content {
    margin: 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.author_sec3 .sec_content a {
    display: block;
    width: 100%;
    height: 100%;
}

.author_sec3 .sec_content a .box {
    margin-top: 25px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.author_sec3 .sec_content a .box::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #0000008c);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.author_sec3 .sec_content a .box .img img {
    width: 100%;
    object-fit: cover;
}

.author_sec3 .sec_content a .box h5 {
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Start Author Detail Page */

.author_detail_banner {
    background: url("../images/author-website/banner-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 250px 0 150px;
    position: relative;
    z-index: 1;
}

.author_detail_banner .sec_left h4 {
    color: #fff;
}

.author_detail_banner .sec_left h1 {
    color: #fff;
    font-size: 80px;
    line-height: 85px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.author_detail_banner .sec_left p {
    color: #fff;
    margin: 25px 0 40px;
}

.author_detail_banner .sec_left {
    text-align: center;
}

.author_detail_banner .sec_right h1 {
    display: inline-block;
    font-size: 70px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.author_detail_banner .sec_right h1::after {
    content: "";
    width: 53px;
    height: 59px;
    background: url("../images/banner-heading-after.webp");
    background-size: contain;
    position: absolute;
    right: -40px;
    top: -30px;
    z-index: 1;
}

.author_detail_banner .sec_right ul.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 25px;
}

.author_detail_banner .sec_right ul.info li .box h4 {
    color: #fff;
    margin: 0;
}

.author_detail_banner .sec_right ul.info li .box p {
    color: #fff;
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
}

.author_detail_banner .sec_right p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.author_detail_banner .sec_right ul.career {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.author_detail_banner .sec_right ul.career li:first-child {
    padding: 0;
    background: transparent;
    color: #fff;
}

.author_detail_banner .sec_right ul.career li:first-child h5 {
    margin: 0;
}

.author_detail_banner .sec_right ul.career li {
    background: #b5cac3;
    padding: 5px 25px;
    border-radius: 50px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
}

/* End Author Detail Page */

/* Start Term & Privacy Page */

.term_banner {
    padding: 250px 0;
    background: url("../images/portfolio/banner-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.term_banner .content h1 {
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: 200px;
    background: linear-gradient(180deg, #FFF 22.27%, #b5cac3 79.89%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.term_banner .sec2_inner {
    bottom: -60px;
}

.terms_content {
    background: url(../images/sec8-bg.webp);
    background-size: cover;
    background-position: bottom right;
    padding: 200px 0 60px;
}

.thank-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(0deg, #d8a421, #f8c136); */
    background: url("../images/banner-bg.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.thank-section h1 {
    color: #fff;
    font-size: 100px;
    line-height: 120px;
}

.thank-section p {
    color: #fff;
}

.thank-section hr {
    background: #fff;
}

.thank-section .combo_btn {
    justify-content: center;
}

.form_group img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5578%) hue-rotate(47deg) brightness(82%) contrast(87%);
}

.balti_popup {
    width: 1050px;
    border-radius: 50px;
    padding: 30px;
    background: url("../images/popup/popup-bg.webp");
    background-size: cover;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup_left .btn_1 {
    background-color: white;
}