@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
    --primary-light-bg: #f4f4f4;
    --secondary-light-bg: #f0d9c3;
    --primary-bg: #000000;
    --secondary-bg: #29862d;
    --secondary-bg-dark: #16bb58;
    --primary-dark-bg: #e20e1d;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1170px;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    list-style: none;
    text-decoration: none;
}
img {
    /*  width: 100%;*/
}
/* ============   Top Bar css start==========*/
.topbar {
    background: var(--primary-light-bg);
}
.top-bar-support {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-support a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}
.top-bar {
    display: flex;
    justify-content: end;
}
.top-bar-dropdown {
    position: relative;
}
.dropdown-btn {
    background-color: unset;
    border: unset;
    padding: 6px 15px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #000000;
}
.dropdown-btn i {
    margin-left: 5px;
    font-size: 12px;
}
.dropdown-menus {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 0px solid #ccc;
    border-radius: 5px;
    width: 200px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 9999;
}
.top-bar-dropdown.account .dropdown-menus {
    width: 200px;
}
.top-bar-dropdown .dropdown-menus.open {
    display: block;
}
.dropdown-menus li {
    padding: 8px 15px;
    cursor: pointer;
}
.topbar .dropdown-menus li a {
    font-size: 15px;
    color: #000;
}
.topbar .dropdown-menus li:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
}
@media (max-width: 767px) {
    .top-bar-dropdown .dropdown-btn {
        display: inline-block;
        width: 120px;
        text-align: left;
    }
    .top-bar-dropdown.open .dropdown-menus {
        display: block;
    }
}
/* ============   Top Bar css end==========*/
.header {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 999;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 12px #eee;
}
.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.navbar .logo img {
    width: 150px;
}
@media (min-width: 1200px) {
    .navbar ul {
        display: flex;
        list-style: none;
    }
    .navbar ul li {
        position: relative;
        margin: 0 10px;
    }
    .navbar ul li a {
        color: #000000;
        text-decoration: none;
        padding: 10px 15px;
        display: block;
        transition: background 0.3s;
    }
    .navbar ul li > a i {
        font-size: 8px;
    }
    .navbar ul > li.dropdown > .dropdown_menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        display: none;
        min-width: 220px;
        border-radius: 5px;
        z-index: 1;
        border: 1px solid #fff;
        padding: 10px;
        transition: all 0.4s;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    }
    .navbar ul > li.dropdown:hover > .dropdown_menu {
        display: block;
    }
    .navbar ul li.dropdown .dropdown_menu > li {
        position: relative;
        line-height: 15px;
        /* margin-left: 20px; */
        margin: 0;
    }
    .navbar ul li.dropdown .dropdown_menu a {
        padding: 10px;
        color: #000;
        white-space: nowrap;
        transition: all 0.4s;
        font-size: 15px;
    }
    .navbar ul li.dropdown .dropdown_menu li.dropdown > a::before {
        content: "\F285";
        font-family: bootstrap-icons;
        font-size: 10px;
        margin-inline-end: 5px;
        font-weight: bold;
    }
    .navbar ul li.dropdown .dropdown_menu a:hover {
        color: var(--secondary-bg);
    }
    .navbar ul li.dropdown .dropdown_menu li.dropdown .dropdown_menu {
        display: none;
        border: 0px solid #8a8a8a;
        position: absolute;
        left: 100%;
        transform: translateX(0%);
        top: 6px;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    }
    .navbar ul li.dropdown .dropdown_menu li.dropdown:hover .dropdown_menu {
        display: block;
    }
    .navbar .right-icons {
        display: flex;
        align-items: center;
    }
    .navbar .right-icons a {
        color: #fff;
        margin-left: 15px;
        font-size: 20px;
        text-decoration: none;
    }
    .navbar .right_nav_btn a {
        background: var(--secondary-bg);
        border-radius: 5px;
        color: #ffffff;
        font-weight: 500;
        transition: all 0.4s;
    }
    .right_nav_btn a:hover {
        background: var(--secondary-bg-dark);
    }
    .checkout_btn a {
        padding: 8px 15px !important;
        background: var(--primary-light-bg);
        border-radius: 100%;
        line-height: 30px;
    }
    .checkout_btn a i {
        font-size: 18px !important;
        color: #000;
    }
    .nav-toggle {
        display: none;
    }
}
@media (max-width: 1199px) {
    .nav-toggle {
        display: block;
        width: fit-content;
        border: 0;
        outline: unset;
        box-shadow: unset;
        color: #000000;
        font-size: 25px;
        cursor: pointer;
        background: transparent;
    }
    .nav-toggle.navmobile-opened i:before {
        content: "\F62A";
    }
    .header .navbar .nav {
        position: fixed;
        width: 285px;
        height: 100vh;
        overflow: auto;
        background: #000;
        left: -100%;
        top: 0;
        transition: all 0.3s;
    }
    .header .navbar .nav.active {
        left: 0;
    }
    body:before {
        content: "";
        display: block;
        background: #d7d7d7ab;
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
    }
    body.navmobile-opened:before {
        opacity: 1;
        visibility: visible;
    }
    /*  nav bar mobile css here */
    .header .navbar .nav {
        background: #fff;
    }
    .header .navbar .nav > ul {
        width: 100%;
        padding: 20px;
    }
    .header .navbar .nav > ul > li {
        line-height: 30px;
        border: 1px solid #d0d0d0;
        padding: 5px 15px;
        border-radius: 12px;
    }
    .header .navbar .nav > ul > li + li {
        margin-top: 10px;
    }
    .header .navbar .nav > ul > li > a {
        color: #373737;
        justify-content: space-between;
        display: flex;
    }
    .header .navbar .nav ul li a:hover {
        color: var(--secondary-bg-dark);
    }
    .header .navbar .nav .dropdown_menu {
        display: none;
    }
    .header .navbar .nav .dropdown_menu {
        padding-inline-start: 10px;
    }
    .header .navbar .nav .dropdown_menu .dropdown > a:after {
        content: "\F285";
        font-family: bootstrap-icons;
        font-size: 10px;
        margin-inline-end: 5px;
        font-weight: bold;
        right: 0;
        position: absolute;
    }
    .header .navbar .nav .dropdown_menu li a {
        color: #373737;
        display: block;
        padding: 5px 0;
    }
    .header .navbar .nav .dropdown_menu > li + li {
        border-top: 1px dashed #d0d0d0;
    }
    .header .navbar .nav ul li.dropdown.dropdown_opened > a {
        color: var(--secondary-bg-dark);
    }
    .header .navbar .nav ul > li.dropdown > a > i {
        transform: rotate(0deg);
        transition: all 0.5s;
    }
    .header .navbar .nav ul > li.dropdown.dropdown_opened > a > i {
        transform: rotate(-180deg);
    }
    .header .navbar .nav ul > li.dropdown li.dropdown > a:after {
        transform: rotate(90deg);
        transition: all 0.5s;
    }
    .header
        .navbar
        .nav
        ul
        > li.dropdown.dropdown_opened
        li.dropdown.dropdown_opened
        > a:after {
        transform: rotate(-90deg);
        transition: all 0.5s;
    }
}
/*  =============heading css start=============*/
.banner-content h1 {
    font-size: 25px;
    font-weight: 600;
}
.section-title h2 {
    font-size: 25px;
    font-weight: 600;
    color: #0c0046;
}
.theme-color {
    color: var(--secondary-bg-dark);
}
.bg1 {
    background: var(--primary-light-bg);
}
.bg2 {
    background: #fff2e6;
}
.bg-white {
    background: #fff;
}
.fit-content {
    width: fit-content;
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 40px;
    }
    .section-title h2 {
        font-size: 34px;
        font-weight: 500;
    }
}
/*  =============heading css start=============*/
/*  =============button css start=============*/
.btn-01 {
    font-size: 15px;
    border: 1px solid var(--secondary-bg);
    padding: 12px 20px;
    border-radius: 5px;
    background: var(--secondary-bg);
    color: #ffffff;
    font-weight: 600;
    display: block;
    width: fit-content;
    transition: all 0.4s;
}
.btn-01:hover {
    background: var(--secondary-bg-dark);
}
.btn-02 {
    font-size: 15px;
    border: 1px solid #000;
    padding: 12px 15px;
    border-radius: 5px;
    background: #fff;
    color: #000000;
    font-weight: 600;
    transition: all 0.4s;
    display: block;
    width: fit-content;
}
.btn-02:hover {
    background: var(--secondary-bg);
    color: #ffffff;
    border: 1px solid var(--secondary-bg);
}
/*  =============button css end=============*/
/*  =============banner css start=============*/
.home.banner {
    padding: 100px 0px 60px 0px;
    /*  background-image: url('../images/banner_img.png');*/
    background-position: center;
    background-repeat: repeat;
    background-color: var(--primary-light-bg);
}
.banner-two {
    padding: 100px 0px 60px 0px;
    /* background-image: url('../images/banner_img2.png'); */
    background-position: center;
    background-repeat: repeat;
    background-color: var(--primary-light-bg);
}

.banner-slider {
    padding: 100px 0px 60px 0px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background: antiquewhite;
}

.banner-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Prevent extra space */
}

.slide {
    flex: 0 0 100%; /* Each slide takes exactly 100% of the width */
    box-sizing: border-box; /* Include padding/border in width */
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination .dot.active {
    background-color: #007bff; /* Active color */
}

.contact-us {
    padding: 100px 0px 60px 0px;
}
.banner_list {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.banner_list li {
    width: fit-content;
}
.banner_list li span {
    font-size: 14px;
    font-weight: 600;
}
.section_gap {
    padding: 60px 0px;
}
.section-title {
    text-align: center;
}
.gap-bottom {
    margin-bottom: 25px;
}
@media (max-width: 480px) {
    .home.banner {
        padding: 90px 0px 60px 0px;
    }
}
.domain_registration {
    background: var(--primary-light-bg);
}
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input {
    width: 100%;
    padding: 14px;
    border: unset;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
    position: relative;
}
.search_buttons {
    position: absolute;
    right: 10px;
}
.search_buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search_buttons .search-btn {
    color: #ffffff;
    border-radius: 5px;
    background: var(--secondary-bg);
    padding: 6px 12px;
    border: unset;
}
.search_buttons .search-btn:hover {
    background: var(--secondary-bg-dark);
}
.search_buttons .transfer-btn {
    color: #000;
    border-radius: 5px;
    border: 1px solid var(--secondary-bg);
    transition: all 0.4s;
    padding: 5px 12px;
    background: unset;
}
.search_buttons .transfer-btn:hover {
    color: #ffffff;
    background: var(--secondary-bg);
}
.domain_list ul {
    display: flex;
    align-items: stretch;
    gap: 15px;
}
.domain_list ul li {
    width: 19%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
.domain_list ul li img {
    width: 65px;
}
.domain_list ul li label {
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 699px) {
    .domain_list ul li {
        width: 25%;
    }
}
@media (max-width: 480px) {
    .input-container {
        position: unset;
        display: unset !important;
    }
    .search_buttons {
        position: unset;
        margin-top: 15px;
    }
    .search_buttons .search-btn {
        padding: 12px;
    }
    .search_buttons .transfer-btn {
        padding: 11px;
    }
    .domain_list ul {
        display: flex;
        flex-wrap: wrap;
    }
    .domain_list ul li {
        width: 47%;
    }
}
.section_content .title {
    font-size: 15px;
    color: var(--secondary-bg);
    font-weight: 500;
    padding: 5px 10px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
    width: fit-content;
}
.section_content h2 {
    font-size: 35px;
    font-weight: 600;
}
.section-title p,
.section_content p {
    font-size: 15px;
}
ul.checks li {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 35px;
    font-size: 16px;
}
ul.checks li::before {
    content: "\F285";
    font-family: bootstrap-icons;
    font-size: 10px;
    margin-inline-end: 5px;
    font-weight: bold;
    background: var(--secondary-bg);
    width: 25px;
    height: 25px;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    line-height: 25px;
    color: #fff;
}
@media (max-width: 480px) {
    ul.checks li {
        align-items: start;
        line-height: 20px;
        margin-bottom: 10px;
        font-size: 15px;
    }
    ul.checks li::before {
        margin-inline-end: 7px;
        max-width: 25px;
        min-width: 25px;
        height: 25px;
        justify-content: center;
        display: flex;
        border-radius: 100%;
        line-height: 25px;
    }
}
.feature-style-two {
    padding: 10px 15px;
    border: 1px solid var(--primary-bg);
    border-radius: 12px;
}
.feature-style-two h5 {
    font-size: 18px;
    margin: 0;
}
.google_feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.google_feature:last-child {
    margin-bottom: 0px;
}
.google_feature .content h6 {
    font-size: 20px;
    font-weight: 600;
}
.google_feature .content p {
    font-size: 15px;
}
.contact-form {
    padding: 30px;
    background: var(--secondary-light-bg);
    border-radius: 12px;
}
.contact-form h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-form .input-form {
    display: block;
    padding: 8px 15px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d9d9d9;
    width: 100%;
}
.contact-form .input-form:focus {
    outline: unset;
}
.contact-form .btn-01 {
    padding: 12px 50px;
}
.domain-search-form {
    position: relative;
}
.domain-search-form .input-form {
    border: 1px solid var(--secondary-bg);
    background: #fff;
    height: 60px;
    padding: 15px 25px;
    width: 100%;
    color: #000;
    outline: unset;
    border-radius: 12px;
}
.domain-search-form .btn-02 {
    position: absolute;
    top: 6px;
    right: 6px;
}
@media (max-width: 575px) {
    .domain-search-form {
        padding: 10px;
        padding-top: 0;
    }
    .domain-search-form .input-form {
        padding: 10px;
    }
    .domain-search-form .btn-02 {
        position: unset;
        width: 100%;
        margin-top: 15px;
    }
}
.domain-card .domain-name {
    padding: 20px;
    box-shadow: rgba(50, 50, 93, 0.17) 0px 13px 17px 0px,
        rgba(0, 0, 0, 0) 0px 4px 10px 0px;
}
.domain-card .domain-name {
    font-size: 22px;
    margin: 0;
    line-height: 1;
    text-align: center;
    color: #717171;
    font-weight: 600;
    transition: all 0.4s;
    border: 1px solid #fff;
    border-radius: 12px 12px 0px 0px;
    border-bottom: 0px;
}
.domain-card:hover .domain-name {
    border: 1px solid var(--secondary-bg);
    border-radius: 12px 12px 0px 0px;
    box-shadow: rgba(17, 220, 98, 0.12) 0px 13px 17px 0px,
        rgba(17, 220, 98, 0.27) 0px 4px 10px 0px;
    border-bottom: 0px;
}
.domain-card .domain-price {
    padding: 20px;
    background: var(--primary-bg);
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 0px 0px 12px 12px;
}
.domain-trasfer-form .domain-search-form {
    display: flex;
    gap: 1%;
    padding: 0;
}
.domain-trasfer-form .domain-search-form .search-bar {
    width: 75%;
}
.domain-trasfer-form .domain-search-form .select {
    width: 24%;
}
/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
    padding: 20px;
    position: relative;
    box-shadow: 0 0 5px #e1e1e1;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
}
.sunrise-form .labels {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    width: 100%;
}
.sunrise-form .smd-info {
    position: absolute;
    right: 20px;
    top: 6px;
}
.sunrise-form .smd-info .tooltip-txt {
    position: relative;
    cursor: help;
    color: var(--secondary-bg-dark);
    font-weight: 500;
    font-size: 15px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info {
    display: none;
    padding: 15px;
    z-index: 5;
    cursor: default;
    background: #272727;
    color: #ededed;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    top: 25px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
    width: 635px;
    right: 2px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
    background: url("../images/up_arrow.png") 0 0 no-repeat;
    right: 29px;
    width: 22px;
    height: 12px;
    position: absolute;
    top: -10px;
    display: block;
}
.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
    display: block;
}
.sunrise-form .smd-info .tooltip-txt + .tooltip-txt {
    cursor: pointer;
}
@media (max-width: 991px) {
    .sunrise-form .smd-info {
        display: none;
    }
}
.sunrise-form .input {
    width: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 15px;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
}
.history_card {
    height: 100%;
}
.history_card .heading {
    position: relative;
}
.history_card .heading::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff2e6;
}
.history_card .heading {
    padding: 20px;
    border: 0px;
    border-radius: 12px !important;
    min-height: 300px;
}
.history_card .years {
    border-radius: 12px;
    padding: 10px 35px;
    width: fit-content;
    margin: auto;
}
/*  =============banner css end=============*/
/*  =============plan css start=============*/
.plan-card-one {
    padding: 20px;
    border: 1px solid var(--secondary-bg-dark);
    border-radius: 12px;
    height: 100%;
}
.plan_icon {
    background: var(--primary-bg);
    padding: 15px;
    border-radius: 100%;
    width: fit-content;
    margin: auto;
}
.plan_icon img {
    width: 30px;
}
.plan-card-one h3 {
    font-size: 25px;
    font-weight: 600;
    margin-top: 20px;
}
.plan-card-one span {
    font-size: 12px;
    font-weight: 400;
}
.plan_list li {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    line-height: 20px;
    margin-bottom: 10px;
}
.plan_list.check li::before {
    content: "\F231";
    font-family: bootstrap-icons;
    font-size: 13px;
    margin-inline-end: 5px;
    font-weight: bold;
    color: var(--secondary-bg);
    background: unset;
}
.plan-card-one .customborder {
    border-top: 1px solid #e3e3e3 !important;
    margin: 10px 0px;
}
.price .text {
    font-size: 18px;
}
.price .price_value {
    font-size: 38px;
    font-weight: 600;
    color: #120359;
}
.price .price_value sup,
.price .price_value sub {
    color: #262626;
    font-size: 16px;
}
.plan-card-one .btn-01 {
    padding: 12px 30px;
}
/*  =============plan css end=============*/
/*  =============feature-style css start=============*/
.feature-style-one {
    padding: 20px;
    border: 1px solid var(--secondary-bg);
    border-radius: 12px;
    height: 100%;
}
.feature-style-one .icon i {
    font-size: 40px;
    color: var(--secondary-bg);
}
.feature-style-one h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 10px 0px;
}
.feature-style-one p {
    font-size: 15px;
    font-weight: 400;
}
.feature-style-two {
    padding: 8px;
    border: 1px solid var(--primary-bg);
    border-radius: 12px;
    background: #fff;
    height: 100%;
}
.feature-style-two .icon i {
    font-size: 30px;
    color: var(--secondary-bg);
}
.feature-style-two h4 {
    font-size: 16px;
    font-weight: 500;
    /*  margin: 10px 0px;*/
}
.feature-style-three {
    padding: 20px;
    border: 1px solid var(--secondary-bg);
    border-radius: 12px;
    background: #fff;
    position: relative;
    height: 100%;
}
.feature_icon {
    margin-bottom: 10px;
}
.feature_icon img {
    max-width: 70px;
    border-bottom: 2px solid var(--secondary-bg-dark);
    padding-bottom: 5px;
}
.feature-style-three h5 {
    font-size: 20px;
    margin-top: 5px;
}
.feature-style-three p {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}
.feature-style-four {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.feature-style-four li {
    padding: 8px;
    border: 1px solid var(--primary-bg);
    border-radius: 12px;
    background: #fff;
    height: 100%;
    transition: all 0.4s;
    width: 32%;
    margin-bottom: 10px;
}
.feature-style-four li:hover {
    background: var(--primary-light-bg);
    border: 1px solid var(--primary-light-bg);
}
.feature-style-four li .icon i {
    font-size: 30px;
    color: var(--secondary-bg);
}
.feature-style-four li h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 767px) {
    .feature-style-four li {
        width: 48%;
    }
}
@media (max-width: 480px) {
    .feature-style-four li {
        width: 100%;
    }
}
.feature-style-one.card {
    box-shadow: rgb(218, 239, 255) 0px 2px 8px 0px,
        rgb(218, 239, 255) 0px 0px 8px 0px;
    background: #daefff;
    padding: 10px 20px;
    transition: all 0.4s;
}
.feature-style-one.card .icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    transform: scale(1);
}
.feature-style-one.card:hover .icon {
    transform: scale(1.05);
}
.feature-style-one.card .icon .imagees {
    padding: 10px;
    border-radius: 12px;
    background: var(--primary-bg);
    width: 50px;
    height: 50px;
}
.feature-style-one.card .icon i {
    font-size: 30px;
    color: var(--secondary-bg);
    color: #daefff;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}
/*  =============feature-style css end=============*/
/*  =============tabbing css start=============*/
.tab-section {
    padding: 40px 0;
}
.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tab-btn {
    padding: 10px 15px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.tab-btn.active {
    background-color: var(--primary-bg);
    color: #fff;
}
.tab-content .tab-pane {
    display: none;
}
.tab-content .tab-pane.active {
    display: block;
    background: var(--primary-light-bg);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
}
.feature-style-three.tabs-img img {
    max-width: 100% !important;
}
.feature-style-three.tabs-img h5 {
    font-size: 17px;
}
.tab-section .section-title h4 {
    font-size: 19px;
}
.tab-section .feature-style-two h5 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
.tab-section .feature-style-one {
    background: #fff;
    padding: 5px;
}
.tab-section .feature-style-one h4 {
    font-size: 15px;
}
.tab-section .feature-style-one p {
    font-size: 13px;
}
/*  =============tabbing css end=============*/
/*  =============testimonial css start=============*/
.testimonial-card {
    padding: 20px;
    border: 1px solid var(--primary-bg);
    border-radius: 12px;
}
.about_client {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about_client .client_text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.about_client .client_text img {
    width: 70px;
    border-radius: 100%;
}
.about_client .client_text .name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.about_client .client_text .post {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}
.testimonial-card .review {
    font-size: 15px;
    color: #000;
    margin: 15px 0px;
    display: block;
}
.testimonial-card ul {
    display: flex !important;
    gap: 2px;
}
.testimonial-card ul li i {
    color: #f9a453;
}
.about_client i {
    font-size: 30px;
    color: var(--secondary-bg);
}
.swiper-pagination {
    bottom: -5px !important;
    left: 0;
    width: 100%;
    position: relative !important;
}
.swiper-pagination-bullet-active {
    background: var(--secondary-bg);
}
/*  =============testimonial css end=============*/
/*  =============swipe-slide css start=============*/
/*  =============swipe-slide css end=============*/
.slider-container {
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    position: relative;
}
.slider-container .slider {
    display: flex;
    gap: 0;
    animation: scroll 20s linear infinite;
    align-items: center;
}
.slider-container .slider li {
    flex: 0 0 20%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.slider-container .slider li img {
    max-width: 115px;
    min-width: 115px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/*  =============accordion css start=============*/
.accordion {
    background: transparent;
    padding: 20px;
    margin: 0;
    list-style: none;
}
.accordion li {
    list-style: none;
    border-radius: 5px;
    border: 1px solid var(--primary-light-bg);
}
.accordion li + li {
    margin-top: 15px;
}
.accordion li > a {
    font-size: 15px;
    font-weight: 500;
    color: #4b4b4b;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
}
.accordion li > a > span {
    display: contents;
}
.accordion li.active > a,
.accordion li.active > a:hover,
.accordion li.active > a:focus {
    color: #353535;
    background: var(--primary-light-bg);
    border-radius: 0px;
}
.accordion li > a::after {
    content: "+";
    width: 30px;
    height: 30px;
    display: flex;
    background: var(--secondary-bg-dark);
    color: #353535;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin-inline-start: auto;
    border-radius: 5px;
}
.accordion li.active > a:after {
    content: "-";
    font-size: 22px;
}
.accordion li p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #4b4b4b;
    display: none;
    border-radius: 0px 0px 5px 5px;
    margin: 0;
}
.accordion li p a {
    display: contents;
    color: var(--secondary-bg-dark);
    text-decoration: underline !important;
    cursor: pointer;
}
/*  =============accordion css start=============*/
/*  =============footer css start=============*/
.footer_main {
    background: var(--primary-light-bg);
    padding: 10px 0px;
}
.footer_top {
    padding: 15px 20px;
    border-radius: 12px;
    background: #ffffff;
}
.footer_top h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer_top p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.footer_card {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-footer .social_icon ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-footer .social_icon ul li {
    font-size: 20px;
    transition: all 0.4s;
}
.logo-footer .social_icon ul li i {
    font-size: 20px;
    color: #535353;
}
.logo-footer .social_icon ul li:hover i {
    color: var(--secondary-bg-dark);
}
.footer_menu_item ul li {
    line-height: 30px;
}
.footer_menu_item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #535353;
}
.footer_menu_item ul li a {
    color: #535353;
    display: block;
    transition: all 0.4s;
}
.footer_menu_item ul li a:before {
    content: "\F285";
    font-family: bootstrap-icons;
    font-size: 10px;
    margin-inline-end: 5px;
    font-weight: bold;
}
.footer_menu_item ul li a:hover {
    color: #000000;
}
.address {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.address .icon i {
    color: #535353;
}
.address span {
    color: #535353;
}
.footer_menu_item .address:last-child {
    margin-bottom: 0px;
}
.footer_bottom {
    background-color: #e1e1e1;
    padding: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #535353;
    font-size: 14px;
}
@media (max-width: 480px) {
    .footer_card {
        display: unset;
    }
    .footer_card img {
        width: 140px;
    }
}
/*  =============footer css end=============*/
/* ----------------------------------------------------------------
    05. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
}
.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0) 80%
    );
}
.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.scroll-top:hover {
    background: rgb(var(--color-secondary));
    color: #fff;
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    background: #333333;
}
/* ----------------------------------------------------------------
     Titan Email Video
------------------------------------------------------------------- */
.titanmail-video {
    background-color: rgb(250, 251, 254);
    border: 15px solid rgba(196, 192, 192, 0.5);
    border-radius: 5px;
    overflow: hidden;
}
.titanmail-video video {
    height: 100%;
    width: 100%;
    display: flex;
    border: none;
    background-color: #000;
}
/* ----------------------------------------------------------------
     Titan table Video
------------------------------------------------------------------- */
.tabs-section-two .tabs {
    display: block;
    width: 100%;
}
.tabs-section-two .tabs .items {
    display: block;
    margin: 0 auto 60px;
    border-bottom: 1px solid var(--primary-bg);
}
.tabs-section-two .tabs .items .item {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 12px 0;
    position: relative;
    color: rgb(var(--color-secondary));
    cursor: pointer;
}
.tabs-section-two .tabs.many-tabs .items .item {
    font-size: 16px;
}
.tabs-section-two .tabs .items .item + .item {
    margin-inline-start: 40px;
}
.tabs-section-two .tabs .items .item.active {
    color: #1b1b1b;
    font-weight: 600;
}
.tabs-section-two .tabs .items .item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 4px;
    background: 0 0;
    transition: width 0.5s linear;
}
.tabs-section-two .tabs .items .item.active::after {
    width: 100%;
    background: var(--primary-bg);
}
.tabs-section-two .contents {
    display: block;
}
.tabs-section-two .contents .item {
    display: none;
}
.tabs-section-two .contents .item.active {
    display: block;
}
@media (max-width: 767px) {
    .tabs-section-two .tabs .items .item {
        font-size: 14px;
    }
    .tabs-section-two .tabs .items .item + .item {
        margin-inline-start: 30px;
    }
    .tabs-section-two .tabs .items {
        margin: 0 auto 30px;
    }
    .tabs-section-two .tabs.many-tabs .items {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
        display: none;
    }
    .tabs-section-two .tabs.many-tabs .items {
        display: flex;
    }
    .tabs-section-two .tabs.many-tabs .items .item {
        white-space: nowrap;
    }
}
/** ----------------------------------------------------------------
     login form $ register form
------------------------------------------------------------------- **/
.login-page {
    padding: 20px 0px;
}
.login-page .section-title h2 {
    font-size: 25px;
    font-weight: 500;
    margin-top: 20px;
}
.login_form {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.login_form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2a2e32;
}
.login-page .input-form {
    border: 1px solid #29862d5c;
    background: #fff;
    padding: 5px 15px;
    width: 100%;
    color: #000;
    outline: unset;
    border-radius: 6px;
}
.login-page .checkbox {
    color: #2a2e32;
    font-size: 15px;
    font-weight: 500;
}
.login-page .forgot-text {
    color: #2a2e32;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s;
}
.login-page .forgot-text:hover {
    color: var(--secondary-bg-dark);
}
.login_form .login_sidebar {
    border-radius: 12px;
    padding: 20px;
}

.text-between-lines {
    position: relative;
    text-align: center;
    margin: 40px 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.text-between-lines::before,
.text-between-lines::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 33%;
    height: 1px;
    background-color: #9999993b;
}

.text-between-lines::before {
    left: 0;
    transform: translateY(-50%);
}

.text-between-lines::after {
    right: 0;
    transform: translateY(-50%);
}

.login-page .register_link a {
    border: 1px solid #e7e7e7;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.4s;
}
.login-page .register_link a:hover {
    background: var(--secondary-bg);
    color: #fff;
}

@media (max-width: 992px) {
    .text-between-lines::before,
    .text-between-lines::after {
        content: unset;
        position: absolute;
    }
}
