@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400..700&family=Roboto+Condensed:wght@100..900&display=swap');

/*
    font-family: 'Arimo', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
*/

html {
    min-height: 100%;
}

body {
    background-color: #161829;
    color: #fff;
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100%;
}

strong {
    font-weight: 700;
}

.layout {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    z-index: 0;
}

.layout::after {
    background: linear-gradient(180deg, rgba(20, 2, 32, 0.58), rgba(20, 2, 32, 0) 20%, rgba(20, 2, 32, 0) 75%, rgba(20, 2, 32, 0.89));
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}

.header .logo {
    display: block;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
    padding: 0 10px;
}

.content {
    -webkit-animation: slide-in-top 1s ease-out 0.25s both;
    animation: slide-in-top 1s ease-out 0.25s both;
    background-color: rgba(45, 0, 103, 0.46);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    max-width: 572px;
    width: 100%;
    margin: 0 auto;
    padding: 52px 50px 65px;
    text-align: center;
}

.envelope {
    margin: 0 auto 40px;
}

.title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
}

.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 35px auto;
    max-width: 544px;
    width: 100%;
}

.security {
    -webkit-animation: slide-in-bottom 0.5s ease-out 0.75s both;
    animation: slide-in-bottom 0.5s ease-out 0.75s both;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    padding: 10px;
    max-width: 160px;
    width: 100%;
}

.security:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.security:nth-child(3) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.security:nth-child(2) .security-icon {
    padding: 7px 0 1px;
}

.security:nth-child(3) .security-icon {
    padding-top: 5px;
}

.security-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 6px 0;
}

@media (max-width: 1599px) {
    .header .logo {
        width: 280px;
    }

    .content {
        padding: 38px 30px;
        max-width: 530px;
    }

    .envelope {
        margin-bottom: 25px;
        width: 134px;
    }

    .title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .footer {
        margin: 25px auto;
        max-width: 520px;
    }

    .security-title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .layout {
        background-image: url(../images/bg-mob.jpg);
    }

    .header .logo {
        width: 212px;
    }

    .content {
        padding: 38px 22px;
    }

    .envelope {
        margin-bottom: 26px;
        width: 132px;
    }

    .title {
        font-size: 22px;
        margin-bottom: 17px;
    }

    .security {
        font-size: 11px;
    }

    .security:first-child .security-icon {
        width: 34px;
    }

    .security:nth-child(2) .security-icon {
        padding: 5px 0 0;
        width: 40px;
    }

    .security:nth-child(3) .security-icon {
        padding: 1px 0;
        width: 34px;
    }

    .security-title {
        font-size: 15px;
        margin: 3px 0;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}