@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

.container{
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-thumb {
    background: #f8b242;
}
body::-webkit-scrollbar-track {
    background: #d1d2d4;
}

/************** Header *************/

header {
    position: absolute;
    top: 25px;
    width: 100%;
}

.header_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8b24226;
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid #4B443F;
}

.header_wrap nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header_wrap nav ul li {
    list-style: none;
}

.header_wrap nav ul li a {
    text-decoration: none;
    color: #FFF5E5;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: 0.5s all;
}

.header_wrap nav ul li a:hover{
    transition: 0.5s all;
    color:#f8b242;
}

.header_wrap nav ul li:last-child {
    padding: 15px 10px;
    border: 1px solid #4B443F;
    border-radius: 50px;
}

.header_wrap nav ul li:last-child a {
    background: #F8B242;
    color: #000000;
    font-weight: 500;
    border-radius: 50px;
    padding: 8px 20px;
}

.header_wrap nav ul li a.active {
    color: #F8B242;
    font-weight: 700;
}

.header_wrap nav ul li a.active:before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 2px;
    background: #f8b242;
}



/************** Sections *************/

#sec-1{
    background: url(../img/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1000px;
    display: flex;
    align-items: center;
}

#sec-1   .small_head {
    color: #F8B242;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    border: 1px solid #262626;
    padding: 15px 15px;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 30px;
}

#sec-1 .small_head span {
    background: #F8B242;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    padding: 3px 10px;
    margin-right: 10px;
}

#sec-1 h1 {
    font-size: 60px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: 900;
}

#sec-1 .wht {
    color: #fff;
}

#sec-1 .gradiant {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,178,66,1) 85%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-1 .para {
    color: #fff;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin: 30px 0 40px;
    width: 40%;
}

#sec-1 .cover {
    display: inline-block;
    border: 1px solid #1b1a1c;
    border-radius: 50px;
    padding: 8px 8px;
}

#sec-1 a {
    color: #000;
    background: #fff;
    text-decoration: none;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    border-radius: 50px;
    padding: 5px 15px;
    display: inline-block;
    transition: 0.5s all;
}

#sec-1 a:hover{
    transition: 0.5s all;
    background:#f8b242;
}

#sec-2{
    background: url(../img/bg2.png) #030204;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -180px;
    height: 1020px;
    display: flex;
    align-items: center;
    position: relative;
}

#sec-2::before{
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 646px;
    height: 1338px;
    background: url(../img/shad-r.png);
    background-repeat: no-repeat;
    z-index: 9;
}

#sec-2 .row {
    display: flex;
    align-items: center;
}

#sec-2 .col-left {
    width: 50%;
}

#sec-2 .col-left img {
    width: 100%;
}

#sec-2 .col-right {
    width: 50%;
    padding-left: 40px;
}

#sec-2 span {
    color: #F8B242;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

#sec-2 h2 {
    font-size: 45px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

#sec-2 .wht {
    color: #fff;
}

#sec-2 .gradiant {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 85%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-2 .para {
    color: #fff;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin: 30px 0 50px;
}

#sec-2 .cover {
    display: inline-block;
    border: 1px solid #1b1a1c;
    border-radius: 50px;
    padding: 8px 8px;
}

#sec-2 a {
    color: #000;
    background: #fff;
    text-decoration: none;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    border-radius: 50px;
    padding: 5px 15px;
    display: inline-block;
    transition: 0.5s all;
}

#sec-2 a:hover{
    transition: 0.5s all;
    background:#f8b242;
}


#sec-2 .row-2 {
    margin-top: 50px;
}

#sec-2 .para-2 {
    color: #7A7A7A;
    text-align: center;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

#sec-2 .box-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

#sec-3 {
    background: #020103;
    position: relative;
}

#sec-3::before{
    content: "";
    position: absolute;
    top: -200px;
    left: 0;
    width: 815px;
    height: 1338px;
    background: url(../img/shad-l.png);
    background-repeat: no-repeat;
    z-index: 9;
}

#sec-3::after{
    content: "";
    position: absolute;
    bottom: -80px;
    right: 100px;
    width: 333px;
    height: 170px;
    background: url(../img/Infinity.png);
    background-repeat: no-repeat;
    z-index: 9;
}

#sec-3 .col-full {
    text-align: center;
}

#sec-3 .gradiant {
    font-size: 45px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


#sec-3 .box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 99;
}

#sec-3 .box .l-box {
    background: #342f26b5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border: 1px solid #F8B242;
}

#sec-3 .box .l-box h3 {
    font-size: 25px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 40px 0 20px;
}

#sec-3 .box .l-box p {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    line-height: 30px;
}

#sec-4 {
    padding: 120px 0;
    background: #020103;
    position: relative;
}

#sec-4::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 370px;
    background: url(../img/ser.png);
    background-repeat: no-repeat;
}

#sec-4 .col-full {
    text-align: center;
}

#sec-4 .gradiant {
    font-size: 45px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-4 .col-full p {
    color: #fff;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 30px;
    width: 70%;
    margin: 10px auto 0;
}

.service-slider {
    display: flex;
    align-items: center;
}

.service-slider .left {
    width: 50%;
}

.service-slider .right {
    width: 50%;
}

.service-slider h3 {
    font-size: 30px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 150%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-slider .item p {
    color: #fff;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 35px;
    padding-left: 20px;
    position: relative;
}

.service-slider .item p:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50px;
}

#sec-4 .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    top: 80px;
    left: 150px;
}

#sec-4 .owl-dots button {
    background: #855f24;
    width: 13px;
    height: 13px;
    border-radius: 50px;
}

#sec-4 .owl-dots button.active {
    background: #F8B242;
    width: 17px;
    height: 17px;
}

#sec-5{
    padding: 120px 0;
    background: url(../img/bg4.png) #020103;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#sec-5::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 513px;
    height: 214px;
    background: url(../img/ll.png);
    background-repeat: no-repeat;
}

#sec-5 .col-full {
    text-align: center;
}

#sec-5 .gradiant {
    font-size: 45px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-5 .box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

#sec-5 .box .l-box {
    background: #564831;
    border-radius: 8px;
    padding: 50px 30px;
    border: 1px solid #F8B242;
}

#sec-5 .box .l-box h3 {
    font-size: 25px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
}

#sec-5 .box .l-box p {
    color: #fff;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    line-height: 30px;
    margin-top: 20px;
}

#sec-5 .box .l-box a {
    color: #FAC672;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid;
    transition: 0.5s all;
}

#sec-5 .box .l-box a:hover{
    transition: 0.5s all;
    color:#fff;
}

#sec-6 {
    padding: 120px 0 100px;
    background: url(../img/bg3.png) #020103;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec-6 .col-full {
    text-align: center;
}

#sec-6 .gradiant {
    font-size: 45px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-6 p {
    color: #fff;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 30px;
    width: 40%;
    margin: 10px auto 0;
}

.client-slider{
    background: url(../img/our-cli.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 1075px;
    height: 550px;
    display: flex;
    align-items: center;
}

.client-slider .owl-carousel {
    margin-top: -50px;
}

.client-slider .item {
    width: 100%;
    max-width: 530px;
    margin-left: auto;
    margin-top: -50px;
}

#sec-6 .client-slider .item p {
    width: 65%;
    margin: 0;
}

.client-slider .item h4 {
    color: #fff;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin-top: 20px;
}

.client-slider .item h5 {
    color: #fff;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin-top: 5px;
}

#sec-6 .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    top: 150px;
}

#sec-6 .owl-dots button {
    background: #855f24;
    width: 13px;
    height: 13px;
    border-radius: 50px;
}

#sec-6 .owl-dots button.active {
    background: #F8B242;
    width: 17px;
    height: 17px;
}

#sec-7 {
    padding: 120px 0;
    background: url(../img/cta.png) #020103;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec-7 .col-full {
    text-align: center;
}

#sec-7 h2 {
    font-size: 75px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

#sec-7 .wht {
    color: #fff;
}

#sec-7 .gradiant {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 50%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sec-7 form {
    margin-top: 80px;
}

#sec-7 form .form-group {
    border: 1px solid #35302C;
    border-radius: 8px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 4px;
    position: relative;
}

#sec-7 form input {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 15px 15px;
    outline: none;
    font-size: 16px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #fff;
}

#sec-7 form button {
    position: absolute;
    right: 4px;
    background: #fff;
    top: 4px;
    padding: 15px 15px;
    border-radius: 8px;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 15px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    transition: 0.5s all;
}

#sec-7 form button:hover{
    transition: 0.5s all;
    background:#f8b242;
}

/******** Footer ***********/

footer {
    background: #020103;
    border-top: 1px solid #282729;
    padding: 70px 0;
}

footer .row {
    display: flex;
    justify-content: space-between;
}

footer .col h3 {
    color: #fff;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

footer .col ul {
    margin-top: 20px;
}

footer .col ul li {
    list-style: none;
    margin-bottom: 20px;
}

footer .col ul li a {
    text-decoration: none;
    color: #808081;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    transition: 0.5s all;
}

footer .col ul li a:hover{
    transition: 0.5s all;
    color: #f8b242;
}

.copy-right {
    background: #020103;
    border-top: 1px solid #F8B242;
    padding: 15px 0;
}

.copy-right .row {
    display: flex;
    align-items: center;
}

.copy-right .social{
    width:50%;
}

.copy-right .social ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copy-right .social ul li {
    list-style: none;
}

.copy-right .social ul li a i {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 178, 66, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.copy-right .cpy-right-txt {
    width: 50%;
}

.copy-right .cpy-right-txt p {
    text-align: right;
    color: #808081;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}


#back2Top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    z-index: 99999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: #f8b242;
    color: #fff;
    text-align: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 1px 1px 27px 0 #d9d9ec;
    border-radius: 100%;
    outline: none;
}

.menu-toggle {
    display: none;
}

.header_wrap nav.mobile {
    display: none;
}

.header_wrap {
    position: relative;
}

.header_wrap .mobile {
    position: absolute;
    top: 110px;
    width: 100%;
    right: 0;
}

.header_wrap .mobile ul {
    background: #f8b242;
    display: block;
    padding: 10px 20px;
    border-radius: 15px;
}

.header_wrap .menu-toggle i {
    color: #f8b242;
    font-size: 28px;
}

.header_wrap .mobile ul li {
    margin-bottom: 15px;
}

.header_wrap .mobile ul li:last-child {
    padding: initial;
    border: 0;
    border-radius: inherit;
}

.header_wrap .mobile ul li:last-child a {
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFF5E5;
}


#plan {
    padding: 0 0 120px;
    background: #020103;
    position: relative;
}

#plan::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 815px;
    height: 1338px;
    background: url(../img/shad-l.png);
    background-repeat: no-repeat;
    z-index: 9;
}

#plan::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 646px;
    height: 1338px;
    background: url(../img/shad-r.png);
    background-repeat: no-repeat;
    z-index: 9;
}


.tabs {
    z-index: 99;
    position: relative;
}


#tabs-nav {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border: 1px solid #4B443F;
    padding: 8px 8px;
    border-radius: 50px;
}

#tabs-nav li {
    flex: 1;
    list-style: none;
}

#tabs-nav li a {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    display: block;
    border-radius: 50px;
    text-align: center;
    padding: 10px 5px;
}

#tabs-nav li.active a {
    background: #F8B242;
    color: #000000;
}

#tabs-content {
    margin-top: 50px;
}

#tabs-content .tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border: 1px solid #F8B242;
    border-radius: 10px;
}

#tabs-content .tab-content .box {
    padding: 70px 40px;
    background: #1b150e;
    text-align: center;
    transition: 0.5s all;
    transform: scale(1);
    border-radius: 0;
    border: 0;
}


#tabs-content .tab-content .box:hover {
    transition: 0.5s all;
    transform: scale(1.1);
    border-radius: 10px;
    border: 1px solid #F8B242;
    z-index: 9;
}

#tabs-content .tab-content .box:hover a{
    transition: 0.5s all;
    background: #fff;
    color: #000;
}

#tabs-content .tab-content .box .col{
    transition: 0.5s all;
    border-radius: 0;
}

#tabs-content .tab-content .box:hover .col{
    transition: 0.5s all;
    background: linear-gradient(90deg, rgba(255,253,249,1) 0%, rgba(255,222,156,1) 35%, rgba(250,198,114,1) 100%);
    border-radius: 10px;
}

#tabs-content .tab-content .box:hover .price{
   transition: 0.5s all; 
    color: #000;
}

#tabs-content .tab-content .box h2 {
    text-align: center;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 22px;
    background: linear-gradient(90deg, rgba(255,253,249,1) 0%, rgba(255,222,156,1) 35%, rgba(250,198,114,1) 100%);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    padding: 5px 35px;
    transition: 0.5s all;
}

#tabs-content .tab-content .box .price {
    text-align: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 55px;
    position: relative;
    margin: 20px 0;
    color: #fff;
}

#tabs-content .tab-content .box .price span {
    position: absolute;
    left: 60px;
    font-size: 18px;
    top: 10px;
}

#tabs-content .tab-content .box .txt {
    text-align: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

#tabs-content .tab-content .box hr {
    margin: 20px 0;
}

#tabs-content .tab-content .box a {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    border: 1px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding: 8px 20px;
    display: inline-block;
    margin-top: 20px;
    transition: 0.5s all;
}


#tabs-content .tab-content .box:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#tabs-content .tab-content .box:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}