@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --cu-primary: #0EC143;
    --cu-secondary-1: rgb(67 71 94 / 100%);
    --cu-secondary-2: rgb(67 71 94 / 70%);
    --cu-secondary-3: rgb(67 71 94 / 60%);
    --cu-grey: #ABABAB;
    --cu-lightgrey: #cbcfce;
    --cu-black: #1F1F1F;
}

*,
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;

}

body {
    background-color: unset;
}

section.section {
    padding: 100px 0;
}

header {
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.8s;
    background-color: transparent;
    width: 100%;
    padding: 20px;
}

header.it-fixed {
    background: linear-gradient(45deg, white, transparent);
    box-shadow: 0 -3px 15px #9d9d9d36;
    backdrop-filter: blur(10px);
}

header h3.logo {
    font-size: 45px;
}

header.it-fixed h3.logo {
    font-size: 28px;
}

.hero {
    background: url('../images/hero-img.png') no-repeat bottom;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero::before {
    position: absolute;
    inset: 0 0 0 0;
    content: "";
    width: 100%;
    background: rgb(106 110 135 / 76%);
}

.hero h1 {
    position: relative;
    font-weight: 800;
    color: #ffffff;
    z-index: 1;
    text-transform: capitalize;
    max-width: 900px;
    text-align: center;
    font-size: 60px;
    line-height: 90px;
    letter-spacing: 0.25rem;
    margin-bottom: 50px;
}

.header a {
    text-decoration: none;
}

.text-cuprimary {
    color: var(--cu-primary);
}

.logo b {
    font-weight: 800;
}

.scroll-bi {
    position: absolute !important;
    bottom: 15%;
}

section.get-touch {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(45deg, #F6F6F6, #BDBDBD);
    padding: 25px 35px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    margin-top: -30px;
    position: relative;
}

section.get-touch h2 {
    font-size: 30px;
    font-weight: 800;
}

section.get-touch a[type="button"] {
    display: inline-block;
    color: var(--cu-black);
    border: none;
    background-color: #ffffff;
    padding: 10px 30px;
    border-radius: 18px;
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
}

section.get-touch a[type="button"] img {
    margin-left: 15px;
}

header .extra-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

header .extra-links li a {
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
}

header.it-fixed .extra-links li a {
    color: var(--cu-black);
}

h2.commontitle {
    font-size: 38px;
    font-weight: 800;
    color: var(--cu-black);
    margin-bottom: 30px;
    margin-top: 15px;
}

.inner-contin {
    padding-left: 10%;
    position: relative;
}

ul.nummber-list,
ul.check-list {
    list-style: none;
}

ul.nummber-list li,
ul.check-list li {
    padding: 20px;
    padding-left: 50px;
    border-bottom: 1px solid var(--cu-lightgrey);
    position: relative;
    font-size: 22px;
    color: var(--cu-black);
}

ul.nummber-list li::before,
ul.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 28px;
    top: 21%;
    color: var(--cu-lightgrey);
}

ul.nummber-list li:nth-child(1)::before {
    content: "01";
}

ul.nummber-list li:nth-child(2)::before {
    content: "02";
}

ul.nummber-list li:nth-child(3)::before {
    content: "03";
}

ul.nummber-list li:last-child,
ul.check-list li:last-child {
    border-bottom: none;
}

ul.check-list li::before {
    background: url(../images/check.png);
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 27px;
}

.img-focucon {
    position: relative;
}

.img-focucon::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 100px;
    background: url('../images/green-pattern.png') no-repeat center;
    background-size: contain;
    right: -33px;
    top: 50px;
    z-index: -1;
}

.img-focucon::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 75px;
    background: var(--cu-secondary-2);
    background-size: contain;
    right: -60px;
    bottom: 50px;
    border-radius: 10px;
}

.inner-contin::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 45px;
    background: url('../images/black-pattern.png') no-repeat center;
    background-size: contain;
    right: -33px;
    top: -50px;
    z-index: -1;
}

.divider-before {
    position: relative;
}

.divider-before::before {
    content: "";
    display: block;
    width: 60%;
    background-color: var(--cu-lightgrey);
    height: 1px;
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.cust-card.card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #F6F6F6, #BDBDBD);
    padding: 25px;
}

.cust-card.card img {
    width: fit-content;
    margin: auto;
}

.cust-card.card .card-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

.geo-patt {
    position: relative;
}

.geo-patt::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 45px;
    background: url('../images/black-pattern.png') no-repeat center;
    background-size: contain;
    left: 40px;
    top: -35px;
    z-index: -1;
}

.inner-bring {
    padding-right: 11%;
}

.bring-table .img-focucon::before {
    left: -33px;
    right: unset;
}

.bring-table .img-focucon::after {
    left: -60px;
    right: unset;
}

.text-cugrey {
    color: var(--cu-grey);
}

#footer .container {
    padding: 25px;
    border-top: 1px solid var(--cu-grey);
}

.owl-stage,
.owl-item,
.item {
    height: 100%;
}

button[type="button"].owl-next,
button[type="button"].owl-prev {
    background-color: var(--cu-primary) !important;
    width: 30px;
    height: 30px;
    font-size: 27px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

button[type="button"].owl-next.disabled,
button[type="button"].owl-prev.disabled {
    background-color: var(--cu-grey) !important;
}

.owl-nav button[type="button"] span {
    color: #ffffff;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#footer .d-flex {
    flex-wrap: wrap;
    gap: 15px;
}

.main-content {
    overflow: hidden;
}

#footer h5,
#footer .h5 {
    font-size: 15px;
}