html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 1s;
}
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background:inherit;
}
*::-webkit-scrollbar-thumb {
    background-color: rgb(0, 160, 147);
    border-radius: 100px;
}
body {
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
}
:root {
    --main-color: #00eeff;
    --blur-color: #00ffdd;
    --text-color: #ffffff;
    --transparent-white: rgba(255, 255, 255, 0.74);
}
#highlight {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #00ffea50;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999999999;
    transition: transform 0.1s ease;
}
#custom-pointer {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #00ffdd;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: 0s;
}
@media (min-width: 700px) {
    .section {
        background: url('../images/background.webp');
    }
}
.section {
    width: 100%;
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.container {
    width: 1200px;
    display: flex;
    margin: 0 auto;
    position: relative;
}
.title {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    position: relative;
    z-index: 99;
}
.title-without-p {
    margin-bottom: 50px;
}
.title .special-head {
    top: -12px;
    font-size: 100px;
    background: linear-gradient(45deg, #00d9ff, #1be24d7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .4;
    font-family: "Londrina Outline", serif;
}
.title h2 {
    font-size: 66px;
    line-height: 2.4ch;
    position: relative;
    text-align: center;
}
.head-p {
    width: 55%;
    height: auto;
    color: var(--text-color);
    text-align: center;
    font-weight: 300;
    line-height: 2.8ch;
    margin: auto;
    margin-bottom: 60px;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}
.box h3 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
    z-index: 9999999;
}
.box p {
    font-size: 15px;
    font-weight: 300;
    line-height: 2.4ch;
    font-family: "Winky Sans", sans-serif;
    color: var(--transparent-white);
}
.main-button {
    border: 1px solid rgba(255, 255, 255, 0.021);
    border-top-color: rgba(255, 255, 255, 0.356);
    border-left-color: rgba(255, 255, 255, 0.075);
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.685);
    margin-right: 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: .4s;
    padding: 13px 22px;
    letter-spacing: 1px;
    color: white;
}
.main-button:hover {
    border-top-color:rgba(255, 255, 255, 0.021);
    border-left-color:rgba(255, 255, 255, 0.021);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.671);
}
.main-button a {
    padding: 17px;
    color: white;
    font-size: 17px;
    font-family: "Winky Sans", sans-serif;
}
.small-button {
    width: 98%;
    border: 1px solid rgba(255, 255, 255, 0.301);
    background-color: rgba(255, 255, 255, 0.041);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 2px 2px 10px;
    margin: 15px 0 7px 0;
}
.small-button a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
}
.small-button .arrow {
    display: flex;
    align-items: center;
}
.small-button .arrow img{
    width: 28px;
    height: 28px;
    filter: invert(1);
    margin-top: 3px;
}
/* fream work */
.center-position {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1100px) {
    .container {
        width: 90%;
    }
    .title .special-head {
        font-size: 80px;
    }
    .title h2 {
        font-size: 56px;
    }
}
@media (max-width: 700px) {
    body {
        background: url('../images/small-back.png');
        background-size: cover;
    }
    .container {
        width: 100%;
    }
    .section {
        width: 100%;
        padding: 60px 0;
    }
    .title {
        text-align: center;
        margin-bottom: 25px;
    }
    .title .special-head {
        font-size: 46px;
        letter-spacing: 0;
        opacity: .8;
        top: -7px;
    }
    .title h2 {
        width: 90%;
        font-size: 34px;
        line-height: 2.4ch;
    }
    .head-p {
        width: 90%;
        font-size: 17px;
        line-height: 2.6ch;
        letter-spacing: .7px;
        color: rgba(255, 255, 255, 0.849);
    }
    .box h3 {
        font-size: 20px;
        margin-bottom: 13px;
    }
    .box p {
        display: block;
        font-size: 15.7px;
        color: var(--transparent-white);
        font-weight: 200;
        line-height: 2.1ch;
    }
    .small-button a {
        font-size: 11px;
    }
    div:where(.swal2-container).swal2-center>.swal2-popup {
        width: 93%;
    }
    #highlight, #custom-pointer {
        display: none !important;
    }
}