@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@font-face {
    font-family: aghaFont-Bold;
    src: url("../font/GrahamCrackerJF.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

::selection {
    color: #fff;
    background-color: #6B55FF;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #6B55FF;
}

.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;
    outline: unset !important;
}

img {
    max-width: 100%;
    outline: 0;
}

/* .wow{
    opacity: 1 !important;
} */

h1 {
    font-size: 60px;
    font-family: "Space Grotesk", sans-serif;
}

h2 {
    font-size: 50px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: bold;
}

h3 {
    font-size: 40px;
    font-family: "Space Grotesk", sans-serif;
}

h4 {
    font-size: 36px;
    font-family: "Space Grotesk", sans-serif;
}

h5 {
    font-size: 30px;
    font-family: "Space Grotesk", sans-serif;
}

h6 {
    font-size: 25px;
    font-family: "Space Grotesk", sans-serif;
}

p {
    font-size: 16px;
}

.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
}

.my-tabs {
    display: none;
}

.my-tabs.current {
    display: block;
}

.combo_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 1px solid;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s;
    box-sizing: border-box;
    box-shadow: inset 0px 5px 15px 0px rgba(255, 255, 255, .6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    background: #40F0C9;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: clip-path .4s ease-out;
    clip-path: circle(0rem at 94.9% 15%);
    z-index: -1;
}

.btn:hover::before {
    clip-path: circle(133% at 94.9% 15%);
}

.btn:hover {
    color: #fff;
}

.btn_1 {
    background-color: #6B55FF;
    border-color: #6B55FF;
}

.btn_1:hover {
    background-color: #40F0C9;
    border-color: #40F0C9;
}

.btn_2 {
    background-color: transparent;
    border-color: #fff;
}

.btn_2:hover {
    background-color: #6B55FF;
    border-color: #6B55FF;
}

.bg-text {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    position: relative;
    z-index: 1;
}

.bg-text:before {
    content: '';
    width: 0%;
    height: 100%;
    border-radius: 50px;
    padding: 10px 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: .8s linear;
    z-index: -1;
}

.txt-active:before {
    width: 100%;
}

.sec_padding {
    padding: 80px 0;
}

.no_border {
    border: none !important;
}

/* Start Header */
header {
    position: fixed;
    padding: 10px 0;
    z-index: 999;
    width: 100%;
    background: #131338;
}

header nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo a {
    text-decoration: none;
}

header nav input {
    display: none;
}

header .nav-links {
    display: inline-flex;
}

header .nav-links li {
    margin: 0 15px;
}

header .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: .6;
}

header .nav-links li a:hover {
    opacity: 1;
}

header .nav-links .mobile-item {
    display: none;
}

header .nav-links .drop-menu {
    position: absolute;
    background: rgb(0 0 0 / 50%);
    border: 1px solid #6b55ff42;
    border-radius: 5px;
    width: 200px;
    padding: 20px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

header .nav-links .drop-menu li {
    margin: 0;
}

header .nav-links li:hover .drop-menu,
header .nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 26px;
    opacity: 1;
    visibility: visible;
}

header .drop-menu li a {
    width: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid #6b55ff42;
    padding: 10px 15px;
    margin-bottom: 10px;
    opacity: 1;
    transition: .2s linear;
}

header .drop-menu li a:hover {
    background: #6b55ff42;
}

header .mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 30px 0px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

header .mega-box .content {
    background: rgb(0 0 0 / 50%);
    border: 1px solid #6b55ff42;
    border-radius: 5px;
    padding: 25px;
    display: flex;
    gap: 30px;
    width: 100%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

header .mega-box .content ul.mega-links li {
    margin: 0;
}

header .mega-box .content ul.mega-links li a {
    display: block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border: 1px solid #6b55ff42;
    padding: 20px;
    opacity: 1;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s;
    transform: translateY(0);
}

header .mega-box .content ul.mega-links li a:hover {
    transform: translateY(-5px);
}

header .mega-box .content ul.mega-links.links-left li a {
    padding: 0;
}

header .mega-box .content ul.mega-links li a h6 {
    margin: 0;
    font-size: 18px;
}

header .mega-box .content ul.mega-links.links-left li a h6 {
    padding: 20px 20px 0;
}

header .mega-box .content ul.mega-links li a p {
    font-size: 14px;
    margin: 10px 0 20px;
}

header .mega-box .content ul.mega-links.links-left li a p {
    padding: 0 20px;
}

header .mega-box .content ul.mega-links li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .mega-box .content ul.mega-links.links-left li a img {
    height: 200px;
}

header .mega-box .content ul.mega-links.links-right {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    column-count: 2;
    flex-wrap: wrap;
}

header .mega-box .content ul.mega-links.links-right li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .mega-box .content ul.mega-links.links-right li {
    display: block;
    width: 32%;
}

header .mega-box .content ul.mega-links.links-left {
    width: 30%;
}

header .mega-box .content ul.mega-links.links-right li a {
    height: 140px;
}

header .mega-box .content ul.mega-links.links-right li a img {
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

header .mega-box .content ul.mega-links.links-right li a .right p {
    margin: 5px 0 0;
    font-weight: 100;
}

header .btn2 {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

header .btn2.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

/* End Header */

/* Start Home Page */
.banner {
    display: flex;
    align-items: center;
    padding: 500px 0 350px;
    background: linear-gradient(180deg, #5555ff3d 0%, #03030370 100%);
    color: #fff;
    transition: .1s linear;
    position: relative;
    overflow: hidden;
}

.banner .layout-div {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
}

.banner .layout-div.layout-01 ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
    transition: .1s linear;
}

.banner:hover ul.left {
    transform: translateX(20px);
}

.banner:hover ul.right {
    transform: translateX(-20px);
}

.banner .layout-div.layout-01 ul.left li:nth-child(2) {
    transform: translateX(-100px);
}

.banner .layout-div.layout-01 ul.right li:nth-child(2) {
    transform: translateX(100px);
}

.banner .layout-div.layout-01 ul li img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.banner .layout-div.active {
    pointer-events: all;
    opacity: 1;
}

.banner .layout-div.layout-01 .content {
    text-align: center;
    transition: .1s linear;
}

.banner .layout-div .content,
.banner .layout-div .left,
.banner .layout-div .right {
    scale: 0;
    transition: .1s linear;
}

.banner .layout-div.active .content,
.banner .layout-div.active .left,
.banner .layout-div.active .right {
    scale: 1;
}


.banner .layout-div .content h6 {
    color: #fff;
}

.banner .layout-div .content h6 {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 10px 30px;
    border: 1px solid #414141;
    border-radius: 25px;
}

.banner .layout-div .content h6 span.first {
    display: inline-block;
    color: #fff;
    background: -webkit-linear-gradient(280deg, #E2814B 40%, #6B55FF);
    background: linear-gradient(280deg, #E2814B 40%, #6B55FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin: 0;
}

.banner .layout-div .content h6 span.second {
    color: #40F0C9;
}

.banner .layout-div .content h6 span.third {
    color: #6B55FF;
}

.banner .layout-div .content h1 {
    margin: 10px 0;
}

.banner .layout-div.layout-02 ul {
    margin-bottom: 50px;
    gap: 20px;
    justify-content: center;
}

.banner .layout-div.layout-02 ul li img {
    width: 300px;
    height: 180px;
    object-fit: contain;
}

.banner .layout-div.layout-02 .content {
    text-align: center;
}

.banner:hover .layout-02 li {
    transition: .2s linear;
}

.banner:hover .layout-02 li:nth-child(1) {
    transform: translateY(20px);
}

.banner:hover .layout-02 li:nth-child(3) {
    transform: translateY(-20px);
}

.banner:hover .layout-02 li:nth-child(5) {
    transform: translateY(20px);
}

.banner .layout-div.layout-03 .right {
    transition: .2s linear;
}

.banner .layout-div.layout-03 .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner:hover .layout-03 .right {
    transform: translateX(-20px);
}

.section2 {
    padding: 50px 0;
    background: #202020;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section2::before {
    content: "";
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, #47474782 20%, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section2::after {
    content: "";
    width: 100%;
    height: 20px;
    background: linear-gradient(0deg, #47474794 30%, transparent 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.section2 .sec_left h6 {
    margin: 0;
    color: #999;
}

.section2 .sec_right {
    width: 75%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.section2 .sec_right .slick-track .slick-slide {
    margin: 0 20px;
}

.section2 .sec_right .box {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s linear;
    cursor: pointer;
}

.section2 .sec_right .box img {
    filter: brightness(0.5);
    transition: .2s linear;
}

.section2 .sec_right .box:hover img {
    filter: brightness(1);
}

.section3 {
    padding: 60px 0 150px;
    position: relative;
    z-index: 1;
}

.section3 .sec_form {
    text-align: center;
    position: relative;
    z-index: 1;
}

.section3 .sec_form::before {
    content: "";
    width: 4px;
    height: 75px;
    background: #6B55FF;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.section3 .sec_form form .form_group {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.section3 .sec_form form .form_group input {
    width: 70%;
    height: 50px;
    font-size: 22px;
    font-weight: 300;
    border: none;
    outline: none;
    box-shadow: unset;
    padding-left: 20px;
}

.section3 .sec_form form .form_group input::placeholder {
    font-size: 22px;
}

.section3 .sec_form form .form_group button {
    width: 30%;
    height: 50px;
}

.section3 .sec_inner {
    width: 100%;
    background: #6B55FF;
    border-radius: 100px;
    padding: 25px 0;
    position: absolute;
    bottom: -85px;
    z-index: 22;
}

.section3 .sec_inner::before {
    content: "";
    width: 4px;
    height: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section3 .sec_inner .sec_left {
    text-align: right;
}

.section3 .sec_inner .sec_left h3 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 15px;
    padding-right: 50px;
}

.section3 .sec_inner .sec_left h2 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding-right: 50px;
}

.section3 .sec_inner .sec_left h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #6B55FF;
    font-family: "Space Grotesk", sans-serif;
}

.section3 .sec_inner .sec_left h2 span.bg-text:before {
    background: #40F0C9;
}

.section3 .sec_inner .sec_right p {
    color: #fff;
    margin: 0;
    /* margin-left: 50px; */
    padding-left: 50px;
    /* border-left: 4px solid #fff; */
}

.section4 {
    padding: 150px 0 60px;
    border-radius: 0 0 150px 150px;
    background: #FEFEFE;
}

.section4 .box {
    border-radius: 44px;
    padding: 40px 0;
}

.section4 .box_one {
    background: #004963;
}

.section4 .box_two {
    background: #1F1F43;
}

.section4 .box_four {
    background: #591500;
}

.section4 .box_five {
    background: #323300;
}

.section4 .box .box_img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transform: translateY(0);
    transition: .2s linear;
}

.section4 .box:hover .box_img,
.section4 .box:hover .box_img {
    transform: translateY(-10px);
}

.section4 .box .box_body {
    padding: 10px 40px 0;
}

.section4 .box h6 {
    font-weight: bold;
    color: #fff;
}

.section4 .box_one h6 {
    color: #BDE9F9;
}

.section4 .box_two h6 {
    color: #AFAFE9;
}

.section4 .box_three h6 {
    color: #F8B440;
}

.section4 .box_four h6 {
    color: #CD8073;
}

.section4 .box_five h6 {
    color: #B0B15A;
}

.section4 .box p {
    color: #fff;
    font-size: 14px;
    height: 65px;
}

.section4 .box.box_three {
    background: #252525;
    margin: 25px 0;
    padding: 40px;
}

.section4 .box.box_three .box_left {
    padding-right: 0px;
}

.section4 .box.box_three .box_left ul.box_list {
    margin-top: 30px;
    background: #2C2C2C;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.section4 .box.box_three .box_left ul.box_list::before {
    content: "";
    width: 1px;
    height: 60%;
    background: linear-gradient(0deg, transparent, #545454, transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section4 .box.box_three .box_left ul.box_list li {
    width: 45%;
    margin-bottom: 30px;
}

.section4 .box.box_three .box_left ul.box_list li:nth-child(3),
.section4 .box.box_three .box_left ul.box_list li:nth-child(4) {
    margin: 0;
}

.section4 .box.box_three .box_left ul.box_list li h6 {
    font-size: 16px;
}

.section4 .box.box_three .box_left ul.box_list li p {
    margin: 0;
    font-size: 12px;
    height: 55px;
}

.section4 .box.box_three .box_left ul.box_list li p span {
    display: block;
}

.section4 .box.box_three .box_left ul.box_list li .box_item img {
    width: 27px;
    height: unset;
    object-fit: contain;
    margin: unset;
    margin-bottom: 10px;
}

.section4 .box.box_three .box_left ul.box_list li .box_item h6 {
    color: #fff;
}

.section4 .box.box_three .box_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section5 {
    background: radial-gradient(transparent, #6c55ff33 -30%, transparent);
    position: relative;
}

.section5::before,
.section5::after {
    content: "";
    width: 265px;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(2px);
    position: absolute;
    top: 0;
    z-index: 2;
}

.section5::before {
    left: 0;
}

.section5::after {
    right: 0;
}

.section5 .sec_top h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.section5 .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.section5 .sec_top :where(h2, p) {
    color: #fff;
}

.section5 .sec5_content {
    margin-top: 40px;
}

.section5 .sec5_content ul.sec5_slider {
    margin-bottom: 40px;
}

.section5 .sec5_content .box img {
    filter: brightness(0.5);
    transition: .2s linear;
    cursor: pointer;
}

.section5 .sec5_content .box img:hover {
    filter: brightness(1);
}

.section6 {
    background: url("../images/cta-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 200px;
    margin-bottom: 120px;
}

.section6 h2 {
    text-align: center;
    color: #fff;
}

.section6 h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #6B55FF;
    font-family: "Space Grotesk", sans-serif;
}

.section6 h2 span.bg-text:before {
    background: #40F0C9;
}

.section6 .combo_btn {
    margin-top: 40px;
    justify-content: center;
}

.section7 {
    /* background: #0D0D0D; */
    border-radius: 45px 45px 0 0;
    /* margin-top: 60px; */
    position: relative;
    z-index: 1;
    display: none;
}

.section7::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 45px 45px 0 0;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: -1;
}

.section7 .sec_top .sec_left :where(h2,
    h5) {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.section7 h2 span {
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
    margin-top: 20px;
    border-radius: 50px;
    padding: 5px 15px;
}

.section7 h2 span.bg-text:before {
    background: #6B55FF;
}

.section7 .sec_top .sec_left h5 {
    font-weight: 300;
    margin-bottom: 20px;
}

.section7 .sec_top .sec_right p {
    color: #fff;
}

.section7 .sec_top .sec_right p span {
    color: #D34D95;
    font-weight: bold;
    text-transform: capitalize;
}

.section7 .sec7_content {
    margin-top: 60px;
}

.section7 .sec7_content ul.sec7_slider {
    margin-bottom: 40px;
}

.section7 .sec7_content .sec_slider li.slick-slide {
    margin: 0 25px;
}

.section7 .sec7_content .sec_slider .box {
    border-radius: 23px;
    overflow: hidden;
    transition: .2s linear;
    position: relative;
    z-index: 1;
}

.section7 .sec7_content .sec_slider .box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.5) blur(0px);
    transition: .2s linear;
}

.section7 .sec7_content .sec_slider .box:hover img {
    filter: brightness(0.8) blur(5px);
}

.section7 .sec7_content .sec_slider .box a {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 30px 5px 10px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .5);
    border-radius: 7px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 1;
    transition: .4s cubic-bezier(.17, .67, 1, .49);
    transform: skew(-20deg, 0deg) translateX(120px);
}

.section7 .sec7_content .sec_slider .box:hover a {
    transform: skew(0deg, 0deg) translateX(0px);
}

.section7 .sec7_content .sec_slider .box a p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.section7 .sec7_content .sec_slider .box a p::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url("../images/external-link.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    z-index: -1;
}

.section8 {
    padding: 60px 0;
    background: #fff;
    border-radius: 0 0 60px 60px;
    position: relative;
    z-index: 1;
}

.section8 .sec_inner {
    width: 100%;
    background: #6B55FF;
    border-radius: 100px;
    padding: 30px 0;
    position: absolute;
    top: -64px;
    z-index: 22;
}

.section8 .sec_inner h2 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.section8 .sec_inner h2 span {
    padding: 5px 15px;
    color: #6B55FF;
    font-family: "Space Grotesk", sans-serif;
}

.section8 .sec_inner h2 span.bg-text:before {
    background: #40F0C9;
    border-radius: 50px;
}

.section8 .sec_content {
    position: relative;
}

.section8 .sec_content .sec_before {
    width: 70%;
    margin: 0 auto;
    z-index: -1;
}

.section8 .sec_content .sec_before img {
    width: 100%;
}

.section8 .sec_content .box {
    text-align: center;
    height: 620px;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 60px 40px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .2s linear;
    cursor: pointer;
}

.section8 .sec_content .box:hover {
    background: #000;
    box-shadow: 0 10px 0px 0px #B2B2B2;
}

.section8 .sec_content .box p.sub_heading {
    display: inline-block;
    color: #4E4E4E;
    background: #e1e1e1;
    border-radius: 7px;
    padding: 2px 10px;
    margin: 0;
    transition: .3s linear;
    transform: translateY(0px);
}

.section8 .sec_content .box:hover p.sub_heading {
    background: #313131;
}

.section8 .sec_content .box h3 {
    margin: 10px 0;
    color: #4E4E4E;
    transition: .3s linear;
    transform: translateY(0px);
}

.section8 .sec_content .box .para {
    margin: 0;
    color: #696969;
    transition: .3s linear;
    transform: translateY(0px);
}

.section8 .sec_content .box:hover p.sub_heading,
.section8 .sec_content .box:hover h3,
.section8 .sec_content .box:hover .para {
    transform: translateY(-10px);
    color: #fff;
}

.section8 .sec_content .sec_left img.left {
    position: absolute;
    left: -280px;
    bottom: 50px;
    z-index: -1;
    transition: .3s linear;
}

.section8 .sec_content .sec_left:hover img.left {
    left: -200px;
    bottom: 60px;
}

.section8 .sec_content .sec_left img.center {
    width: 282px;
    height: unset;
    transform: translateY(45px);
    transition: .3s linear;
}

.section8 .sec_content .sec_left:hover img.center {
    transform: translateY(35px);
}

.section8 .sec_content .sec_left img.right {
    position: absolute;
    right: -280px;
    bottom: -35px;
    transition: .3s linear;
}

.section8 .sec_content .sec_left:hover img.right {
    right: -200px;
    bottom: -25px;
}

.section8 .sec_content .sec_center {
    transform: translateY(-100px);
}

.section8 .sec_content .sec_center img.left {
    position: absolute;
    bottom: 50px;
    left: 150px;
    z-index: -1;
    transition: .3s linear;
}

.section8 .sec_content .sec_center:hover img.left {
    bottom: 120px;
    left: 40px;
}

.section8 .sec_content .sec_center img.right {
    width: 290px;
    height: unset;
    transform: translate(2x, -8px);
    transition: .3s linear;
}

.section8 .sec_content .sec_center:hover img.right {
    transform: translate(60px, 40px);
}

.section8 .sec_content .sec_right img.right {
    width: 277px;
    height: unset;
    transform: translate(-70px, 50px);
    transition: .3s linear;
}

.section8 .sec_content .sec_right img.right {
    transform: translate(74px, 44px);
}

.section8 .sec_content .sec_right img.left {
    position: absolute;
    right: 250px;
    bottom: 70px;
    transition: .3s linear;
    transform: rotate(-90deg);
}

.section8 .sec_content .sec_right:hover img.left {
    right: 50px;
    transform: rotate(0deg);
}

.section9 {
    background: radial-gradient(#40f0c91f, transparent);
    padding: 150px 0;
    transition: .2s linear;
    cursor: pointer;
}

.section9 .sec_content {
    position: relative;
    z-index: 1;
}


.section9 .sec_content img.icon {
    position: absolute !important;
    transition: .2s linear;
}

.section9 .sec_content .icon_1 {
    top: -130px;
    right: 300px;
}

.section9:hover .icon_1 {
    right: 320px;
}

.section9 .sec_content .icon_2 {
    left: 0px;
    top: -40px;
}

.section9:hover .icon_2 {
    left: 20px;
}

.section9 .sec_content .icon_3 {
    bottom: -10px;
    left: 0px;
}

.section9:hover .icon_3 {
    left: 20px;
}

.section9 .sec_content .icon_4 {
    right: -200px;
    top: -30px;
}

.section9:hover .icon_4 {
    right: -180px;
}

.section9 .sec_content .icon_5 {
    bottom: -100px;
    right: 100px;
}

.section9:hover .icon_5 {
    right: 180px;
}

.section9 .sec_content .sec_top {
    text-align: center;
    color: #fff;
    padding: 40px 60px;
    border: 2px dashed #7b7b7b;
    position: relative;
    z-index: 1;
}

.section9 .sec_content .sec_top::before,
.section9 .sec_content .sec_top::after {
    content: "\f111";
    color: #6B55FF;
    font-family: "font awesome 5 free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    font-size: 20px;
    transform: translateX(-50%);
    z-index: -1;
}

.section9 .sec_content .sec_top .sec_heading {
    position: absolute;
    top: -50px;
    left: -15px;
    font-size: 20px;
    color: #7b7b7b;
    font-weight: 300;
}

.section9 .sec_content .sec_top::before {
    top: -16px;
}

.section9 .sec_content .sec_top::after {
    bottom: -16px;
}

.section9 .sec_content .sec_top h5 {
    font-weight: 300;
    margin: 0;
}

.section9 .sec_content .sec_top h5 span {
    color: #FFA800;
    font-weight: 500;
}

.section9 .sec_content .sec_top h5 span~span {
    color: #40F0C9;
}

.section9 .sec_content .sec_top p {
    margin: 0;
    margin-top: 15px;
}

.section9 .combo_btn {
    justify-content: center;
    margin-top: 50px;
}

.section10 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section10::after {
    content: "";
    width: 84%;
    height: 55%;
    background: #1D1D1D;
    border-radius: 30px 0 0 30px;
    position: absolute;
    bottom: 45px;
    right: 0;
    z-index: -1;
}

.section10 .sec_left h2 {
    font-size: 41px;
    color: #fff;
    text-transform: capitalize;
}

.section10 .sec_left h2 span {
    font-size: 41px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.section10 .sec_left h2 span.bg-text:before {
    background: #6B55FF;
}

.section10 .sec_left p {
    color: #fff;
    margin: 0;
    margin-top: 30px;
}

.section10 .sec_left ul.tabs {
    margin-top: 80px;
    padding-left: 40px;
}

.section10 .sec_left ul.tabs li {
    width: 400px;
    height: 40px;
    color: #fff;
    display: flex;
    padding-left: 45px;
    position: relative;
    align-items: center;
    border-radius: 45px;
    z-index: 1;
    transition: .4s linear;
    cursor: pointer;
    overflow: hidden;
}

.section10 .sec_left ul.tabs li::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-40px);
    z-index: -1;
    transition: .4s linear;
}

.section10 .sec_left ul.tabs li img {
    position: absolute;
    left: 5px;
    z-index: -1;
    opacity: 0;
    transition: .4s linear;
}

.section10 .sec_left ul.tabs li.current::before {
    background: #6b55ff;
    transform: translateY(0px);
}

.section10 .sec_left ul.tabs li.current img {
    opacity: 1;
}

.section11 {
    padding: 40px 0;
}

.section11 .sec_left h2 {
    display: inline-block;
    color: #fff;
    font-size: 140px;
    background: -webkit-linear-gradient(180deg, #E2814B 40%, #6B55FF);
    background: linear-gradient(180deg, #E2814B 40%, #6B55FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin: 0;
    position: relative;
    z-index: 1;
}

.section11 .sec_left h2::before {
    content: "";
    width: 103px;
    height: 103px;
    background: url("../images/sec11-before.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -15px;
    left: 40%;
    transform: translateX(-50%);
    z-index: -1;
}

.section11 .sec_left h5 {
    color: #fff;
    font-weight: 100;
}

.section11 .sec_left h5 span {
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.section11 .sec_left h5 span~span {
    color: #6B55FF;
}

.section11 .sec_right p {
    margin: 20px 0;
    color: #fff;
    font-size: 25px;
}

.section11 .sec_right p span {
    color: #D34D95;
    font-weight: 600;
}

.section12 {
    background: #fff;
    border-radius: 30px;
    z-index: 1;
    position: relative;
}

.section12 .sec12_slider_one.one {
    height: 650px;
    overflow: hidden;
}

.sec12_slider_two.two {
    height: 557px;
    overflow: hidden;
}

.section12 .sec12_slider_one.three {
    height: 600px;
    overflow: hidden;
}

.section12 .sec12_slider_one.four {
    height: 680px;
    overflow: hidden;
}

.section12 .box {
    background: #E4E4E4;
    padding: 20px;
    border-radius: 12px;
}

.section12 .box .box_head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.section12 .box .box_head h6 {
    font-size: 16px;
    margin: 0;
}

.section12 .box .box_head h6 span {
    display: block;
    font-size: 12px;
    color: #797979;
    font-weight: 200;
}

.section12 .box .box_body {
    margin-top: 10px;
}

.section12 .box .box_body p {
    font-size: 14px;
    margin: 0;
}

.section13 .sec_top h5 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
}

.section13 .sec_top h2 {
    text-transform: uppercase;
    color: #fff;
    background: -webkit-linear-gradient(180deg, #6B55FF 40%, #2100ff);
    background: linear-gradient(180deg, #6B55FF 40%, #2100ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin: 0;
}

.section13 .sec_top p {
    margin: 0;
    color: #fff;
}

.section13 .sec_content {
    margin-top: 60px;
}

.section13 .sec_content .accordion .accordion-item {
    background: transparent;
    border-radius: 25px;
    border: 1px solid #7C7F80;
    margin-top: 20px;
}

.section13 .sec_content .accordion .accordion-item .accordion-header .accordion-button {
    height: 85px;
    background: transparent;
    color: #fff;
    padding: 10px 30px;
    outline: none;
    border: none;
    box-shadow: none;
    line-height: 25px;
}

.section13 .sec_content .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "+";
    background: unset;
    font-size: 50px;
    width: unset;
    height: unset;
}

.section13 .sec_content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "-";
    background: unset;
    transform: rotate(180deg);
}

.section13 .sec_content .accordion .accordion-item .accordion-collapse {
    border-top: 1px solid #7c7f80;
}

.section13 .sec_content .accordion .accordion-item .accordion-collapse .accordion-body {
    color: #fff;
    padding: 20px 30px;
}

.section14 {
    position: relative;
    z-index: 1;
}

.section14::before {
    content: "";
    width: 100%;
    height: 368px;
    background: #fff;
    border-radius: 200px;
    position: absolute;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    bottom: 0;
}

.section14 .sec_left h2 {
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 38px;
}

.section14 .sec_left h2 span~span {
    color: #6B55FF;
}

.section14 .sec_right img {
    width: 100%;
}

.section15 {
    padding: 100px 0 10px;
    position: relative;
    z-index: 1;
}

.section15 .bf_box_one p {
    color: #fff;
    margin: 20px 0;
    font-size: 14px;
}

.section15 .bf_box_two h6 {
    color: #fff;
    margin: 0;
}

.section15 .bf_box_two ul {
    margin-top: 20px;
}

.section15 .bf_box_two ul li {
    margin-bottom: 10px;
}

.section15 .bf_box_two ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 200;
}

.footer {
    padding-top: 10px;
    margin-top: 60px;
    border-top: 1px solid #ffffff3d;
}

.footer p {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
    margin: 0;
}

.footer p a {
    color: #fff;
    font-weight: 200;
}

/* End Home Page */

/* Start About Us Page */

.about-us-banner {
    padding: 150px 0 80px;
    background: url("../images/about-us/banner-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.about-us-banner h1 {
    font-weight: bold;
    margin: 20px 0;
}

.about-us-banner .combo_btn {
    margin-top: 40px;
}

.about-us-sec2 {
    padding: 60px 0 250px;
}

.about-us-sec2 .sec_top {
    text-align: center;
    color: #fff;
}

.about-us-sec2 .sec_top h2 {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-us-sec2 .sec_top h2 .bg-text {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.about-us-sec2 .sec_top h2 .bg-text:before {
    background: #6B55FF;
}

.about-us-sec2 .sec_top p {
    font-size: 22px;
    font-weight: 100;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-us-sec2 .sec_top p::after {
    content: "";
    background: url(../images/sprinkle-arrow.webp);
    background-size: contain;
    width: 38px;
    height: 45px;
    position: absolute;
    bottom: -35px;
    right: -50px;
    z-index: -1;
}

.about-us-sec2 .sec_content {
    margin-top: 40px;
}

.about-us-sec2 .sec_content .sec_box_1 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 40px 60px;
    border-radius: 100px;
    margin-bottom: 60px;
}

.about-us-sec2 .sec_content .sec_box_1 ul li {
    position: relative;
    z-index: 1;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-sec2 .sec_content .sec_box_1 ul li::before {
    content: "";
    width: 2px;
    height: 30px;
    background: #eee;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.about-us-sec2 .sec_content .sec_box_1 ul li:last-child::before {
    background: transparent;
}

.about-us-sec2 .sec_content .sec_box_1 :where(h2, p) {
    color: #fff;
    text-align: center;
}

.about-us-sec2 .sec_content .sec_box_2 {
    margin-top: 60px;
}

.about-us-sec2 .sec_content .sec_box_2 .box {
    background: #1e1c1c;
    padding: 40px;
    border-radius: 20px;
    transition: .4s linear;
    cursor: pointer;
}

.about-us-sec2 .sec_content .sec_box_2 .box:hover {
    background: #fff;
}

.about-us-sec2 .sec_content .sec_box_2 .box .box_img {
    width: 40px;
    height: 40px;
    background: #fff;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: .4s linear;
}

.about-us-sec2 .sec_content .sec_box_2 .box:hover .box_img {
    background: #6B55FF;
}

.about-us-sec2 .sec_content .sec_box_2 .box .box_img img {
    transition: .4s linear;
}

.about-us-sec2 .sec_content .sec_box_2 .box:hover img {
    transition: .4s linear;
    filter: brightness(111);
}

.about-us-sec2 .sec_content .sec_box_2 .box h6 {
    color: #fff;
    margin: 15px 0;
    transition: .4s linear;
}

.about-us-sec2 .sec_content .sec_box_2 .box:hover h6 {
    color: #585858;
}

.about-us-sec2 .sec_content .sec_box_2 .box p.scroll_block {
    color: #fff;
    margin: 0;
    height: 170px;
    transition: .4s linear;
}

.about-us-sec2 .sec_content .sec_box_2 .box:hover p.scroll_block {
    color: #585858;
}

.about-us-sec3 {
    background: #fff;
    padding: 250px 0 100px;
    border-radius: 0 0 100px 100px;
    position: relative;
    z-index: 1;
}

.about-us-sec3 .sec_before {
    width: 100%;
    position: absolute;
    top: -150px;
}

.about-us-sec3 .sec_before .container {
    padding: 50px;
    background: url("../images/about-us/sec3-before-bg.webp");
    background-size: cover;
    background-position: center;
    border-radius: 45px;
    border: 1px solid #fff;
}

.about-us-sec3 .sec_before h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.about-us-sec3 .sec_before p {
    color: #fff;
    text-align: center;
}

.about-us-sec3 .sec_before ul#counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.about-us-sec3 .sec_before ul#counter li h5 {
    font-size: 70px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.about-us-sec3 .sec_top h2 {
    text-align: center;
}

.about-us-sec3 .sec_top h2 span.bg-text {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.about-us-sec3 .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.about-us-sec3 .sec_top p {
    margin: 0;
    text-align: center;
}

.about-us-sec3 .sec_top p span.line_break {
    display: block;
}

.about-us-sec3 .sec_content {
    margin-top: 60px;
}

.about-us-sec3 .sec_content .sec_left p {
    margin: 20px 0;
}

.about-us-sec3 .sec_content .sec_left .combo_btn {
    margin-top: 40px;
}

.about-us-sec3 .sec_content .sec_left .combo_btn .btn_2 {
    border: 1px solid #666666;
    color: #666666;
}

.about-us-sec3 .sec_content .sec_right img {
    filter: drop-shadow(12px 14px 16px rgba(00, 00, 00, .5));
}

/* End About Us Page */

/* Start Hosting Page */

.hosting-banner .banner_left .combo_btn .btn_2 {
    border-color: #666666;
    color: #666666;
}

.hosting_sec2 {
    padding: 60px 0;
}

.hosting_sec2 .sec_top h2 {
    color: #fff;
    text-align: center;
}

.hosting_sec2 .sec_top h2 span.bg-text {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.hosting_sec2 .sec_top h2 span.bg-text::before {
    background: #6B55FF;
}

.hosting_sec2 .sec_top p {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 100;
    font-family: "Space Grotesk", sans-serif;
}

.hosting_sec2 .sec_content {
    margin-top: 60px;
}

.hosting_sec2 .sec_content .box {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 80px 40px;
    transform: translateY(0);
    transition: .2s linear;
    cursor: pointer;
}

.hosting_sec2 .sec_content .box:hover {
    transform: translateY(-50px);
}

.hosting_sec2 .sec_content .box h6 {
    color: #fff;
    margin: 20px 0;
}

.hosting_sec2 .sec_content .box p.scroll_block {
    color: #fff;
    margin: 0;
    height: 120px;
}

.hosting_sec3 {
    padding: 60px 0;
}

.hosting_sec3 .sec_top {
    text-align: center;
    color: #fff;
}

.hosting_sec3 .sec_top h2 span.bg-text {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.hosting_sec3 .sec_top h2 span.bg-text::before {
    background: #6B55FF;
}

.hosting_sec3 .sec_content {
    background: #fff;
    padding: 40px;
    border-radius: 100px;
    margin-top: 40px;
}

.hosting_sec3 .sec_content ul {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hosting_sec4 .sec_top {
    color: #fff;
}

.hosting_sec4 .sec_content {
    background: #fff;
    border-radius: 100px;
    margin-top: 40px;
}

.hosting_sec4 .sec_left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 80px 0;
}

.hosting_sec4 .sec_left .box h5 {
    margin: 10px 0;
}

.hosting_sec4 .sec_left .box p {
    margin: 0;
}

.hosting_sec4 .sec_right {
    position: relative;
    z-index: 1;
}

.hosting_sec4 .sec_right img {
    width: 100%;
}

.hosting_sec5 {
    padding: 60px 0 450px;
    position: relative;
    z-index: 1;
}

.hosting_sec5 .sec_top .sec_right h2 {
    color: #fff;
}

.hosting_sec5 .sec_top .sec_left img {
    width: 100%;
}

.hosting_sec5 .sec_top .sec_right h2 span.bg-text {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.hosting_sec5 .sec_top .sec_right h2 span.bg-text::before {
    background: #6B55FF;
}

.hosting_sec5 .sec_top .sec_right p.scroll_block {
    margin: 20px 0;
    color: #fff;
    height: 75px;
}

.hosting_sec5 .sec_top .sec_right ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hosting_sec5 .sec_top .sec_right ul li {
    width: 48%;
    color: #fff;
    padding-left: 25px;
    position: relative;
    z-index: 1;
}

.hosting_sec5 .sec_top .sec_right ul li::before {
    content: "";
    width: 15px;
    height: 16px;
    background: url("../images/hosting/arrow.webp");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.hosting_sec5 .sec_content {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -350px;
    left: 50%;
    transform: translateX(-50%);
}

.hosting_sec5 .sec_content .container {
    background: #000;
    border: 1px solid #fff;
    border-radius: 45px;
    padding: 50px;
}

.hosting_sec5 .sec_content h3 {
    display: inline-block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hosting_sec5 .sec_content h3::before,
.hosting_sec5 .sec_content h3::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #323232;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.hosting_sec5 .sec_content h3::before {
    left: -45px;
}

.hosting_sec5 .sec_content h3::after {
    right: -45px;
}

.hosting_sec5 .sec_content p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.hosting_sec5 .sec_content p span {
    display: block;
}

.hosting_sec5 .sec_content .sec_tabbing {
    margin-top: 40px;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0px;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs li {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff3b;
    transition: .4s linear;
    cursor: pointer;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs li h6 {
    color: #fff;
    font-size: 22px;
    text-align: left;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs li.current h6 {
    color: #6B55FF;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs li p {
    color: #AAAAAA;
    font-size: 14px;
    text-align: left;
    display: none;
}

.hosting_sec5 .sec_content .sec_tabbing .tabs li.current p {
    display: block;
}

.hosting_sec5 .sec_content .sec_tabbing .my-tabs {
    border-radius: 45px;
    overflow: hidden;
}

.hosting_sec5 .sec_content .sec_tabbing .my-tabs img {
    width: 100%;
}

.hosting_sec5 .sec_content .nav-tabs {
    border: unset;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.hosting_sec5 .sec_content .nav-tabs .nav-link {
    background: transparent;
    border: unset;
    border-bottom: 3px solid transparent;
    padding: 0;
    padding-bottom: 10px;
    color: #fff;
    font-weight: 100;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
}

.hosting_sec5 .sec_content .nav-tabs .nav-link.active {
    border-color: #6B55FF;
    color: #fff;
    font-weight: 600;
}

.hosting_sec6 {
    background: #fff;
    padding: 300px 0 60px !important;
}

/* End Hosting Page */

/* Start Plugins Page */
.plugins_sec2 {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.plugins_sec2 .sec_top h2 {
    text-align: center;
    color: #fff;
}

.plugins_sec2 .sec_top h2 span.bg-text {
    padding: 5px 13px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.plugins_sec2 .sec_top h2 span.bg-text::before {
    background: #6B55FF;
}

.plugins_sec2 .sec_top ul {
    display: flex;
    margin: 50px 0;
    gap: 100px;
}

.plugins_sec2 .sec_top ul li {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.plugins_sec2 .sec_top .combo_btn {
    justify-content: center;
}

.plugins_sec2 .sec_inner {
    width: 100%;
    background: #683FEA;
    padding: 20px 0;
    border-radius: 100px;
    position: absolute;
    bottom: -55px;
}

.plugins_sec2 .sec_inner h2 {
    text-align: center;
    color: #fff;
    margin: 0;
}

.plugins_sec2 .sec_inner h2 span {
    color: #40F0C9;
}

.plugins_sec3 {
    padding: 100px 0 80px;
    background: #fff;
    border-radius: 0 0 100px 100px;
}

.plugins_sec3 .box {
    height: 400px;
    padding: 60px 40px 0px;
    border: 1px solid #eee;
    border-radius: 40px 40px 0 0;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: .4s linear;
    margin-top: 50px;
}

.plugins_sec3 .box:hover {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .065);
}

.plugins_sec3 .box::before {
    content: "";
    width: 101%;
    height: 300px;
    background: linear-gradient(0deg, #fff 70%, transparent 100%);
    position: absolute;
    bottom: -1px;
    left: -2px;
    z-index: -1;
}

.plugins_sec3 .box span.top_badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4F4F4F;
    color: #fff;
    padding: 5px 45px;
    border-radius: 100px;
}

.plugins_sec3 .box .box_img {
    width: 120px;
    height: 120px;
    background: #fbfbfb;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: .4s linear;
}

.plugins_sec3 .box .sec_content {
    background: #fff;
    transform: translateY(0px);
    transition: .2s linear;
}

.plugins_sec3 .box:hover .sec_content {
    transform: translateY(-160px);
}

.plugins_sec3 .box h6 {
    margin: 40px 0 5px;
    transition: .4s linear;
}

.plugins_sec3 .box .box_rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s linear;
}

.plugins_sec3 .box .box_rating .reviews {
    display: flex;
    align-items: center;
}

.plugins_sec3 .box .box_rating .reviews span {
    margin-right: 5px;
}

.plugins_sec3 .box .box_rating span {
    color: #707070;
    font-size: 12px;
    transform: translateY(1px);
}

.plugins_sec3 .box .box_rating i {
    font-size: 12px;
    color: #F9B300;
}

.plugins_sec3 .box .box_rating .download span {
    margin-left: 5px;
}

.plugins_sec3 .box p {
    margin: 20px 0;
    transition: .4s linear;
}

.plugins_sec3 .box .combo_btn {
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    transition: .5s linear;
}

.plugins_sec3 .box:hover .combo_btn {
    display: block;
}

/* End Plugins Page */

/* Start AI Website Builder Page */

.ai-website-builder-banner {
    background: url("../images/ai-website-builder/banner-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 250px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ai-website-builder-banner img.banner_left,
.ai-website-builder-banner img.banner_right {
    width: 400px;
}

.ai-website-builder-banner .banner_content {
    text-align: center;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.ai-website-builder-banner .banner_content h1 {
    font-weight: bold;
    font-size: 80px;
}

.ai-website-builder-banner img.banner_icon_img {
    width: 75px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.ai-website-builder-banner .banner_content p {
    font-size: 16px;
}

.ai-website-builder-banner .banner_content p span.dynamic-word {
    width: 120px;
    position: relative;
    z-index: 1;
}

.ai-website-builder-banner .banner_content p span.dynamic-word svg {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.ai-website-builder-banner .banner_content p span.dynamic-word.view-1 svg {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.ai-website-builder-banner .banner_content p span.dynamic-word.view-2 svg {
    width: 19px;
}

.ai-website-builder-banner .banner_content p span.dynamic-word.view-3 svg,
.ai-website-builder-banner .banner_content p span.dynamic-word.view-4 svg {
    width: 15px;
}

.ai-website-builder-banner .banner_content .line_break {
    display: block;
}

.ai-website-builder-banner .banner_content .combo_btn {
    justify-content: center;
    margin-top: 30px;
}

.ai-website-builder-sec3 {
    background: #000;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec3 .sec_top {
    text-align: center;
}

.ai-website-builder-sec3 .sec_top h2 {
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec3 .sec_top h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.ai-website-builder-sec3 .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.ai-website-builder-sec3 .sec_top p {
    color: #fff;
    font-size: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 100;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec3 .sec_top p::after {
    content: "";
    background: url(../images/sprinkle-arrow.webp);
    background-size: contain;
    width: 38px;
    height: 45px;
    position: absolute;
    bottom: -35px;
    right: -55px;
    z-index: -1;
}

.ai-website-builder-sec3 .sec_form {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.ai-website-builder-sec3 .sec_form::before {
    content: "";
    width: 4px;
    height: 75px;
    background: #6B55FF;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec3 .sec_form::after {
    content: "1";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(0deg, #40F0C9, #6B55FF);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec3 .sec_form form .form_group {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.ai-website-builder-sec3 .sec_form form .form_group input {
    width: 70%;
    height: 50px;
    font-size: 22px;
    font-weight: 300;
    border: none;
    outline: none;
    box-shadow: unset;
    padding-left: 20px;
}

.ai-website-builder-sec3 .sec_form form .form_group input::placeholder {
    font-size: 22px;
}

.ai-website-builder-sec3 .sec_form form .form_group button {
    width: 30%;
    height: 50px;
}

.ai-website-builder-sec3 .sec_inner {
    margin-top: 150px;
    text-align: center;
    color: #fff;
}

.ai-website-builder-sec3 .sec_inner p {
    margin: 0;
}

.ai-website-builder-sec4 {
    background: #fff;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec4::before {
    content: "";
    width: 4px;
    height: 75px;
    background: #6B55FF;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec4::after {
    content: "2";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(0deg, #40F0C9, #6B55FF);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec4 .sec_left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 80px 0;
}

.ai-website-builder-sec4 .sec_left .box h5 {
    margin: 10px 0;
}

.ai-website-builder-sec4 .sec_left .box p {
    margin: 0;
}

.ai-website-builder-sec4 .sec_right {
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec4 .sec_right img {
    width: 100%;
}

.ai-website-builder-sec4 .sec_right video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-website-builder-sec5 {
    padding: 160px 0 420px;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec5 .sec_top :where(h2, p) {
    color: #fff;
}

.ai-website-builder-sec5 .sec_top p {
    margin: 0;
}

.ai-website-builder-sec5 .sec_content {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -270px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-website-builder-sec5 .sec_content::before {
    content: "";
    width: 4px;
    height: 75px;
    background: #6B55FF;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec5 .sec_content::after {
    content: "3";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(0deg, #40F0C9, #6B55FF);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ai-website-builder-sec5 .sec_content .container {
    background: #000;
    border: 1px solid #fff;
    border-radius: 45px;
    padding: 50px;
}

.ai-website-builder-sec5 .sec_content h3 {
    display: inline-block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec5 .sec_content h3::before,
.ai-website-builder-sec5 .sec_content h3::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #323232;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.ai-website-builder-sec5 .sec_content h3::before {
    left: -45px;
}

.ai-website-builder-sec5 .sec_content h3::after {
    right: -45px;
}

.ai-website-builder-sec5 .sec_content p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.ai-website-builder-sec5 .sec_content p span {
    display: block;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing {
    margin-top: 40px;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0px;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs li {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff3b;
    transition: .4s linear;
    cursor: pointer;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs li h6 {
    color: #fff;
    font-size: 22px;
    text-align: left;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs li.current h6 {
    color: #6B55FF;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs li p {
    color: #AAAAAA;
    font-size: 14px;
    text-align: left;
    display: none;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .tabs li.current p {
    display: block;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .my-tabs {
    border-radius: 45px;
    overflow: hidden;
}

.ai-website-builder-sec5 .sec_content .sec_tabbing .my-tabs img {
    width: 100%;
}

.ai-website-builder-sec6 {
    background: #fff;
    padding: 420px 0 60px;
    border-radius: 0 0 100px 100px;
}

.ai-website-builder-sec6 .sec_top {
    text-align: center;
}

.ai-website-builder-sec6 .sec_top p {
    margin: 0;
}

.ai-website-builder-sec6 .sec_content {
    margin-top: 60px;
    background: #F6F6F6;
    border-radius: 45px;
    padding: 50px;
}

.ai-website-builder-sec6 .sec_content .sec_left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-website-builder-sec6 .sec_content .sec_left .box h6 {
    margin: 10px 0;
}

.ai-website-builder-sec6 .sec_content .sec_right img {
    width: 100%;
}

.ai-website-builder-sec6 .combo_btn {
    justify-content: center;
    margin-top: 50px;
}

.pricing_section {
    background: #fff;
    padding: 80px 0;
}

.pricing_section .sec_top {
    text-align: center;
}

.pricing_section .sec_top h2 {
    color: #707070;
    text-transform: capitalize;
}

.pricing_section .sec_top h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.pricing_section .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.pricing_section .sec_top p {
    margin: 0;
}

.pricing_section .sec_top p span.primary_clr {
    color: #40f0c9;
}

.pricing_section .sec_top p span.line_break {
    display: block;
}

.pricing_section .sec_content {
    margin-top: 40px;
}

.pricing_section .sec_content .tabs {
    width: 700px;
    border: 1px solid #6b55ff;
    padding: 20px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pricing_section .sec_content .tabs a {
    width: 200px;
    height: 50px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s linear;
    cursor: pointer;
}

.pricing_section .sec_content .tabs a.current {
    background: #6B55FF;
    box-shadow: inset 0px 5px 15px 0px rgba(255, 255, 255, .6);
}

.pricing_section .sec_content ul {
    display: flex;
    align-items: center;
}

.pricing_section .sec_content ul li {
    width: 25%;
    height: 60px;
    font-size: 14px;
    border: 1px solid #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.pricing_section .sec_content ul li:nth-child(3) {
    border-left: 2px solid #ABB2EC;
    border-right: 2px solid #ABB2EC;
}

.pricing_section .sec_content ul li i {
    color: #6B55FF;
    font-size: 18px;
}

.pricing_section .sec_content ul li i.fa-solid.fa-xmark {
    color: #d4d5d6;
}

.pricing_section .sec_content ul li:nth-child(1) {
    justify-content: left;
}

.pricing_section .sec_content .detail_header {
    background: #FCFCFF;
}

.pricing_section .sec_content .detail_header ul li {
    font-weight: bold;
}

.pricing_section .sec_content .price_title li {
    height: 300px;
}

.pricing_section .sec_content .price_title li:nth-child(1),
.pricing_section .sec_content .price_title li:nth-child(2) {
    border-right: none;
}

.pricing_section .sec_content ul.price_title li:nth-child(3) {
    border-top: 2px solid #ABB2EC;
}

.pricing_section .sec_content ul.price_title li:nth-child(3) p {
    position: relative;
    z-index: 1;
}

.pricing_section .sec_content ul.price_title li:nth-child(3) p::before {
    content: "";
    width: 100px;
    height: 15px;
    background: url(../images/most_popular.svg);
    background-size: contain;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: -1;
}

.pricing_section .sec_content ul.last li:nth-child(3) {
    border-bottom: 2px solid #ABB2EC;
}

.pricing_section .sec_content .price_title li .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing_section .sec_content .price_title li .box h6 {
    margin: 0;
}

.pricing_section .sec_content .price_title li .box p {
    margin: 0;
    font-size: 14px;
}

.pricing_section .sec_content .price_title li .box h4 {
    margin: 0;
    margin-top: 50px;
}

.pricing_section .sec_content .price_title li .box h4 span {
    font-size: 14px;
}

.pricing_section .sec_content .price_title li .box del {
    font-size: 14px;
    color: rgba(50, 58, 69, 0.5);
}

.pricing_section .sec_content .price_title li .box .combo_btn {
    margin-top: 20px;
}

.pricing_section .sec_content .price_title li .box a.buy_btn {
    display: block;
    text-align: center;
    color: rgba(50, 58, 69, 0.5);
    font-size: 14px;
    text-decoration: underline !important;
    margin-top: 5px;
}

.ai-website-builder-sec7 {
    padding: 60px 0 60px;
}

.ai-website-builder-sec7 .container {
    background: #fff;
    padding: 100px;
    border-radius: 45px;
}

.ai-website-builder-sec7 .sec_top h2 {
    display: inline-block;
    color: #000;
    position: relative;
    z-index: 1;
}

.ai-website-builder-sec7 .sec_top h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.ai-website-builder-sec7 .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.ai-website-builder-sec7 .sec_top {
    text-align: center;
}

.ai-website-builder-sec7 .sec_content {
    margin-top: 20px;
}

.ai-website-builder-sec7 .sec_content .box {
    margin-top: 25px;
    border: 1px solid #A6A6A6;
    padding: 30px;
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-website-builder-sec7 .sec_content .box img {
    width: 25px;
}

.ai-website-builder-sec7 .sec_content .box h6 {
    margin: 10px 0;
}

.ai-website-builder-sec7 .sec_content .box p {
    margin: 0;
}

.ai-website-builder-sec7 .combo_btn {
    justify-content: center;
    margin-top: 40px;
}

.ai-website-builder-sec7 .combo_btn .btn_2 {
    border-color: #000;
    color: #000;
}

.ai-website-builder-sec7 .combo_btn .btn_2:hover {
    background-color: transparent;
}

.ai-website-builder-sec7 .combo_btn .btn_2 img {
    filter: invert(1);
}

/* End AI Website Builder Page */

/* Start AI Logo Maker Page */
.ai-logo-maker-banner {
    background: url(../images/ai-logo-maker-tool/banner-bg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 200px 0 100px;
}

.ai-logo-maker-banner .banner_left h1 {
    font-weight: bold;
}

.ai-logo-maker-banner .banner_left p {
    margin: 0;
}

.ai-logo-maker-banner .banner_left p span {
    color: #E87953;
}

.ai-logo-maker-banner .banner_left ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 30px;
}

.ai-logo-maker-banner .banner_left ul li {
    padding-left: 20px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.ai-logo-maker-banner .banner_left ul li::before {
    content: "";
    width: 15px;
    height: 16px;
    background: url("../images/ai-logo-maker-tool/check.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.ai-logo-maker-banner .banner_left form {
    display: inline-flex;
    background: #202020;
    box-shadow: inset 0 0 10px 2px rgba(255, 255, 255, .6);
    border-radius: 50px;
    padding: 2px;
    position: relative;
    z-index: 1;
}

.ai-logo-maker-banner .banner_left form::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../images/ai-logo-maker-tool/search-icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.ai-logo-maker-banner .banner_left form input {
    margin-left: 50px;
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
}

.ai-logo-maker-banner .banner_left form input::placeholder {
    color: #fff;
}

.ai-logo-maker-banner .banner_right {
    text-align: center;
}

.ai-logo-maker-sec2 .sec_left h2 span.bg-text {
    padding: 5px 13px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.ai-logo-maker-sec2 .sec_left h2 {
    color: #fff;
}

.ai-logo-maker-sec2 .sec_left h2 span.bg-text:before {
    background: #6B55FF;
}

.ai-logo-maker-sec2 .sec_left h2 .line_break {
    display: block;
}

.ai-logo-maker-sec2 .sec_left .link {
    margin: 30px 0;
    color: #fff;
    margin-bottom: 0;
}

.ai-logo-maker-sec2 .sec_left .link h6 {
    color: #fff;
}

.ai-logo-maker-sec2 .sec_left .link a {
    display: block;
    color: #fff;
}

.ai-logo-maker-sec2 .sec_left ul#counter {
    display: flex;
    align-items: center;
}

.ai-logo-maker-sec2 .sec_left ul#counter li {
    width: 22%;
    text-align: center;
    border-right: 2px solid #232323;
}

.ai-logo-maker-sec2 .sec_left ul#counter li:last-child {
    border: none;
}

.ai-logo-maker-sec2 .sec_left ul#counter li h5 {
    color: #FFA800;
}

.ai-logo-maker-sec2 .sec_left ul#counter li p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

.ai-logo-maker-sec3 {
    background: #fff;
    border-radius: 100px;
}

.ai-logo-maker-sec3 .sec_top {
    text-align: center;
}

.ai-logo-maker-sec3 .sec_top h2 span {
    padding: 5px 13px;
    border-radius: 50px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.ai-logo-maker-sec3 .sec_top h2 span::before {
    background: #6B55FF;
}

.ai-logo-maker-sec3 .sec_content {
    margin-top: 40px;
}

.ai-logo-maker-sec3 .sec_content .box {
    padding: 40px;
    border-radius: 100px;
}

.ai-logo-maker-sec3 .sec_content .box_2,
.ai-logo-maker-sec3 .sec_content .box_4 {
    margin: 20px 0;
}

.ai-logo-maker-sec3 .sec_content .box.box_4 {
    margin-bottom: 0;
}

.ai-logo-maker-sec3 .sec_content .box_1,
.ai-logo-maker-sec3 .sec_content .box_3 {
    background: #E7E7E7;
}

.ai-logo-maker-sec3 .sec_content .box .sec_left {
    text-align: center;
}

.ai-logo-maker-sec3 .sec_content .box .sec_left img {
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, .3));
}

.ai-logo-maker-sec3 .sec_content .box .sec_right h6 {
    color: #194B84;
    font-weight: bold;
    margin: 0;
}

.ai-logo-maker-sec3 .sec_content .box_2 .sec_right h6 {
    color: #F7941D;
}

.ai-logo-maker-sec3 .sec_content .box_3 .sec_right h6 {
    color: #6B55FF;
}

.ai-logo-maker-sec3 .sec_content .box_4 .sec_right h6 {
    color: #EC6A5A;
}

.ai-logo-maker-sec3 .sec_content .box .sec_right h5 {
    font-weight: bold;
    margin: 15px 0;
}

.ai-logo-maker-sec3 .sec_content .box .sec_right p {
    margin: 0;
}

.ai-logo-maker-sec3 .sec_content .box .sec_right .combo_btn {
    margin-top: 20px;
}

.ai-logo-maker-sec3 .sec_content .box .sec_right .combo_btn .btn_2 {
    border-color: #C1C1C1;
    color: #666666;
}

/* End AI Logo Maker Page */

/* Start Reviews Page */
.reviews-banner {
    background: url(../images/ai-logo-maker-tool/banner-bg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 150px 0 40px;
}

.reviews-banner .banner_left h1 {
    font-weight: bold;
}

.reviews-banner .banner_left p {
    margin: 0;
}

.reviews-banner .banner_left p span {
    color: #E87953;
}

/* End Reviews Page */

/* Start Contact Us Page */
.contact-us-sec2 {
    background: #fff;
    padding: 60px 0;
}

.contact-us-sec2 .sec_top {
    text-align: center;
}

.contact-us-sec2 .sec_top h2 {
    color: #000;
}

.contact-us-sec2 .sec_top h2 span.bg-text {
    padding: 5px 13px;
    border-radius: 50px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.contact-us-sec2 .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.contact-us-sec2 .sec_content {
    margin-top: 40px;
}

.contact-us-sec2 .sec_content form .form_group {
    margin-top: 30px;
}

.contact-us-sec2 .sec_content form .form_group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-us-sec2 .sec_content form .form_group input,
.contact-us-sec2 .sec_content form .form_group textarea {
    width: 100%;
    height: 50px;
    padding-left: 25px;
    box-shadow: inset 0 0 15px 0px #D3D3D3;
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.contact-us-sec2 .sec_content form .form_group textarea {
    height: 120px;
    resize: none;
    padding-top: 15px;
    font-size: 14px;
}

.contact-us-sec2 .sec_content form .form_group input::placeholder,
.contact-us-sec2 .sec_content form .form_group textarea::placeholder {
    color: #A0A0A0;
}

.contact-us-sec2 .sec_content form .form_group ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-us-sec2 .sec_content form .form_group ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us-sec2 .sec_content form .form_group ul li input {
    width: 20px;
    height: 20px;
}

.contact-us-sec2 .sec_content form .form_group ul li label {
    font-size: 12px;
    margin: 0;
}

/* End Contact Us Page */

/* Start Terms And Privacy */

.terms-privacy-banner {
    background: url("../images/ai-logo-maker-tool/banner-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 200px 0 100px;
}

.terms-privacy-content {
    background: #fff;
}

.terms-privacy-content ul li {
    padding-left: 15px;
    position: relative;
    z-index: 1;
}

.terms-privacy-content ul li::before {
    content: "\f111";
    color: #000;
    font-family: "font awesome 5 free";
    font-weight: 900;
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 6px;
    z-index: -1;
}

/* End Terms And Privacy */

.our_people {
    background: #6b55ff;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}

.our_people::after {
    content: "";
    width: 100%;
    height: 100px;
    background: #6b55ff;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: -1;
}

.our_people .sec_left h2 {
    color: #fff;
}

.our_people .sec_left h2 span.typed {
    color: #40f0c9;
}

.our_people .sec_right p {
    margin: 0;
    color: #fff;
}

.our_people .sec_content {
    margin-top: 60px;
}

.our_people .sec_content .box {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.our_people .sec_content .box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our_people .sec_content .box .content {
    width: 100%;
    height: 100%;
    background: #0000000f;
    text-align: center;
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our_people .sec_content .box .content h6 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    /* background: #6b55ff; */
    padding: 5px 10px;
    border-radius: 20px;
}

.our_people .sec_content .box .content h2 {
    line-height: 50px;
    color: #fff;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.our_people .sec_content .box .content h2 img {
    width: 320px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: 56%;
    transform: translateX(-50%);
    bottom: -220px;
    z-index: 2;
}

.our_people .sec_content .box .content .combo_btn {
    width: 100%;
    height: 70px;
    background: #6b55ff3b;
    position: absolute;
    left: 0;
    bottom: 0;
    justify-content: center;
}

.our_people .sec_content .box .content .combo_btn a.link_btn {
    display: block;
    color: #fff;
}

.our_people .sec_content .box .content .combo_btn a.link_btn img {
    margin-left: 10px;
}

.startups_sec {
    background: #fff;
    padding: 80px 0;
}

.startups_sec .sec_top h2 span {
    padding: 5px 15px;
    border-radius: 50px;
    color: #40F0C9;
    font-family: "Space Grotesk", sans-serif;
}

.startups_sec .sec_top h2 span.bg-text:before {
    background: #6B55FF;
}

.startups_sec .sec_content {
    margin-top: 30px;
}

.startups_sec .sec_content .box {
    height: 500px;
    margin-top: 25px;
}

.startups_sec .sec_content .box h5 {
    margin: 20px 0 20px;
}