.grecaptcha-badge { visibility: hidden; }

.hero {
    width: 100%;
    min-height: 100%;
    background: var(--color__1);
    isolation: isolate;
}
    .hero::before {
        content: "";
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100% - 75px);
        background-image: url(../images/rocket.webp);
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
    .hero h1 {
        width: 65%;
        margin-bottom: 2vh;
    }
    .hero > .container {
        min-height: 100vh;
    }
    .hero p {
        width: 35%;
    }
.aws {
    position: absolute;
    bottom: 45px;
    left: 0;
}
.second {
    border-top: 3vh solid var(--color__6);
    background: var(--color__2);
}
.third .content {
    grid-template-columns: .2fr .6fr .2fr;
    padding: 0;
}
.third .content .laptop {
    width: 100%;
    aspect-ratio: 1;
    background: url(../images/laptop.svg) no-repeat center;
    background-size: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    position: relative;
}
.laptop > p {
    align-self: start;
    margin-top: 85px;
}
.laptop > video {
    width: 80%;
    transform: translateY(-17%);
}
.fourth .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.fourth .content > div {
    background: var(--color__2);
    border-radius: 25px;
    padding: 35px 25px 0 25px;
    display: grid;
    grid-template-rows: 50px auto 1fr;
    gap: 15px;
    text-align: center;
    justify-items: center;
}
.fourth p {
    color: var(--color__5);
}
.fifth {
    text-align: center;
}
.fifth .content a {
    display: grid;
    place-content: center;
}
.sixth {
    background: var(--color__2);
}
.sixth a {
    display: grid;
    justify-self: center;
}
#blog {
    background: var(--color__5);
}
#blog .content > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    color: var(--color__1);
    max-width: 100%;
}
#blog .content strong:not(.bttn strong):not(.blog strong) {
    color: var(--color__1);
}
#blog .content .blog {
    width: 100%;
    min-height: 425px;
    background: url(../images/aws.webp) no-repeat center;
    background-size: cover;
    border-radius: 35px;
    position: relative;
}
#blog .blog > span {
    position: absolute;
    top: 0;
    right: 1px;
    border-radius: 15px;
    border-top-right-radius: 35px;
    padding: 15px;
    background: var(--color__1);
    color: var(--color__5);
    text-align: center;
}
#contact {
    background: var(--color__2);
    isolation: isolate;
    position: relative;
}
    #contact::before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/rocket.webp);
        background-position: center;
        background-size: cover;
        opacity: .15;
        transform: scaleX(-1);
        z-index: -1;
    }
#contact .content {
    grid-template-columns: 1fr 1fr;
}
.title {
    grid-column: span 2;
}
.details {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 25px;
}
form {
    display: grid;
    gap: 25px;
}
form .btn {
    justify-self: end;
    min-width: 141px;
}

@media only screen and (max-width: 1253px) {
    .fourth .content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 900px) {
    .hero {
        min-height: 100%;
    }
    .hero p {
        width: 65%;
    }
    #blog .content > div {
        grid-template-columns: 1fr;
    }
    #contact .content, .third .content {
        grid-template-columns: 1fr;
    }
    .title {
        grid-column: unset;
    }
    form {
        grid-row: 2;
    }
}
@media only screen and (max-width: 660px) {
    .fourth .content {
        grid-template-columns: 1fr;
    }
    .laptop > p {
        margin-top: 25px;
    }
    .laptop > video {
        transform: translateY(-10%);
    }
}
@media only screen and (max-width: 465px) {
    .hero .content {
        gap: 15px;
    }
    .hero h1, .hero p {
        width: 100%;
    }
}

.alert {
    position: fixed;
    top: 125px;
    left: 50%;
    transform: translate(-50%);
    width: calc(100vw - 50px);
    max-width: 346px;
    background: var(--color__1);
    border-radius: 58px;
    color: white;
    font-size: 12px;
    display: none;
    z-index: 999;
}
    .alert .ok,
    .alert .fail {
        height: 52px;
        display: grid;
        grid-template-columns: 47px auto 57px;
        align-items: center;
        line-height: 54px;
    }
        .alert .fail .icon {
            width: 23px;
            height: 23px;
            background: #FF0066;
            border-radius: 100%;
            margin-top: -2.5px;
        }
        .alert .ok .icon {
            width: 23px;
            height: 23px;
            background: #2cd952;
            border-radius: 100%;
            margin-top: -2.5px;
        }
            .alert .icon span {
                position: absolute;
                width: 13px;
                height: 2px;
                background: #252f39;
                border-radius: 2px;
                transform: rotate(-45deg) translate(-2.5px, 12.5px);
            }
            .alert .fail .icon span:first-child {
                transform: rotate(-45deg) translate(-4px, 11px);
            }
            .alert .fail .icon span:last-child {
                transform: rotate(45deg) translate(11px, 4px);
            }
            .alert .ok .icon span:last-child {
                width: 7px;
                transform: rotate(45deg) translate(12px, 6px);
            }
        .alert .close {
            width: 17px;
            height: 17px;
            margin: 11px 0 0 15px;
            cursor: pointer;
        }
            .alert .close span {
                position: absolute;
                width: 21px;
                height: 2px;
                background: white;
                border-radius: 2px;
                transform: rotate(45deg);
            }
            .alert .close span:last-child {
                transform: rotate(-45deg);
            }