 

html {
    height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
}

.tortuga-screen {
    height: calc(100vh - 60px);
    background-color: #022e59;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tortuga-screen .container {
    position: relative;
    height: 100%;
}

.tortuga-screen .container > .row-t {
    height: 100%;
}

.tortuga-screen:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #002d5a;
    opacity: .5;
}

.tortuga-screen .left-cel {
    width: 40%;
}

.tortuga-screen .image-box {
    position: relative;
}

.tortuga-screen .image-box:before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    bottom: -60%;
    right: -60%;
    background: radial-gradient(50% 40%, #92e4ff, rgba(0,0,0,0));
    opacity: .8;
}

.tortuga-screen .image-box img {
    position: relative;
}

.tortuga-screen .right-cel {
    padding-left: 80px;
}

.tortuga-screen .right-cel > * {
    position: relative;
}

.tortuga-screen .info-box {
    font-size: 20px;
}


h1 {
    font-size: 80px;
    text-transform: uppercase;
    text-shadow: 0 0 24px #92e4ff;
    line-height: 1; 
}

.tortuga-screen .info-box .word {
    margin: 12px 0 24px;
}

.form-box .input {
    width: 360px;
}




.move1 {
    animation: move1 18s ease-in-out infinite;
    top: -40px;
    display: block;
}

@keyframes move1 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(40px)
    }
    100% {
        transform: translateY(0)
    }
}

.move2 {
    animation: move2 15s ease-in-out infinite;
    top: -20px;
    display: block;
}

@keyframes move2 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(20px)
    }
    100% {
        transform: translateY(0)
    }
}


.tortuga-screen input {
    padding: 12px 16px;
    border: 1px solid #fff;
    font-size: 16px;
    height: auto;
    width: 100%;
}

.tortuga-screen button {
    padding: 12px 24px;
    border: 1px solid #00a2ff;
    font-size: 16px;
}


.tortuga-screen .description {
    font-size: 16px;
    margin-top: 24px;
}

.tortuga-screen .description p {
    margin: 16px 0;
}




/*=====================================================================*/







@media (max-width: 1279px) {

    .tortuga-screen .right-cel {
        padding-left: 40px;
    }

    .form-box .input {
        width: 320px;
        max-width: 100%;
    }

    .tortuga-screen .left-cel {
        width: 32%;
    }

    h1 {
        font-size: 60px;
    }


}


@media (max-width: 959px) {

    .tortuga-screen .container > .row-t {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .tortuga-screen .container > .row-t > * {
        display: block;
        text-align: center;
        width: auto;
    }

    .tortuga-screen .container .image-box {
        max-width: 320px;
    }

    .tortuga-screen .form-box  {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-box .input {
        width: 100%;
        margin-bottom: 16px;
    }

    .tortuga-screen .form-box > * {
        display: block;
    }

    .tortuga-screen .right-cel {
        padding-left: 0;
    }

    .move2 {
        animation: none;
        top: 0;
    }

    .move1 {
        animation: move1 18s ease-in-out infinite;
        top: -20px;
        display: block;
    }

    @keyframes move1 {
        0% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(20px)
        }
        100% {
            transform: translateY(0)
        }
    }

    .tortuga-screen .info-box {
        font-size: 18px;
        margin-top: 20px;
    }

    #container {
        margin-bottom: 0;
    }

    .tortuga-screen input {
        text-align: center;
    }

    .tortuga-screen .description {
        display: none;
    }

}


@media (max-width: 479px) {

    h1 {
        font-size: 12vw;
    }

    .tortuga-screen .container .image-box {
        max-width: 240px;
    }

    .tortuga-screen .form-box > * {
        width: 100%;
    }

    .tortuga-screen button {
        width: 100%;
    }

}

































