@font-face {
    font-family: "Roboto";
    font-weight: 100;
    src: url(../fonts/Roboto-Thin.ttf) format('opentype');
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    src: url(../fonts/Roboto-Regular.ttf) format('opentype');
}

:root {
    --main-color: #0f172a;
    /* --border-color: #271d55; */
    --styled-container-gradient-color-1: #152739;
    --styled-container-gradient-color-2: #151e36;
    --text-input-background-color: #151e36;
    --button-color: #e8d94b;
    --button-color-hover: #e6db74d8;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
}

p {
    margin: 0;
    padding: 16px 0 24px 0;
    letter-spacing: .05rem;
    line-height: 24px;
}

b {
    font-weight: 400;
}

html {
    background-color: var(--main-color);
}

hr {
    background-color: #152739;
    height: 2px;
    border-width: 0;
}

.logo-wrapper {
    position: relative
}

.logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.logo-hover:hover {
    opacity: 1;
}

nav {
    display: flex;
    align-items: center;
    height: 90px;
}

nav ul {
    display: inline-block;
    z-index: 1;
    width: 100%;
}

nav ul li {
    display: inline-block;
    padding: 0px 12px;
    font-size: 1.1rem;
}

nav ul li:first-of-type {
    padding-left: 24px;
}

nav ul li.email {
    float: right;
    font-size: 18px;
}

nav ul li.email a {
    font-weight: 400;
}

nav ul li a:hover {
    transition: text-shadow 0.5s ease;
    text-shadow: 0 0 7px #7bc1f7;
}

nav ul li a:active {
    text-shadow: 0 0 7px #7bc1f7;
}

.checkbtn {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

.nav-logo {
    padding: 2px 12px;
}

.main-title {
    text-align: center;
    margin: 80px 0 80px 0;
}

.section-title {
    text-align: center;
    margin: 120px 0 40px 0;
}

h2 {
    font-weight: 400;
    line-height: normal;
}

.styled-container {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: var(--styled-container-gradient-color-2);
    /* background-image: linear-gradient(var(--styled-container-gradient-color-1), var(--styled-container-gradient-color-2)); */
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px 24px;
    min-height: 400px;

}

.styled-container-main {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 12px;
    background-image: linear-gradient(var(--styled-container-gradient-color-1), var(--styled-container-gradient-color-2));
    padding: 0;
    display: flex;
    /* border: 1px solid #265761; */
    /* box-shadow: 0px 0px 4px #265761; */
}

.container-main-left {
    width: 50%;
    padding: 40px 50px 40px 50px;
}

.container-main-right {
    width: 50%;
    display: flex;
    align-items: stretch;
    background: url('../assets/code.png');
    margin-top: 20px;
    background-size: 1200px;
    border-radius: 0 0 20px 0;
}

.button-primary {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--button-color);
    color: black;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: 400;

    &:hover {
        box-shadow: 0px 0px 7px #7bc1f7;
        -moz-box-shadow: 0px 0px 7px #7bc1f7;
        -webkit-box-shadow: 0px 0px 7px #7bc1f7;
    }
}

.form-input-left {
    padding-right: 16px;
    flex-grow: 1;
}

.form-input-right {
    padding-left: 16px;
    flex-grow: 1;
}

.container-form-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
}

.form-button-primary {
    margin-bottom: 24px;
    height: 39px;
    padding: 0 30px;
    background-color: var(--button-color);
    color: black;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
    border: none;
    font-size: medium;
    font-weight: 400;

    &:hover {
        box-shadow: 0px 0px 7px #7bc1f7;
        -moz-box-shadow: 0px 0px 7px #7bc1f7;
        -webkit-box-shadow: 0px 0px 7px #7bc1f7;
        cursor: pointer;
    }
}

.client-logo-container {
    display: flex;
    align-items: center;
    height: 100px;
}

.client-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}

.button-primary-target-blank {
    margin-top: auto;
    padding: 10px 30px;
    background-color: var(--button-color);
    color: black;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: 400;

    &:hover {
        box-shadow: 0px 0px 7px #7bc1f7;
        -moz-box-shadow: 0px 0px 7px #7bc1f7;
        -webkit-box-shadow: 0px 0px 7px #7bc1f7;
    }

    &::after {
        margin: -3px 3px 0 5px;
        background-image: url(../assets/open_in_new_window_icon.png);
        background-size: 18px 18px;
        display: inline-block;
        width: 18px;
        height: 18px;
        content: "";
        vertical-align: middle;
        line-height: normal;
    }

}

.text-input-label {
    margin-top: 12px;
    display: inline-block;
}

.text-input {
    font-size: 16px;
    height: 38px;
    border-radius: 8px;
    background-color: var(--text-input-background-color);

    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 8px;
    border: 1px solid var(--border-color);
}

.text-input:focus {
    outline: none;
    border: 1px solid #7bc1f7;
    box-shadow: 0px 0px 4px #7bc1f7;
    -moz-box-shadow: 0px 0px 4px #7bc1f7;
    -webkit-box-shadow: 0px 0px 4px #7bc1f7;
}

.text-area {
    font-size: 16px;
    height: 160px;
    border-radius: 8px;
    background-color: var(--text-input-background-color);
    width: 100%;
    box-sizing: border-box;
    padding: 8px 0 0 8px;
    border: 1px solid var(--border-color);
    resize: none;
    margin-bottom: 24px;
}

.text-area:focus {
    outline: none;
    border: 1px solid #7bc1f7;
    box-shadow: 0px 0px 4px #7bc1f7;
    -moz-box-shadow: 0px 0px 4px #7bc1f7;
    -webkit-box-shadow: 0px 0px 4px #7bc1f7;
}

.form-result {
    height: 64px;
}

.form-result p {
    font-size: 16px;
    text-align: center;
}

.container-footer {
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-copyright {
    text-align: center;
    font-size: 14px;
    padding-bottom: 24px;
}

.footer-email {
    float: right;
    font-weight: 400;
    font-size: 18px;
}

.footer-email:hover {
    text-shadow: 0 0 6px #7bc1f7;
}

@media (max-width: 900px) {

    .service-card {
        margin-bottom: 25px !important;
    }

    .service-card:last-child {
        margin-bottom: 0 !important;
    }

    a.burger-menu {
        display: inline-block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: var(--main-color);
        top: 90px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        background-image: linear-gradient(var(--main-color), var(--styled-container-gradient-color-1));
    }

    nav ul li {
        display: block;
        padding: 20px 0 !important;
        font-size: 20px;
    }

    nav ul li.email {
        float: none;
        font-size: 24px;
        margin-bottom: 30px;
        position: absolute;
        bottom: 70px;
        left: 0;
        right: 0;
    }

    .checkbtn {
        display: block;
        margin-left: auto;
        margin-right: 12px
    }

    #check:checked~ul {
        left: 0;

    }

    #check:checked html {
        overflow: hidden;
    }

    .main-title {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .container-main-left {
        width: 100%;
        padding: 32px 24px;
    }

    .hidden-mobile {
        display: none;
    }

    .container-copyright {
        font-size: 12px;
    }

    .section-title {
        margin: 80px 0 40px 0;
    }
}