* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #f0f5f7;
}

html {
    overflow-x: hidden;
}

.cta a {
    text-decoration: none;
    color: white;
}

.cta a:hover {
    color: white;
}

.row a {
    width: auto !important;
}

h1 {
    font-weight: 300;
    line-height: 1.25;
    max-width: 340px;
    font-size: 1.6rem;
    margin: auto;
}

@media screen and (min-width: 768px) {
    h1 span:nth-child(2) {
        white-space: nowrap;
    }
    h1 {
        font-size: 2.2rem;
        max-width: 620px;
    }
}

h2 {
    font-weight: 600;
    margin-bottom: 40px;
}

p {
    font-weight: 300;
    line-height: 1.75;
}

.subheader {
    font-size: 1.1rem;
    font-weight: 300 !important;
    line-height: 1.25;
}

@media screen and (min-width: 576px) {
    .subheader {
        font-size: 1.4rem;
    }
}

.subheader-smaller {
    font-size: 1.4rem;
}

@media screen and (min-width: 576px) {
    .subheader-smaller {
        font-size: inherit;
    }
}

/* Header */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0 40px;
}

.header__x-kom {
    height: 30px;
    width: auto;
}

.header__dell {
    height: 50px;
    width: auto;
}

@media screen and (min-width: 576px) {
    .header__x-kom {
        height: 40px;
    }

    .header__dell {
        height: 60px;
    }
}

/* Top section */
.top {
    height: 600px;
    background: linear-gradient(#daf1fc, transparent);
}

.top__vectors-wrapper {
    max-width: 1600px;
    margin-top: 80px;
    width: 100%;
    height: auto;
}
@media screen and (min-width: 940px) {
    .top__vectors-wrapper {
        justify-content: space-between !important;
    }
}

.top__vector {
    height: auto;
    max-height: 280px;
    width: auto;
}

.top__vector:nth-of-type(1) {
    position: absolute;
    left: -120px;
    bottom: 60px;
}

@media screen and (min-width: 768px) {
    .top__vector:nth-of-type(1) {
        max-height: 360px;
    }
}
@media screen and (min-width: 1100px) {
    .top__vector:nth-of-type(1) {
        max-height: 360px;
        left: 0;
        bottom: initial;
    }
}

.top__vector:nth-of-type(2) {
    height: auto;
    max-height: 280px;
    width: auto;
    position: absolute;
    right: -160px;
    bottom: 60px;
}

@media screen and (min-width: 768px) {
    .top__vector:nth-of-type(2) {
        max-height: 340px;
    }
}

@media screen and (min-width: 1100px) {
    .top__vector:nth-of-type(2) {
        max-height: 380px;
        right: 0;
        bottom: initial;
    }
}

.top__copy {
    z-index: 2;
    margin: -60px;
}

@media screen and (min-width: 576px) {
    .top__copy {
        z-index: 2;
        margin: 0;
    }
}

.cta {
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    font-family: "Nunito", sans-serif;
    display: inline-block;
    color: white;
    background-color: #0082fa;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 990px;
    transition: background-color 0.2s, color 0.3s;
    margin-top: 29px;
    padding: 8px 35px;
    font-size: 18px;
    font-weight: 300;
}

.cta:hover {
    background-color: #0070cc;
}

/* Products section */
.bg-asset-1 {
    position: absolute;
    right: -400px;
    width: auto;
    top: -100px;
}

.products__block {
    color: #000;
    text-align: center;
    margin: 1rem 0;
}

.products__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.products__wrapper p {
    margin-bottom: 0;
    text-align: left;
    padding: 0 10%;
}

.products__feature-name {
    font-weight: 600;
}

.products__item {
    border-bottom: 6px solid transparent;
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 21px #0000000f;
    box-shadow: 0px 3px 21px #0000000f;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding-bottom: 1rem;
    color: #000;
    margin: 2rem 1rem;
    text-decoration: none;
}

.products__name {
    font-size: 20px;
    font-weight: 300;
}

.products__item img {
    padding: 1rem 2rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    max-height: 300px;
}

.products__arrow-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.products__arrow {
    height: 45px;
    width: 45px;
    background-color: #0082fa;
    border-radius: 90px;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.products__arrow-svg {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    stroke: #fff;
}

.products__item:hover {
    border-bottom: 6px solid #0082fa;
}

.products__item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.products__item:hover .products__arrow {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #fff;
}

.products__item:hover .products__arrow-svg {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    stroke: #0082fa;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

/* All in one section */
.bg-asset-2 {
    position: absolute;
    left: -400px;
    width: auto;
    z-index: -1 !important;
}

.aio {
    background-color: #dde8f0;
    border-radius: 30px;
}

/* Servers section */

.bg-asset-3 {
    position: absolute;
    right: -500px;
    top: -500px;
    width: auto;
}

/* Config section */
.config {
    border-radius: 30px;
    background-color: black;
    background-image: url("../img/config_bg.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 580px;
}

@media screen and (min-width: 768px) {
    .config {
        background-size: 160%;
    }
}

/* GSAP */
.fade-in,
.fade-in-delay,
.slide-up,
.slide-up-delay,
.slide-in-right,
.slide-in-right-delay,
.slide-in-left,
.slide-in-left-delay {
    opacity: 0;
}

.slide-up,
.slide-up-delay {
    transform: translateY(30px);
}

.slide-in-right,
.slide-in-right-delay {
    transform: translateX(-50px);
}

.slide-in-left,
.slide-in-left-delay {
    transform: translateX(50px);
}
