/* GLOBAL */
/* do not apply styling on classes like col,btn, full,col-right/left,more etc without inheriting them */
:root {
    --font-main: "Delta", sans-serif;
}

@font-face {
    font-family: "Delta";
    src: url(../fonts/DelaGothicOne-Regular.ttf);
    font-weight: 400;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: #111110;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    padding: 0;
    margin: 0;
    line-height: 1;
    color: inherit;
    font-family: var(--font-main);
    font-weight: 400;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

button {
    border: none;
    background: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

button {
    cursor: pointer;
}

ul,
ol,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
    margin-top: 90px;
}

.banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
}

.banner-section .gradient {
    width: 350px;
    height: 350px;
    position: absolute;
    background: rgb(94, 221, 234);
    background: radial-gradient(483.9% 2719.65% at -49.5% -250%, #76f7f0 29.24%, #6986a9 47.38%, #91a0c6 54.97%, #D798E1 65.75%, #CACFFA 81.77%);
    border-radius: 50%;
    filter: blur(200px);
    z-index: -2;
    opacity: 0.75;
}

.banner-section .gradient1  {
    position: absolute;
    top: 0;
    right: 0;
}
.banner-section .gradient2  {
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-section h1 {
    font-size: 90px;
    text-transform: uppercase;
}

@media screen and (max-width: 1600px) {
    header {
        margin-top: 70px;
    }
    .banner-section {
        padding-top: 70px;
    }
    .banner-section h1 {
        font-size: 70px;
    }
}

@media screen and (max-width: 991px) {
    header {
        margin-top: 50px;
    }
    header img {
        max-width: 280px;
    }
    .banner-section {
        padding-top: 50px;
    }
    .banner-section h1 {
        font-size: 55px;
    }
}

@media screen and (max-width: 767px) {
    header {
        margin-top: 30px;
    }
    header img {
        max-width: 200px;
    }
    .banner-section {
        padding-top: 30px;
    }
    .banner-section h1 {
        font-size: 44px;
        margin-inline: 20px;
        text-align: center;
        line-height: 1.15;
    }
    .banner-section .gradient {
        width: 200px;
        height: 200px;
        filter: blur(120px);
    }
}