@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Sora, sans-serif;
}

body {
    overflow-x: hidden;
}

:root {
    --primary-color: #7bc8ea;
    --secondary-color: #ff9a68;
}

a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(21, 28, 34);
}

figure {
    margin: 0px;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p {
    color: rgb(45, 45, 45);
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

.head.text-left {
    text-align: left;
}

.go-top {
    position: fixed;
    bottom: 7%;
    right: 1%;
    padding: 0px;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 10000;
}

.go-top::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f077";
    color: rgb(255, 255, 255);
    font-size: 25px;
    transition: 0.2s ease-in-out;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(1, 130, 181);
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: rgb(255, 194, 51);
    position: fixed;
    bottom: 88px;
    right: 40px;
    z-index: 99;
    text-align: center;
    transition: 0.4s;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top i {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 50px;
    transition: 0.4s;
}

.btn {
    border-radius: 0px;
    padding: 0px;
    margin: 0px;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-flow: row;
    gap: 20px;
    transition: 0.3s ease-in-out;
    display: flex !important;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 12px;
}

.btn-box .icon-wh {
    width: 25px;
    height: 25px;
    border-radius: 2px !important;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 87, 34);
    border-radius: 0px;
    border: 1px double rgb(255, 87, 34);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.btn-box .btn-primary:hover {
    background-color: rgb(255, 87, 34);
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    background-color: rgb(124, 101, 255);
    border-radius: 0px;
    border: 1px double rgb(124, 101, 255);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: rgb(124, 101, 255);
}

.btn-box .btn-icon {
    color: rgb(35, 47, 63);
}

.hvr-bounce-to-right {
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    border-radius: 10px;
    color: var(--primary-color) !important;
}

.hvr-bounce-to-right:hover::after,
.hvr-bounce-to-right:focus::after,
.hvr-bounce-to-right:active::after {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    border-radius: 10px;
}

.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    border-radius: 7px;
    color: var(--secondary-color) !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    border-radius: 7px;
}

.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}

.overlay .overlayDoor::before,
.overlay .overlayDoor::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgb(203, 146, 116);
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) 0.8s;
}

.overlay .overlayDoor::before {
    left: 0px;
}

.overlay .overlayDoor::after {
    right: 0px;
}

.overlay.loaded .overlayDoor::before {
    left: -50%;
}

.overlay.loaded .overlayDoor::after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader {
    width: 128px;
    height: 128px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(255, 255, 255) rgb(255, 255, 255) transparent;
    border-image: initial;
    border-radius: 50%;
    position: relative;
    animation: 1s linear 0s infinite normal none running spin;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(255, 255, 255) transparent transparent;
    border-image: initial;
    border-radius: 50%;
    animation: 1s linear 0s infinite normal none running spinInner;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

.form-control::-webkit-input-placeholder {
    color: rgb(49, 55, 71);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgb(0, 0, 0) !important;
}

.input-main {
    margin: 0px 0px 18px;
    overflow: hidden;
}

.input-main p,
.input-main label {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0px 0px 3px;
    padding: 0px;
    color: rgb(49, 55, 71);
    line-height: 24px;
}

.input-main p span,
.input-main label span {
    color: rgb(255, 107, 107);
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 20px;
    color: rgb(116, 118, 158);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-flow: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main.rightOne .form-control.img-bx {
    padding: 12px 60px 12px 12px;
}

.input-main.rightOne .form-group .card-imgs {
    right: 20px;
    left: inherit;
}

.input-main .form-select,
.input-main .form-control {
    height: auto;
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--Light-Grey, #d2d2d2);
    border-radius: 5px;
    padding: 8px 30px 8px 17px;
    color: rgb(35, 47, 63);
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0px;
    right: 10px;
    color: rgb(49, 55, 71);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye::before,
.input-main .form-group .field-icon1.fa-eye-slash::before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: rgb(49, 55, 71);
    margin: 10px 0px 0px;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}

.form-check {
    margin: 0px;
}

.form-check .form-check-input:checked {
    background-color: rgb(255, 87, 34);
    border-color: rgb(255, 87, 34);
}

.form-check .form-check-input:focus {
    border-color: rgb(255, 87, 34);
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0px;
    color: rgb(49, 55, 71);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.offcanvas.search-bar {
    background: center center / cover no-repeat rgb(255, 255, 255);
}

.offcanvas.search-bar .offcanvas-body .search-h {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
    display: block;
    text-align: center;
}

.offcanvas.search-bar .offcanvas-body .search .search-control {
    background-color: rgb(245, 245, 247);
    font-size: 13px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 25px;
    height: 45px;
}

.offcanvas.search-bar .offcanvas-body .search .search-btn {
    color: rgb(255, 255, 255);
    height: 45px;
    width: 45px;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(147, 103, 16);
    background: rgb(147, 103, 16);
    transition: 0.2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
}

.navbar-toggler {
    background-color: rgb(255, 194, 51);
    color: rgb(255, 255, 255);
    border: none;
}

header {
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

header .header-btm {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

header .sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    background: rgb(21, 28, 34);
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .header-btm .navbar {
    padding: 25px 0px;
    transition: 0.3s ease-in-out;
    background: transparent;
    position: relative;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    background: rgb(61, 55, 70);
    width: 75%;
    border-radius: 12px;
    gap: 10%;
    display: flex;
    padding: 14px 25px;
    align-items: baseline;
    position: relative;
    justify-content: center;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 15px 0px;
    top: 100%;
    transform: translateY(50px);
    left: 0px;
    width: 190px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s;
    display: flex;
    flex-flow: column;
    gap: 2px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    letter-spacing: 0px;
    word-spacing: 0px;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s ease-in-out;
    padding: 12px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item:hover {
    background: var(--secondary-color);
    color: rgb(255, 255, 255);
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.5s ease-in-out;
    padding: 0px;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--secondary-color) !important;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

header .header-btm .navbar .navbar-brand {
    margin: 0px;
    padding: 0px;
}

header .header-btm .navbar .navbar-brand .logo {
    width: 180px;
}

header.sticky .header-btm .navbar .navbar-brand .logo {
    height: 70px;
}

header .header-btm .side-ul {}

.search-bar {
    font-size: 14px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    background: var(--primary-color);
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 10px;
    line-height: 21px;
}

.footer {
    background-color: rgb(0, 0, 0);
    padding: 100px 0px 50px;
}

.footer .logo {
    display: flex;
    justify-content: center;
}

.footer .logo img {
    width: 200px;
}

.footer .head h1 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.footer .box a {
    border: 1.5px solid white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 30px;
    gap: 13px;
}

.footer .box a i {
    font-size: 25px;
    color: white;
}

.footer .box .txt {
    text-decoration: none;
    color: white;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
}

.footer .box .txt span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.footer .blue-background {
    background-color: rgb(8, 11, 24);
    margin-top: 64px;
    padding: 45px 0px;
}

.footer .case {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 40px 0px 20px;
}

.footer .case a {
    color: rgb(102, 102, 102);
    font-size: 16px;
    text-decoration: none;
}

.footer .icons {
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
}

.footer .icons i {
    font-size: 30px;
    color: white;
}

.footer .last-text {
    text-align: center;
    margin-top: 26px;
    line-height: 1;
    margin-bottom: 0px;
}

.footer .last-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.section-cart {
    position: relative;
    padding: 100px 0px;
}

.section-cart .checkout-box {
    border: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    border-radius: 0px;
}

.section-cart .checkout-box .details {
    border-top: 1px solid rgba(31, 31, 31, 0.1);
    border-right: 1px solid rgba(31, 31, 31, 0.1);
    border-left: 1px solid rgba(31, 31, 31, 0.1);
    border-image: initial;
    border-bottom: none;
}

.section-cart .checkout-box .details .summary {
    padding: 30px 30px 0px;
}

.section-cart .checkout-box .details h6 {
    font-weight: 700;
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin: 0px 0px 10px;
    padding: 0px;
    letter-spacing: -0.5px;
}

.section-cart .checkout-box .details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.71px;
    color: rgba(31, 31, 31, 0.5);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    letter-spacing: -0.2px;
}

.section-cart .checkout-box .total-ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
}

.section-cart .checkout-box .total-ul li {
    font-weight: 700;
    font-size: 14px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin: 5px 0px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.section-cart .checkout-box .total-ul li span {
    width: 50%;
    font-weight: 400;
}

.section-cart .checkout-box .sub-total {
    background: rgba(245, 245, 247, 0.5);
    padding: 15px 30px;
    margin: 20px 0px 0px;
}

.section-cart .checkout-box .checkout-btn {
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    border: 3px solid rgb(204, 146, 36);
    background: rgb(204, 146, 36);
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    border-radius: 0px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.section-cart .checkout-box .checkout-btn:hover {
    background: rgb(255, 255, 255);
    color: rgb(204, 146, 36);
}

.section-cart .cart-head-main {
    border-bottom: 1px solid rgba(215, 215, 215, 0.44);
    padding: 0px 0px 20px;
}

.section-cart .cart-table thead tr th {
    text-transform: uppercase;
    color: rgb(2, 2, 2);
    font-size: 22px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.section-cart .cart-table thead tr th.price {
    text-align: left;
}

.section-cart .cart-table tbody tr td {
    vertical-align: middle;
    padding: 20px 10px;
}

.section-cart .cart-table tbody tr:nth-child(2n+1)>td {
    background-color: rgba(128, 128, 128, 0.25);
}

.section-cart .cart-table tbody tr td .img-main {
    background: rgb(245, 245, 247);
    padding: 15px 0px;
    position: relative;
}

.section-cart .cart-table tbody tr td .img-main i {
    position: absolute;
    right: -8px;
    top: -16px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: rgb(204, 146, 36);
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.section-cart .cart-table tbody tr td .img-main .cart-img {
    min-width: 100px;
    max-width: 100px;
    display: block;
    margin: 0px auto;
}

.section-cart .cart-table tbody tr {
    border-bottom: 1px solid rgb(0, 0, 0);
}

.section-cart .cart-table thead {
    border-bottom: 1px solid rgb(0, 0, 0);
}

.section-cart .cart-table thead tr {
    border-bottom: 1px solid rgb(0, 0, 0);
}

.section-cart .cart-table tbody tr td .cart-desc .pro-name {
    font-size: 28px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0px;
    padding: 0px;
}

.section-cart .cart-table tbody tr td .dsc-rt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.section-cart .cart-table tbody tr td .dsc-rt .btn-cart {
    font-weight: 400;
    font-size: 16px;
    margin: 0px;
    color: rgb(204, 146, 36);
    text-transform: capitalize;
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0px 20px;
    height: 40px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.section-cart .cart-table tbody tr td .dsc-rt .btn-cart:hover {
    background-color: rgb(204, 146, 36);
    color: rgb(255, 255, 255);
}

.section-cart .cart-table tbody tr td .input-group {
    align-items: center;
    width: 200px;
    margin: 0px auto;
    border: none;
    border-radius: 0px;
    padding: 0px 15px;
    justify-content: space-between;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant {
    color: rgb(255, 255, 255);
    padding: 0px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 2px solid rgb(204, 146, 36);
    background: rgb(204, 146, 36);
    transition: 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant:hover {
    background: rgb(255, 255, 255);
    color: rgb(204, 146, 36);
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant:focus {
    outline: none;
    box-shadow: none;
}

.section-cart .cart-table tbody tr td .input-group .input-number {
    font-weight: 400;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    color: rgb(31, 31, 29);
    text-align: center;
    opacity: 1;
    border: none;
    background: rgb(245, 245, 247);
    height: 35px;
    width: 70px;
    flex: inherit;
    border-radius: 10px !important;
}

.section-cart .cart-table tbody tr td .price {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    color: rgb(2, 2, 2);
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0px;
    padding: 0px;
}

.section-cart .checkout-btn-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: wrap;
}

.section-checkout {
    position: relative;
    padding: 80px 0px;
}

.section-checkout .checkout-form .form-h {
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
}

.section-checkout .checkout-form .form-p {
    font-size: 15px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px;
    line-height: 27px;
    padding: 0px;
    text-align: end;
}

.section-checkout .checkout-form .form-p .signup-a {
    color: rgb(204, 146, 36);
}

.section-checkout .checkout-form .form-head {
    border-bottom: 1px solid rgba(170, 170, 170, 0.6);
    margin: 0px 0px 30px;
    padding: 0px 0px 30px;
}

.section-checkout .checkout-form .order-details ul {
    margin: 10px 0px;
}

.section-checkout .checkout-form .order-details ul li {
    text-transform: unset;
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    line-height: 23.2px;
    color: rgb(0, 0, 0);
    margin: 0px 0px 20px;
    padding: 10px 0px;
    position: relative;
    border-bottom: 2px solid rgb(244, 244, 244);
}

.section-checkout .checkout-form .order-details ul li strong {
    float: right;
    width: 50%;
    text-align: right;
    color: rgb(0, 0, 0);
}

.section-checkout .checkout-form .order-details ul li .item-list {
    min-height: auto;
    max-height: 300px;
    overflow-y: scroll;
    padding: 5px 10px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar {
    width: 5px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-track {
    background: rgb(241, 241, 241);
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-thumb {
    background: rgb(204, 146, 36);
    border-radius: 10px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-thumb:hover {
    background: rgb(85, 85, 85);
}

.section-checkout .checkout-form .order-details ul li .main-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    margin: 0px 0px 10px;
    padding: 10px;
    box-shadow: rgba(128, 128, 128, 0.25) 0px 0px 0px 2px;
    border-radius: 5px;
    background-color: rgba(128, 128, 128, 0.25);
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .main-img img {
    min-width: 90px;
    max-width: 90px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul {
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    word-spacing: 0px;
    letter-spacing: 1px;
    border: none;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li i {
    margin: 0px 2px 0px 0px;
    font-size: 11px;
    color: rgb(204, 146, 36);
}

.section-checkout .checkout-form .order-details ul li .main-box .pd-total {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    word-spacing: 0px;
    letter-spacing: 1px;
}

.section-checkout .checkout-form .form-head .pay-now .btn-pay {
    font-size: 14px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0px 0px 0px auto;
    padding: 0px;
    height: 52px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    border: 1px solid rgb(204, 146, 36);
    background: rgb(204, 146, 36);
    line-height: normal;
    transition: 0.2s ease-in-out;
}

.section-checkout .checkout-form .form-group {
    margin: 0px 0px 30px;
}

.section-checkout .checkout-form .form-group .custom-label {
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-checkout .checkout-form .form-group .custom-control {
    height: 57px;
    width: 100%;
    padding: 17px 25px;
    margin: 0px;
    border: 1px solid rgb(0, 0, 0);
    background: transparent;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    text-transform: unset;
    text-align: left;
    color: rgb(0, 0, 0);
}

.section-checkout .checkout-form .form-group .textarea-control {
    border: 1px solid rgb(0, 0, 0);
    background-color: transparent;
    border-radius: 0px;
    margin: 0px;
    padding: 18px 25px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
}

.section-checkout .checkout-form .login-btn {
    font-size: 14px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    background-color: rgb(204, 146, 36);
    border: 2px solid rgb(204, 146, 36);
    border-radius: 3px;
    padding: 0px;
    margin: 0px 15px 0px 0px;
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    letter-spacing: 0.6px;
}

.section-checkout .checkout-form .login-btn:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(204, 146, 36);
}

.section-checkout .checkout-form .payment-btn {
    background: rgb(0, 0, 0);
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(186, 186, 186);
    margin: 0px 0px 50px;
    padding: 0px;
    line-height: inherit;
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover {
    background: linear-gradient(360deg, rgb(93, 0, 1) 0%, rgb(230, 0, 3) 50%, rgb(93, 0, 1) 100%);
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.section-checkout .checkout-form .payment-btn .payment-card {
    width: 20%;
    display: block;
    margin: 0px 10px 0px 0px;
    transition: 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-card {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .payment-btn .payment-trans {
    width: 11%;
    display: block;
    margin: 0px 10px 0px 0px;
    transition: 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-trans {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .payment-btn .payment-paypal {
    width: 14%;
    display: block;
    margin: 0px 10px 0px 0px;
    transition: 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-paypal {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .check-select {
    border: 1px solid rgb(0, 0, 0);
    height: 55px;
    background-color: transparent;
    border-radius: 0px;
    margin: 8px 0px 30px;
    padding: 0px 25px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
}

.section-checkout .checkout-form .check-select:focus {
    box-shadow: none;
}

.register-sec-wrap {
    position: relative;
    overflow: hidden;
    margin: 0px;
    padding: 50px 0px;
}

.register-sec-wrap .form-main {
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgb(204, 204, 204) 0px 0px 4px 0.5px;
}

.register-sec-wrap .form-main .heads {
    margin: 0px 0px 50px;
}

.register-sec-wrap .form-main .heads h6 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin: 0px 0px 10px;
    padding: 0px;
    text-align: center;
    font-size: 30px;
}

.register-sec-wrap .form-main .heads p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    text-align: center;
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    color: rgba(31, 31, 31, 0.5);
}

.register-sec-wrap .form-main .btn-grp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
    margin: 40px 0px;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn {
    color: rgb(31, 31, 31);
    height: 55px;
    width: 48%;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0px;
    padding: 0px 0px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 31, 0.5);
    background: rgb(255, 255, 255);
    transition: 0.2s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 20%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    height: 25px;
    width: 25px;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(1)::before {
    background-image: url("../images/google.png");
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(2)::before {
    background-image: url("../images/facebook.png");
    left: 18%;
}

.register-sec-wrap .form-main .input-main label {
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
    color: rgb(0, 0, 0);
}

.register-sec-wrap .form-main .input-main .fm-ctl {
    border: none;
    height: 45px;
    background-color: rgb(245, 245, 247);
    border-radius: 0px;
    margin: 10px 0px 20px;
    padding: 12px 20px;
    color: rgba(31, 31, 31, 0.85);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.register-sec-wrap .form-main .input-main {
    position: relative;
}

.field-icon1 {
    z-index: 2;
    position: absolute;
    top: 66%;
    right: 20px;
    color: rgb(203, 146, 116);
}

.register-sec-wrap .form-main .submit-btn {
    color: rgb(255, 255, 255);
    height: 45px;
    width: 99%;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0px auto;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(203, 146, 116);
    background: rgb(203, 146, 116);
    transition: 0.2s ease-in-out;
    border-radius: 0px;
    overflow: hidden;
    box-sizing: content-box;
}

.register-sec-wrap .form-main p {
    color: rgb(31, 31, 31);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    margin: 35px 0px 0px;
}

.register-sec-wrap .form-main p .link {
    color: rgb(203, 146, 116);
    text-decoration: underline;
    background: rgb(255, 255, 255);
    border: none;
}

.register-sec-wrap .form-main .extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}

.register-sec-wrap .form-main .extra {
    margin: 30px 0px;
}

.register-sec-wrap .form-main .extra .form-check .form-check-input:checked {
    background-color: rgb(203, 146, 116);
    border: rgb(203, 146, 116);
}

.register-sec-wrap .form-main .extra .form-check .form-check-label {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0px;
}

.register-sec-wrap .form-main .extra .anchor {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: rgb(203, 146, 116);
    text-decoration: underline;
}

.home-banner-wrap {
    padding: 200px 0px 0px;
    overflow: hidden;
    position: relative;
    background-image: url("../images/banner-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 126vh;
}

.home-banner-wrap .content {}

.home-banner-wrap .content h1 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    line-height: 28px;
    margin: 0px 0px 10px;
}

.home-banner-wrap .content h2 {
    color: rgb(255, 255, 255);
    font-size: 33px;
    font-weight: 700;
    line-height: 43px;
    margin: 0px 0px 10px;
}

.home-banner-wrap .content p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0px 0px 30px;
}

.home-banner-wrap .banner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 70px;
    margin: 0px 0px 30px;
}

.home-banner-wrap .banner-logo img {
    min-width: 86px;
    max-width: 86px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
}

.talk-btn {
    display: flex;
}

.box-btn {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    gap: 10px;
    background: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 7px;
}

.form-box {
    background-color: rgb(61, 55, 70);
    padding: 30px 25px 70px;
    text-align: center;
    border-radius: 15px;
}

.form-box h2 {
    color: rgb(255, 255, 255);
    font-size: 55px;
    font-weight: 700;
}

.form-box h2 span {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 15px;
    display: block;
}

.form-box .input-main .form-group {
    margin: 0px 0px 15px;
}

.form-box .input-main .form-group .input-box {
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

.form-box .input-main .form-group textarea {
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

.form-box .input-main .form-btn {
    margin: 25px 0px 0px;
}

.form-box .input-main .form-btn .submit {
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

.form-box .input-main .form-group textarea::placeholder,
.form-box .input-main .form-group .input-box::placeholder {
    color: rgb(162, 162, 164);
    font-size: 13px;
    font-weight: 400;
}

.different-sec {
    overflow: hidden;
    padding: 0px 0px 70px;
}

.different-sec .head {}

.different-sec .head h3 {
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
}

.different-sec .head h3 span {
    height: 1px;
    width: 60px;
    background: var(--secondary-color);
    display: block;
}

.head h2 {
    font-size: 40px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    line-height: 50px;
    margin: 0px 0px 12px;
}

.head p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px 0px 25px;
}

.different-sec .result {
    margin: 16px 0px 20px;
}

.different-sec .result figure {
    background: rgba(123, 200, 234, 0.35);
    margin: 0px 0px 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.different-sec .result figure img {}

.different-sec .result h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    line-height: 28px;
    margin: 0px 0px 12px;
}

.different-sec .result p {
    color: rgb(102, 102, 102);
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
}

.willing-sec {
    background: var(--primary-color);
    text-align: center;
    padding: 70px 0px;
    position: relative;
}

.willing-sec .head {
    position: relative;
    z-index: 1;
}

.willing-sec .head p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    margin: 0px 0px 30px;
    line-height: 25px;
}

.bussines-sec-02 .free-btn,
.willing-sec .free-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bussines-sec-02 .free-btn h6,
.willing-sec .free-btn h6 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.free-btn .get-btn {
    background: rgb(0, 0, 0);
    border: 0px;
    font-size: 16px;
}

.willing-sec .free-btn .call-btn {}

.willing-sec .free-btn .call-btn span {}

.willing-sec .free-btn .call-btn i {}

.willing-sec .main-img {
    position: absolute;
    right: 3%;
    top: -20%;
}

.willing-sec .main-img img {
    width: 100%;
    animation: 4s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1);
    }
}

.seo-sec {
    padding: 100px 0px;
    overflow: hidden;
}

.seo-sec .head {
    text-align: center;
}

.seo-sec .head h2 {
    width: 80%;
    margin: 0px auto 30px;
}

.seo-sec .research {
    border: 1px solid rgb(120, 120, 120);
    border-radius: 18px;
    padding: 25px 26px;
    margin: 30px 0px 0px;
    height: 561px;
    transition: 0.5s;
    position: relative;
}

.seo-sec .research::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 0%;
    width: 0%;
    top: 50%;
    right: 50%;
    border-radius: 487px;
    z-index: -1;
    transition: 0.5s;
}

.seo-sec .research:hover::after {
    top: 0px;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    right: 0px;
    border-radius: 18px;
}

.seo-sec .research .main-img {
    width: 60px;
    height: 60px;
    background: rgba(255, 154, 104, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0px 0px 18px;
    transition: 0.5s;
}

.seo-sec .research:hover .main-img {
    background: rgba(2, 2, 2, 0.17);
}

.seo-sec .research .main-img img {
    width: 35px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(59%) saturate(1368%) hue-rotate(314deg) brightness(102%) contrast(101%);
}

.seo-sec .research:hover .main-img img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(59deg) brightness(89%) contrast(111%);
}

.seo-sec .research h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0px 0px 16px;
}

.seo-sec .research ul li {
    color: rgb(102, 102, 102);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    margin: 0px 0px 14px 17px;
}

.seo-sec .research:hover ul li {
    color: rgb(255, 255, 255);
}

.seo-sec .research:hover ul li::before {
    background: rgb(255, 255, 255);
}

.seo-sec .research ul li::before {
    background: var(--secondary-color);
    width: 8px;
    height: 8px;
    display: math;
    border-radius: 50%;
    content: "";
    position: absolute;
    margin: 0px;
    top: 6px;
    left: -16px;
}

.growth-sec {
    overflow: hidden;
    background: var(--secondary-color);
    padding: 70px 0px;
    position: relative;
}

.growth-sec .head {}

.growth-sec .head h2 {
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 600;
    margin: 0px 0px 50px;
}

.growth-sec .tabs-growth {}

.growth-sec .tabs-growth .main-tabs {
    gap: 10%;
}

.growth-sec .tabs-growth .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: transparent;
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 500;
    text-decoration: underline;
    border-radius: 0px;
    text-align: start;
}

.growth-sec .tabs-growth .nav-pills .nav-link {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 400;
    text-align: start;
}

.growth-sec .tabs-growth div#v-pills-tabContent {
    width: 47%;
}

.growth-sec .content p,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 28px;
    margin: 0px 0px 33px;
}

.growth-sec .content .Work-btn,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane .Work-btn {
    display: flex;
}

.growth-sec .content .Work-btn .get-btn,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane .Work-btn .get-btn {
    background: rgb(0, 0, 0);
    border: 0px;
    font-size: 18px;
    padding: 20px 40px;
    font-weight: 600;
}

.growth-sec .main-img {
    position: absolute;
    right: 0px;
    top: 18%;
}

.growth-sec .content p {
    text-align: center;
}

.growth-sec .content .Work-btn {
    justify-content: center;
}

.growth-sec .content .Work-btn .get-btn {}

.choose-sec {
    background-color: rgb(248, 248, 248);
    padding: 100px 0px;
}

.choose-sec .head {}

.choose-sec .head h2 {
    margin: 0px 0px 60px;
}

.choose-sec .head p {
    margin: 0px 0px 50px;
    font-size: 16px;
    color: rgb(102, 102, 102);
    font-weight: 400;
}

.choose-sec .process {
    margin: 0px 0px 40px;
    padding: 0px 35px 0px 0px;
}

.choose-sec .process h2 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin: 0px 0px 18px;
}

.choose-sec .process h2 img {}

.choose-sec .process p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px 0px 0px 45px;
    color: rgb(102, 102, 102);
}

.campaigns-sec {
    background: var(--secondary-color);
    padding: 100px 0px;
    overflow: hidden;
}

.campaigns-sec .head {
    text-align: center;
}

.campaigns-sec .head p {
    color: rgb(0, 0, 0);
}

.campaigns-sec .head .every-call {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.campaigns-sec .free-btn {
    margin: 30px 0px 0px;
    display: flex;
    justify-content: center;
}

.Service-sec {
    overflow: hidden;
    padding: 100px 0px;
    background: url("../images/img17.png") center center / cover no-repeat;
    position: relative;
}

.Service-sec::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 218px;
    background: url("../images/img18.png") right center / contain no-repeat;
    top: 0px;
    right: 0px;
    filter: grayscale(1);
}

.Service-sec .head {
    text-align: center;
}

.Service-sec .head .customheading {
    font-size: 50px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin: 0px 0px 25px;
}

.Service-sec .head .customheading span {
    color: var(--primary-color);
}

.Service-sec .head p {
    width: 54%;
    font-size: 18px;
    margin: 0px auto 40px;
}

.Service-sec .ElimateBox {
    border-radius: 18px;
    border: 1px solid rgba(120, 120, 120, 0.34);
    padding: 50px 30px;
}

.Service-sec .DOminatemain h2 {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 30px;
    margin: 0px 0px 24px;
}

.Service-sec .DOminatemain h6 {
    font-size: 18px;
    color: rgb(7, 7, 7);
    font-weight: 400;
    margin-bottom: 24px;
}

.Service-sec .ElimateBox .DOminatemain ul {
    padding-left: 0px;
    list-style: none;
}

.Service-sec .ElimateBox .DOminatemain .flexitem {
    display: flex;
    gap: 22px;
}

.Service-sec .ElimateBox .DOminatemain .flexitem .contenttext p {
    font-size: 15px;
    color: rgb(102, 102, 102);
    line-height: 23px;
    margin: 0px 0px 20px;
}

.Service-sec .ElimateBox .DOminatemain .flexitem .contenttext h5 {
    font-size: 21px;
    color: rgb(24, 29, 35);
    font-weight: 600;
    margin: 0px 0px 10px;
}

.Service-sec .flexitem .iconbar {
    margin-bottom: 0px;
}

.Service-sec .flexitem .iconbar a {
    z-index: 0;
    position: relative;
    transition: 0.6s;
    background: var(--secondary-color);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
}

.Service-sec .flexitem .iconbar a::after {
    transition: 0.6s;
    border-radius: 0px;
    position: absolute;
    content: "";
    background: black;
    height: 0%;
    width: 0%;
    z-index: -1;
}

.Service-sec .flexitem .iconbar a:hover::after {
    border-radius: 80px;
    transition: 0.4s;
    width: 100%;
    height: 100%;
}

.DOminatemain ul::before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    height: 76%;
    width: 2px;
    top: 0px;
    left: 25px;
    z-index: -1;
}

.DOminatemain ul {
    position: relative;
}

.DOminatemain ul::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 76%;
    width: 2px;
    top: 0px;
    left: 25px;
    z-index: -1;
    transition: 0.6s;
}

.DOminatemain ul:hover::after {
    height: 0%;
    transition: 0.6s;
}

.Service-sec .ElimateBox-2 {
    border-radius: 18px;
    border: 1px solid rgba(120, 120, 120, 0.34);
    padding: 55px 30px 53px;
    height: 603px;
}

.Service-sec .ElimateBox-2 .DOminatemain .man-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts {
    text-align: center;
    padding-top: 18px;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0px 0px 20px;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts p {
    font-size: 13px;
    font-weight: 400;
    color: rgb(102, 102, 102);
    width: 60%;
    margin: 0px auto 68px;
    line-height: 23px;
}

.Service-sec .ElimateBox-2 .DOminatemain .Minute {
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.Service-sec .ElimateBox-2 .DOminatemain .cir {
    width: 26px;
    height: 26px;
    background-color: rgb(23, 232, 133);
    border-radius: 50%;
}

.Service-sec .ElimateBox-2 .DOminatemain .Minute h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
}

.Service-sec .ElimateBox-2 .DOminatemain .cir-1 {
    width: 26px;
    height: 26px;
    background-color: rgb(255, 79, 0);
    border-radius: 50%;
    padding-bottom: 10px;
}

.frequently-sec {
    padding: 100px 0px;
    position: relative;
}

.frequently-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 218px;
    background-image: url("../images/img19.png");
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    background-size: contain;
    background-position: unset;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    filter: grayscale(1);
}

.frequently-sec .head {
    text-align: center;
    margin: 0px 0px 51px;
}

.frequently-sec .head h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 0px 0px 50px;
    color: rgb(0, 0, 0);
    line-height: 60px;
}

.frequently-sec .head h2 span {
    color: var(--primary-color);
}

.frequently-sec .accordion-flush .accordion-item h2 .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 10px;
    transition: 0.4s ease-in-out;
}

.frequently-sec .accordion-flush .accordion-item {
    border: 1px solid rgb(205, 203, 203);
    border-radius: 10px;
    margin: 0px 0px 15px;
}

.frequently-sec .accordion-flush .accordion-item h2 .accordion-button:hover {
    background-color: var(--primary-color);
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button:hover::after {
    color: rgb(0, 0, 0);
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: var(--primary-color);
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: 0.4s ease-in-out;
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
    color: var(--secondary-color);
}

.florida-web-sec {
    padding: 100px 0px;
    overflow: hidden;
    background-image: url("../images/img12.png");
    background-position: right center;
    background-size: cover;
}

.florida-web-sec .head {}

.florida-web-sec .head h2 {
    width: 90%;
}

.florida-web-sec .head h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 20px;
}

.florida-web-sec .head p {}

.florida-web-sec .main-img {}

.florida-web-sec .main-img img {
    width: 470px;
}

.florida-web-sec .florida-btn {}

.florida-web-sec .florida-btn ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.florida-web-sec .florida-btn ul li {
    background: rgb(255, 255, 255);
    box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
    border-radius: 4px;
    padding: 10px;
    color: rgb(102, 102, 102);
    transition: 0.4s ease-in-out;
}

.florida-web-sec .florida-btn ul li:hover {
    background: var(--secondary-color);
    color: rgb(0, 0, 0);
}

.florida-web-sec .lets-get {
    margin: 140px 0px 0px;
    text-align: center;
}

.florida-web-sec .lets-get h2 {
    color: var(--secondary-color);
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    width: 80%;
    margin: 0px auto 20px;
}

.florida-web-sec .lets-get h2::before {
    content: "";
    position: absolute;
    background-image: url("../images/img14.png");
    top: -40px;
    left: -2%;
    width: 200px;
    height: 243px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.florida-web-sec .lets-get h2::after {
    content: "";
    position: absolute;
    background-image: url("../images/img15.png");
    top: -40px;
    right: -1%;
    width: 200px;
    height: 243px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

.florida-web-sec .lets-get p {
    color: rgb(51, 51, 51);
    font-size: 22px;
    line-height: 24px;
    margin: 0px 0px 25px;
    font-weight: 400;
}

.florida-web-sec .lets-get p span {
    font-weight: 600;
}

.florida-web-sec .free-btn {
    display: flex;
    justify-content: center;
}

.florida-web-sec .free-btn .box-btn {
    border: 2px solid var(--secondary-color);
}

.product-detail-sec {
    padding: 150px 0px 50px;
    position: relative;
    overflow: hidden;
    margin: 0px;
}

.product-detail-sec .product-slider .img_producto_container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-detail-sec .product-slider .img_producto {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: transform 0.5s ease-out;
}

.product-detail-sec .product-thumb {
    margin: 10px 0px 0px;
}

.product-detail-sec .product-thumb img {
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    max-height: 120px;
    object-fit: cover;
}

.product-detail-sec .product-thumb .owl-nav .owl-prev,
.product-detail-sec .product-thumb .owl-nav .owl-next {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 25px;
    color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 40%;
    left: -8%;
    opacity: 0;
}

.product-detail-sec .product-thumb .owl-nav .owl-next {
    left: auto;
    right: -8%;
}

.product-detail-sec .product-thumb:hover .owl-nav .owl-prev,
.product-detail-sec .product-thumb:hover .owl-nav .owl-next {
    opacity: 1;
    left: -4%;
}

.product-detail-sec .product-thumb:hover .owl-nav .owl-next {
    left: auto;
    right: -4%;
}

.product-detail-sec .product-thumb .owl-nav .owl-prev:hover,
.product-detail-sec .product-thumb .owl-nav .owl-next:hover {
    color: rgb(0, 0, 0);
}

.product-detail-sec .product-info .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px;
}

.product-detail-sec .product-info .head ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 10px;
}

.product-detail-sec .product-info .head ul li i {
    color: rgb(119, 119, 119);
    font-size: 12px;
}

.product-detail-sec .product-info .head ul li a {
    font-size: 14px;
    font-weight: 500;
    color: rgb(119, 119, 119);
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .product-info .head ul li:last-child a {
    font-size: 14px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .product-info .desc-main {
    border-bottom: 1px solid rgba(0, 0, 0, 0.106);
    margin: 0px 0px 20px;
}

.product-detail-sec .product-info .desc-main h5.title {
    font-size: 35px;
    font-weight: 500;
    color: rgb(49, 49, 59);
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .product-info .desc-main .price {
    margin: 20px 0px;
}

.product-detail-sec .product-info .desc-main .price h4 {
    font-size: 21.7px;
    line-height: 27px;
    font-weight: 600;
    color: rgb(213, 137, 111);
    text-transform: unset;
    margin: 0px 0px 10px;
    padding: 0px;
}

.product-detail-sec .product-info .desc-main .price h4 span {
    color: rgb(187, 187, 187);
    text-decoration: line-through;
    font-size: 19.53px;
    font-weight: 400;
    margin: 0px 10px 0px 0px;
}

.product-detail-sec .product-info .desc-main .price p {
    font-size: 14px;
    line-height: 22.24px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .product-info .desc-main .range-cart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 20px;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group {
    align-items: center;
    width: 200px;
    border: none;
    border-radius: 0px;
    padding: 0px 15px;
    justify-content: space-between;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant {
    color: rgb(255, 255, 255);
    padding: 0px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 2px solid rgb(204, 146, 36);
    background: rgb(204, 146, 36);
    transition: 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant:hover {
    background: rgb(255, 255, 255);
    color: rgb(204, 146, 36);
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant:focus {
    outline: none;
    box-shadow: none;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-number {
    font-weight: 400;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    color: rgb(31, 31, 29);
    text-align: center;
    opacity: 1;
    border: none;
    background: rgb(245, 245, 247);
    height: 35px;
    width: 70px;
    flex: inherit;
    border-radius: 10px !important;
}

.product-detail-sec .product-info .desc-main .range-cart .cart-btn .btn-cart {
    background-color: rgb(213, 137, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 119px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-radius: 35px;
    transition: 0.3s ease-in-out;
}

.product-detail-sec .product-info .desc-main .range-cart .cart-btn .btn-cart:hover {
    background-color: rgb(11, 41, 94);
}

.product-detail-sec .product-info .desc-main .compare-whish {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 20px;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare {
    font-size: 14px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 10px;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare i {
    color: rgb(51, 51, 51);
    margin: 0px 8px 0px 0px;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare:hover {
    color: rgb(119, 119, 119);
}

.product-detail-sec .product-info .url-list ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li {
    font-size: 14px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: row;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li span {
    color: rgb(48, 48, 48);
    font-weight: 400;
    display: block;
    margin: 0px;
}

.product-detail-sec .product-info .url-list ul li .sub-child {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: row;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li .sub-child li a i {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease-in-out;
}

.product-detail-sec .product-info .url-list ul li .sub-child li a i:hover {
    color: rgb(51, 51, 51);
}

.product-detail-sec .long-desc {
    border-top: 1px solid rgba(0, 0, 0, 0.106);
    border-bottom: 1px solid rgba(0, 0, 0, 0.106);
    padding: 0px 0px 40px;
    margin: 40px 0px 0px;
}

.product-detail-sec .long-desc .tabs-list .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    gap: 30px;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item {
    position: relative;
    overflow: hidden;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: rgba(51, 51, 51, 0.7);
    text-transform: capitalize;
    margin: 0px;
    padding: 30px 0px 10px;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    height: 3px;
    width: 100%;
    background-color: rgb(208, 135, 113);
    transition: 0.5s ease-in-out;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item:hover::before {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link:hover {
    color: rgb(51, 51, 51);
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link.active {
    color: rgb(51, 51, 51);
    background: transparent;
    position: relative;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link.active::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    height: 3px;
    width: 100%;
    background-color: rgb(208, 135, 113);
}

.product-detail-sec .long-desc .tabs-list .tab-content {
    margin: 30px 0px 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc p {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgb(36, 36, 36);
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-group {
    margin: 0px 0px 20px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-group .form-control {
    border-radius: 0px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: inherit;
    padding: 10px 30px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-group .form-control:focus {
    border-color: rgba(0, 0, 0, 0.1);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-group .form-label {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px 0px 7px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-group .form-label span {
    color: rgb(224, 16, 32);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .form-check .form-check-label {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .review-btn {
    margin: 20px 0px 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .review-btn .btn-review {
    background-color: rgb(213, 137, 111);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
    height: 42px;
    width: 87.25px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-radius: 35px;
    transition: 0.3s ease-in-out;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .review-btn .btn-review:hover {
    background-color: rgb(11, 41, 94);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 10px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating h5 {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating h5 span {
    color: rgb(224, 16, 32);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>input {
    display: none;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>label::before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>.half::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
    position: absolute;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>label {
    color: rgb(221, 221, 221);
    float: right;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>input:checked~label,
.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new:not(:checked)>label:hover,
.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new:not(:checked)>label:hover~label {
    color: rgb(255, 215, 0);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>input:checked+label:hover,
.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>input:checked~label:hover,
.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>label:hover~input:checked~label,
.product-detail-sec .long-desc .tabs-list .tab-content .review-form .rating .rating-new>input:checked~label:hover~label {
    color: rgb(255, 237, 133);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgb(36, 36, 36);
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content p {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px 0px 7px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .card-list {
    min-height: auto;
    max-height: 400px;
    overflow-y: scroll;
    padding: 0px 20px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card {
    display: flex;
    align-items: center;
    flex-flow: row;
    gap: 10px;
    margin: 20px 0px;
    box-shadow: rgb(204, 204, 204) 0px 0px 4px 1px;
    padding: 10px 5px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card .pr-img img {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card .pr-desc ul {
    display: flex;
    align-items: center;
    flex-flow: row;
    gap: 5px;
    margin: 0px 0px 5px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card .pr-desc ul li i {
    font-size: 14px;
    color: rgb(234, 190, 18);
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card .pr-desc h5 {
    font-size: 17px;
    line-height: 22.4px;
    font-weight: 400;
    color: rgb(48, 48, 48);
    text-transform: unset;
    margin: 0px;
    padding: 0px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .review-content .review-card .pr-desc p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: rgb(141, 141, 141);
    text-transform: unset;
    margin: 5px 0px 0px;
    padding: 0px;
}

.Section-01 .shapeBanner .Shapeleft {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(-15%, -8%);
    animation: 16s linear 0s infinite normal none running rotation;
    transform-origin: center center;
}

.Section-01 .shapeBanner .Shaperight {
    position: absolute;
    top: 0px;
    right: 0px;
}

.Section-01 {
    position: relative;
    display: flex;
    height: 1169px;
    background: url("../images/banner.png") 0% 0% / cover no-repeat;
    padding-top: 11rem;
    overflow: hidden;
}

.Section-01 .Content .ml9 {
    padding-bottom: 0px;
    position: relative;
    font-weight: 600;
    font-size: 61px;
    color: rgb(255, 255, 255);
    margin: 0px 0px 15px;
    line-height: 73px;
}

.Section-01 h2 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin: 0px 0px 50px;
}

.flexbutton {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 0;
}

.Imagebanner {
    position: relative;
}

.Imagebanner .image-02 {
    margin: 0px;
    animation: 10s ease-in-out 0s infinite normal none running card-shift;
    left: 110px;
    position: absolute;
    bottom: 46px;
}

/*.Imagebanner .image-01 {*/
/*    display: flex;*/
/*    justify-content: end;*/
/*    position: relative;*/
/*    left: 80px;*/
/*animation: 7s ease 0s infinite alternate none running Mover-1;*/
/*}*/

figure.image-03 {
    right: -175px;
    position: absolute;
    bottom: -159px;
}

figure.image-02 img {
    width: 100%;
}

.lasticon ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.corecontent h6 {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
}

.corecontent {
    padding-left: 5rem;
    padding-top: 120px;
}

.corecontent h2 {
    font-size: 46px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 10px 0px;
    line-height: 60px;
}

.corecontent h2 span {
    color: var(--primary-color);
    display: block;
}

.corecontent p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    width: 94%;
    line-height: 30px;
}

.corecontent h6 span {
    background: var(--secondary-color);
    display: block;
    width: 55px;
    height: 1.3px;
}

.BoxS::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 0%;
    width: 0%;
    top: 50%;
    right: 50%;
    border-radius: 487px;
    z-index: -1;
    transition: 0.5s;
}

.BoxS:hover::after {
    top: 0px;
    transition: 0.5s;
    border-radius: 0px;
    width: 100%;
    height: 100%;
    right: 0px;
}

.BoxS:hover p {
    color: rgb(255, 255, 255);
}

.BoxS:hover img {
    filter: brightness(0) invert(1);
    transition: 0.6s;
}

.BoxS img {
    transition: 0.6s;
}

.BoxS:hover h3 {
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.BoxS:hover a {
    color: rgb(255, 255, 255);
    transition: 0.6s;
}

.BoxS:hover {
    border-radius: 0px;
    transition: 0.5s;
}

.MainService {
    display: flex;
    gap: 22px;
}

.Fit img {
    width: 100%;
}

.Section-02 {
    margin-top: -20rem;
}

.contents h3 {
    font-size: 21px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.contents p {
    color: rgb(102, 102, 102);
    margin-bottom: 32px;
    font-size: 15px;
}

.Section-02 .Service-Right {
    margin-top: 50px;
    width: 100%;
}

.Section-02 {
    overflow: hidden;
    padding: 0px 0px 100px;
}

.clickbutton {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 17px;
}

.BoxS {
    z-index: 0;
    border-radius: 9px;
    padding: 35px 14px 42px 30px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 4px 1px;
    margin-bottom: 33px;
    position: relative;
}

.Section-02 .row {
    align-items: center;
}

.websiteinputs h5 {
    font-size: 25px;
    display: flex;
    gap: 9px;
    align-items: center;
}

.inputflex .form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.inputflex .form-control {
    height: 53px;
    position: relative;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 12px;
    width: 100%;
    padding: 20px 38px;
}

.inputflex form {
    margin-top: 25px;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
}

.inputflex label {
    top: 13px;
    position: absolute;
    left: 14px;
    z-index: 1;
    margin: 0px;
}

.websiteinputs {
    border-top: 1px solid rgb(193, 193, 193);
    margin-top: 35px;
    padding-top: 26px;
}

.buttonres a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    margin-top: 22px;
    padding: 15px;
}

.buttonres .get-result {
    font-size: 15px;
    gap: 10px;
    border: 2px solid var(--primary-color);
}

.buttonres .get-result:hover {
    border: 2px solid var(--primary-color);
}

.helpsec {
    background-color: rgb(247, 249, 252);
    padding: 70px 0px 40px;
    overflow: hidden;
}

.helpsec h2 {
    text-align: center;
    font-size: 50px;
    width: 100%;
    font-weight: 700;
    margin: 0px;
}

.helpsec .img-container {
    background-image: url("../images/iphonexa.png");
    margin: 0px auto;
    padding-top: 16px;
    background-repeat: no-repeat;
    padding-left: 18px;
    padding-right: 0px;
    width: 324px;
    height: 663px;
}

.helpsec .img-container figure.abs {
    right: 0px;
    top: -6px;
    position: absolute;
    z-index: 9;
    left: 23px;
    text-align: center;
}

.helpsec .img-container .cs-slider img {
    height: 647px;
}

.hlpwrap {
    padding-left: 0px;
    margin: 60px 0px;
}

.hlpwrap li {
    width: 100%;
    clear: both;
    padding-bottom: 20px;
    display: inline-block;
}

.hlpwrap li .lft {
    width: 30%;
    float: left;
}

.hlpwrap li .lft figure {
    margin: 20px auto 0px;
    display: table;
}

.hlpwrap li .lft figure img {
    height: 80px;
}

.hlpwrap li .rht {
    width: 70%;
    float: right;
    padding: 10px 0px;
}

.hlpwrap li .rht h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hlpwrap li .rht p {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    padding-bottom: 0px;
}

@keyframes bouncy {
    0% {
        margin-top: 0px;
    }

    25% {
        margin-top: 5px;
    }

    50% {
        margin-top: 0px;
    }

    75% {
        margin-top: 5px;
    }

    100% {
        margin-top: 0px;
    }
}

.helpsec h2 span {
    color: var(--primary-color);
}

.marketing-bshbard {
    padding: 100px 0px 180px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.marketing-bshbard {
    background-image: url("../images/marketing-bg.webp");
    overflow: hidden;
}

.visible {
    visibility: visible !important;
}

.agency-sec article p,
.marketing-bshbard article p {
    margin-bottom: 15px;
}

.marketing-bshbard article h3 {
    margin-bottom: 25px;
}

.heading p {
    margin-top: 35px;
    font-size: 18px;
}

.marketing-bshbard .text-center img {
    margin: 0px 0px 90px;
}

.marketing-bshbard .heading p {
    font-size: 18px;
    color: rgb(102, 102, 102);
    font-weight: 400;
    margin: 18px 0px 40px;
}

.readmore a,
.readmore a::before {
    transition-duration: 0.5s;
}

.readmore a {
    background-color: var(--primary-color);
    padding: 7px 40px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 20px;
    margin-top: 14px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: transparent 0px 0px 1px;
    position: relative;
    transition-property: color;
}

.readmore a::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(153, 207, 114);
    transform: scaleX(0);
    transform-origin: 0px 50%;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.services-item {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 10px;
    border: 2px solid rgb(204, 204, 204);
    border-radius: 5px;
}

.ready-info ul li a.get,
.services-item:hover {
    background-color: rgb(0, 0, 0);
    text-decoration: none;
}

.services-item:hover svg {
    fill: rgb(255, 255, 255);
    transition: none;
}

.services-item:hover img {
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(108%) contrast(101%);
}

.services-item img {
    margin: 15px auto 20px;
    width: inherit !important;
}

.services-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.services-item p {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0px;
    padding: 0px 10px;
}

.services-item svg {
    margin: 15px auto 20px;
    width: 60px;
    height: 60px;
    transition: none;
}

.marketing-bshbard .owl-carousel button.owl-next,
.owl-carousel button.owl-prev {
    width: 35px;
    height: 35px;
    color: rgb(255, 255, 255);
    border-radius: 100%;
    background: var(--primary-color) !important;
}

.marketing-bshbard .owl-carousel button.owl-prev span {
    outline: 0px;
}

.marketing-bshbard .owl-carousel button.owl-next span,
.owl-carousel button.owl-prev span {
    color: rgb(255, 255, 255);
    font-size: 30px;
    position: relative;
    top: -8px;
}

.marketing-bshbard .owl-carousel button.owl-next {
    margin-left: 10px;
}

.marketing-bshbard .owl-carousel .owl-nav {
    position: absolute;
    right: 0px;
    bottom: -60px;
    outline: 0px;
}

.marketing-bshbard .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0px;
    border-radius: 50%;
}

.services-slider.owl-carousel .owl-item,
.services-slider.owl-carousel .owl-stage {
    display: flex;
}

.services-slider.owl-carousel .services-item {
    height: 100%;
}

.services-item {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 10px;
    border: 2px solid rgb(123, 200, 234);
    border-radius: 5px;
}

.services-item p {
    text-align: -webkit-center;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px;
    padding: 0px 4px;
    height: 210px;
    overflow-y: scroll;
}

.services-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.agency-sec article p,
.marketing-bshbard article p {
    margin-bottom: 15px;
    color: rgb(102, 102, 102);
    font-size: 16px;
}

.expect-sec .heading p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    width: 78%;
    margin: auto;
    padding: 15px 0px 40px;
    line-height: 28px;
}

.marketing-bshbard article h3 {
    padding-top: 8px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 25px;
    color: rgb(0, 0, 0);
}

.article h2 {
    margin: 0px 0px 14px;
    color: rgb(0, 0, 0);
    font-size: 36px;
    font-weight: 700;
}

.marketing-bshbard .heading h2 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}

.services-item:hover h4 {
    color: rgb(255, 255, 255);
}

.services-item:hover p {
    color: rgb(255, 255, 255);
}

.bussines-sec {
    background-color: var(--primary-color);
    padding: 60px 0px;
    position: relative;
}

.bussines-sec::after,
.bussines-sec::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.bussines-sec::before {
    width: 324px;
    height: 279px;
    left: 0px;
}

.bussines-sec::before {
    background-size: 100%;
}

.bussines-sec::after {
    width: 422px;
    top: -45px;
    height: 429px;
    background-size: cover;
    right: 0px;
    animation: 4s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

.bussines-sec::after {
    background: url("../images/bus-af.webp") no-repeat;
}

.bussines-sec h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 37px;
}

.bussines-sec p {
    color: rgb(0, 0, 0);
    text-align: center;
    margin-bottom: 0px;
}

.bussines-sec a {
    padding: 12px 25px;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: rgb(255, 255, 255);
}

.ready-info {
    text-align: center;
}

.ready-info ul li a.get {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: transparent 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
    background: rgb(0, 0, 0);
}

.ready-info ul li a.get,
.services-item:hover {
    background-color: rgb(0, 0, 0);
    text-decoration: none;
}

.ready-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-left: 0px;
    list-style: none;
    position: relative;
    z-index: 1;
}

.iyt {
    display: inline-block;
    text-align: center;
    margin: 0px 25px;
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    color: rgb(0, 0, 0);
}

.centerCol {
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.faqnew h5 {
    font-size: 44px;
    line-height: 55px;
}

.faqnew p {
    color: rgb(0, 0, 0);
    width: 92%;
    font-weight: 500;
    font-size: 16px;
    margin: 0px 0px 40px;
}

.faqnew .corecontent {
    padding-left: 0px;
    padding-top: 0px;
}

.faqnew .mb-0>a {
    display: block;
    position: relative;
}

.faqnew .mb-0>a::after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0px;
    font-weight: 600;
}

.faqnew .mb-0>a[aria-expanded="true"]::after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

.FaqSec .accordion-button:not(.collapsed) {
    background: transparent;
}

.FaqSec .accordion-button::after {
    left: 3%;
    position: absolute;
}

.FaqSec .accordion-button {
    padding: 20px 0px 20px 60px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    background: transparent;
    border: 0px !important;
    box-shadow: none !important;
}

.FaqSec .accordion-body {
    color: rgb(102, 102, 102);
    font-size: 14px;
    line-height: 24px;
}

.FaqSec .accordion-item {
    border-radius: 9px 9px 0px 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(195, 195, 195) rgb(195, 195, 195) rgb(255, 255, 255);
    border-image: initial;
    margin: 0px 0px 7px;
}

.FaqSec .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: black;
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.FaqSec .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
    color: rgb(0, 0, 0);
}

.FaqSec .card a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 17px 15px 8px 34px;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    text-align: left;
    background-color: rgb(255, 255, 255);
    border: 0px;
    border-radius: 0px;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s;
    font-weight: 700;
    text-decoration: none !important;
}

.FaqSec .card-header {
    padding: 0px 15px 8px 20px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-color: rgba(153, 153, 153, 0.333) rgba(153, 153, 153, 0.333) transparent;
    margin: 0px;
    position: relative;
    background: rgb(255, 255, 255);
    border-bottom-width: initial;
    border-bottom-style: initial;
}

.accordion-item.after-effect::after {
    position: absolute;
    content: "";
    left: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: 100%;
    background-image: linear-gradient(to top, rgb(255, 255, 255), transparent);
}

img.mainImage {
    animation: 100s linear 0s infinite normal both running rotate-center;
}

.rotateimage {
    margin-left: 36px;
    position: relative;
}

.customimage {
    left: -44px;
    position: absolute;
    top: -16px;
}

figure.Centerimage {
    position: absolute;
    top: 40%;
    right: 29%;
    animation: 6s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

section {}

.Seo_service {
    background: rgb(248, 248, 248);
    padding-top: 100px;
    padding-bottom: 30px;
}

.content_service h6 {
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
}

.content_service h5 {
    font-size: 36px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}

.content_service p {
    width: 92%;
    margin-bottom: 15px;
    color: rgb(102, 102, 102);
    font-size: 16px;
}

.content_service h6 span {
    background-color: var(--secondary-color);
    display: block;
    width: 55px;
    height: 1.3px;
}

.Seo_service .serviceBox figure {
    background: rgba(123, 200, 234, 0.35);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.servicetext h5 {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-top: 26px;
    margin-bottom: 10px;
}

.servicetext p {
    width: 100%;
    margin-bottom: 0px;
    color: rgb(102, 102, 102);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.content_service {
    margin-bottom: 35px;
}

.Campaightext .customheading {}

.customheading {
    font-size: 40px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 20px;
}

.secondpara p {
    font-size: 16px;
    line-height: 26px;
    color: rgb(102, 102, 102);
    font-weight: 400;
}

.StragryLeft {
    margin-top: 112px;
}

.serviceBox {
    margin: 0px 0px 80px;
}

.servicetext p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
}

.servicetext h5 {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 28px;
    color: rgb(0, 0, 0);
}

.servicetext p a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    text-decoration: none !important;
}

.Business_Sec {
    background: var(--orange-color);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 50px;
}

.Business_content {
    text-align: center;
}

.Business_content p {
    padding-bottom: 27px;
    margin: auto;
    width: 68%;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

.call {
    display: block;
    font-size: 21px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-bottom: 19px;
    text-decoration: none !important;
}

.Business_content .btnBlue {
    border-color: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.awards-Content {
    text-align: center;
}

.Frequently h1 {
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 700;
    padding: 60px 3px 6px 232px;
}

.Frequently h1 span {
    color: rgb(123, 200, 234);
}

.Frequently-box {
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 21px;
    border-radius: 10px;
    margin-top: 47px;
}

.Frequently-box p {
    font-size: 16px;
    font-weight: 400;
}

.icon {
    display: flex;
    justify-content: space-between;
}

.icon i {
    color: rgb(255, 154, 104);
    font-size: 22px;
}

.icon h6 {
    font-size: 20px;
    font-weight: 600;
    padding-top: 9px;
    padding-bottom: 10px;
}

.select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    margin-top: 10px;
}

.select i {
    font-size: 22px;
    color: rgb(123, 200, 234);
}

.select h6 {
    font-size: 16px;
    font-weight: 600;
}

.bussines-sec-02 {
    background-color: var(--primary-color);
    position: relative;
    padding: 70px 0px;
}

.bussines-sec-02 h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
}

.bussines-sec-02 p {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 22px;
    margin: 0px 0px 30px;
    line-height: 33px;
}

.bussines-sec-02 a {
    padding: 12px 25px;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    background: var(--secondary-color);
    border-color: var(--primary-color);
    color: rgb(255, 255, 255);
}

.Featured-text {
    text-align: center;
    transition: 0.6s;
}

.Featured-text h1 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: 0px 0px 8px;
}

.Featured-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.Featured-box {
    background-color: rgb(243, 247, 255);
    margin-top: 50px;
    border-radius: 10px;
    transition: 0.5s;
}

.Featured-box:hover {
    background-color: var(--secondary-color);
    transition: 0.5s;
}

.Featured-box:hover p {
    color: white;
    transition: 0.5s;
}

.box-text {
    padding: 47px 36px;
    height: 320px;
}

.Featured-box h5 {
    font-size: 21px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    padding-top: 17px;
    margin: 0px 0px 20px;
}

.Featured-box p {
    font-weight: 400;
    transition: 0.5s;
    font-size: 10px;
    color: rgb(102, 102, 102);
    line-height: 30px;
}

.box-text-p {}

.box-para {
    font-size: 33px;
}

.foot {
    background-color: rgb(0, 0, 0);
    padding: 100px 10px 10px;
    margin-top: 108px;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.blue-background {
    background-color: rgb(8, 11, 24);
    padding: 7px 0px;
    margin-top: 64px;
}

.plus-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 25px 0px;
}

.plus-text h6 {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.plus-text i {
    color: white;
    font-size: 22px;
}

.case {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.case a {
    color: rgb(102, 102, 102);
    font-size: 16px;
    text-decoration: none;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 7px;
    align-items: center;
}

.icons i {
    font-size: 35px;
    color: white;
}

.last-text {
    text-align: center;
    margin-top: 26px;
    line-height: 1;
    margin-bottom: 0px;
}

.last-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.toptesti figure img {
    width: unset !important;
}

.Testicenter ul {
    list-style: none;
    padding: 10px 0px;
    margin-bottom: 0px;
    display: flex;
}

.Testicenter p {
    transition: 0.6s;
    color: rgb(70, 70, 70);
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
}

.Testicenter ul li i {
    color: rgb(235, 180, 0);
    font-size: 16px;
    margin-right: 3px;
}

.flexitm .text h6 {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 600;
    margin: 0px;
}

.Testibox {
    box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 6px 2px;
    background: rgb(245, 247, 252);
    padding: 50px 30px;
    border-radius: 20px;
    margin-top: 36px;
    height: 365px;
}

.slider_testi .owl-carousel .owl-stage {
    margin: 17px 11px;
}

.TestimonialSec .owl-stage-outer {
    padding: 11px 0px;
}

.TestimonialSec {}

.flexitm {
    display: flex;
    align-items: center;
    gap: 12px;
}

section.TestimonialSec .owl-dots::after {
    left: 889px;
    width: 147px;
}

.ecommerce_text h5 span {
    font-weight: 700;
    color: rgb(123, 200, 234);
}

.ecommerce_text h5 {
    color: rgb(0, 0, 0);
    padding-bottom: 10px;
    text-align: center;
    font-size: 50px;
    width: 100%;
    font-weight: 700;
    margin: 0px;
}

.ecommerce_text h6 {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.TestimonialSec {
    background-color: rgb(248, 248, 248);
    padding: 70px 0px;
    overflow: hidden;
}

.TestimonialSec .owl-nav.owl-nav {
    display: none;
}

.TestimonialSec .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--button-color);
}

.TestimonialSec .owl-theme .owl-dots .owl-dot span {
    border: 1px solid rgb(174, 174, 174);
    width: 20px;
    height: 20px;
    margin: 5px 8px;
    display: block;
    backface-visibility: visible;
    transition: opacity 0.2s;
    border-radius: 30px;
    background: rgb(237, 234, 234);
}

.TestimonialSec .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    position: relative;
}

.TestimonialSec .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: rgb(123, 200, 234);
}

.bussines-sec {
    overflow: unset !important;
}

.card-block {
    padding: 18px;
}

.card-block p {
    font-size: 15px;
    width: 100%;
    text-align: justify;
}

.icons a {
    transition: 0.4s;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    border-radius: 50px;
    font-size: 17px;
    text-decoration: none;
}

.icons a i {
    font-size: 30px;
}

.icons a:hover {
    background-color: rgb(255, 154, 104);
    transition: 0.4s;
}

.box a {
    color: white;
    font-size: 25px;
    text-decoration: none;
    list-style: none;
}

.box a {
    border: 1.5px solid white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 0px;
    gap: 15px;
}

.txt {
    text-decoration: none;
    color: white;
    margin-bottom: 0px;
    font-size: 18px;
}

.txt span {
    display: block;
}

.align-items-center {
    align-items: center !important;
    justify-content: center;
}

#button {
    display: inline-block;
    background-color: rgb(123, 200, 234);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#button::after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: rgb(255, 255, 255);
}

#button:hover {
    cursor: pointer;
    background-color: rgb(51, 51, 51);
}

#button:active {
    background-color: rgb(85, 85, 85);
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.services-slider .owl-theme .owl-dots {
    display: none;
}

section.FaqSec {
    overflow: hidden;
    padding: 0px 0px 100px;
}

section.Featured {
    padding: 100px 0px;
}

section.Seo_Campaigh .serviceBox figure {
    background: transparent;
    display: block;
}

.helpsec .img-container figure.abs img {
    width: 371px;
}

.Seo_Campaigh figure.Newimage {
    margin: 0px 0px 80px;
}

section.Seo_Campaigh {
    padding: 100px 0px;
}

.campaigns-sec .head h3 {
    font-size: 23px;
    font-weight: 500;
    margin: 0px 0px 20px;
    color: rgb(0, 0, 0);
}

.blue-background .two-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    outline: none;
}


.blue-background a.btn.foot-btn {
    color: rgb(102, 102, 102);
    font-size: 18px;
    gap: 10px;
}

.blue-background a.btn.foot-btn i {
    color: rgb(255, 255, 255);
}

.blue-background .card-body {
    background: transparent;
    color: rgb(255, 255, 255);
}

.blue-background .card-body ul {
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    text-align: center;
    gap: 15px;
}

.blue-background a.btn.foot-btn:hover {
    color: rgb(255, 255, 255);
}

.blue-background .maib-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.blue-background a.btn.foot-btn:active {
    border: 0px;
}

.Section-02 .Service-left {
    width: 100%;
}

.marketing-bshbard article h2 {
    line-height: 45px;
    font-weight: 600;
    font-size: 36px;
    color: rgb(0, 0, 0);
    margin: 0px 0px 20px;
}

.flexitm .text span {
    font-size: 15px;
    font-weight: 400;
    color: rgb(70, 70, 70);
    line-height: 24px;
}

.frequently-sec .accordion-body p {
    font-size: 18px;
    color: rgb(102, 102, 102);
    font-weight: 400;
    line-height: 28px;
}

.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane ul {
    display: flex;
    align-items: self-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 0px 0px 25px;
    list-style: disc;
}

.seo-sec .research.new-box {
    height: 350px;
}

.seo-sec .research.new-box li {
    height: 169px;
    overflow-y: scroll;
}

.footer .head img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}














.footer .blue-background .button-container {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer .blue-background .button-container button {
    padding: 0px 0px;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 0;
    transition: all 0.3s ease-in-out;
}

.footer .blue-background .box {
    width: 100%;
    height: 150px;
    background-color: transparent;
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.footer .blue-background .box2 {
    background-color: transparent;
}

.footer .last-text a {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.footer .last-text span {
    color: rgb(102, 102, 102);
    font-size: 20px;
}

.Service-sec .ElimateBox-2 .DOminatemain .man-img img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.Section-01.privacy-sec{
    height: 460px;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.privacy-sec .Content{}
.Section-01.privacy-sec .Content h1{
    color: #fff;
    text-align: center;
    font-size: 50px;
}
.privacy-contact-sec{
    padding: 80px 0px 30px;
}
.privacy-contact-sec .head{
    text-align: left;
}
.privacy-contact-sec .head h3{
    font-size: 25px;
    font-weight: 500;
    margin: 0px 0px 10px;
}
.privacy-contact-sec .head h3 span{
    font-size: 20px;
    color: #555;
}
.privacy-contact-sec .head p{}
.privacy-contact-sec .head ul{
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    margin: 0px 0px 25px 40px;
}
.privacy-contact-sec .head ul li{
    font-size: 16px;
    color: #000;
}

.privacy-contact-sec .head p a{
        color: rgb(102, 102, 102);
    text-decoration: underline;
    font-weight: 500;
}

/* about-page */

.about-contact{
    padding: 70px 0px;
}
.about-contact .txt{}
.about-contact .txt h2{
    color: #000;
    margin: 0px 0px 25px;
    font-size: 30px;
    font-weight: 600;
}
.about-contact .txt p{
    margin: 0px 0px 20px;
}
.about-contact .main-img{}
.about-contact .main-img img{
    width: 100%;
    height: 500px;
    object-fit: contain
}
/* about-contact */
.modal-form .modal-content {
    border-radius: 15px;
    overflow: hidden;
    background:transparent;
}

.modal-form .form-box {
    padding: 30px 25px 30px;
}
.modal-form .modal-content .main-img {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-form .form-box h2 {
    font-size: 32px;
    margin: 0px 0px 15px;
