/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
:root {
    --border-angle: 0deg;
    --delay: 0.5s;
    --timing: 1s;
}

body {
    font-family: 'Inter', sans-serif;
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    color: white;
    background: url(/asset/images/hero-bg.png) top center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.contact-text-bg {
    text-align: center;
    color: #fff;
    transform: rotate(-90deg);
    position: absolute;
    right: -15rem;
}

.contact-text-bg h1 {
    font-family: 'Inter', sans-serif;
    font-size: 20rem !important;
    color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.logo-container {
    top: 5rem;
    left: 10rem;
    z-index: 1;
}

@media (max-width: 1408px) and (max-height: 800px) {
    .logo-container {
        top: 1rem !important;
        left: 10rem !important;
    }

    .icon-container img {
        max-width: 150px !important;
    }
}



@media (max-width: 1024px) {
    .logo-container {

        top: 10% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
    }

    .icon-container img {
        max-width: 200px !important;
    }
}


.icon-container span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 20px;
    font-weight: 400;
}

.icon-container img {
    max-width: 300px;
}

.box-icon {
    --border-angle: 0deg;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 0.2rem solid black;
    resize: both;
    border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 5s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff' /%3E%3Cstop offset='25%25' stop-color='%23ffffff' /%3E%3Cstop offset='50%25' stop-color='%23ffffff' /%3E%3Cstop offset='100%25' stop-color='%23ffffff' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='square' stroke='url(%23g)' stroke-width='3' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
}