@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Roboto", sans-serif;
}

body {
    height: 100vh;
}

#root {
    height: 100%;
}

.wrapper {
    height: 100%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(98.9deg, #061625 18.22%, rgba(11, 32, 52, 0) 116.97%), url(/assets/bg.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    min-width: 750px;
    width: 100%;
    padding: 5px;
    justify-content: center;
}
.content-left {
    min-width: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 120px;
}

.content-right {
    display: flex;
    flex: 1;
    position: relative;
    justify-content: center;
    align-items: center;
}
.content-right .img-content {
    width: 900px;
    height: 100%;
    background-image: url(/assets/screen.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0px;
}
.content-left .logo-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 46px;
}

.logo-container .name {
    font-family: Helvetica;
    font-style: normal;
    font-weight: 300;
    font-size: 15.5444px;
    line-height: 41px;
    color: #f58220;
    height: 42px;
    display: flex;
    align-items: center;
}

.content-left .logo {
    width: 100%;
    height: 86px;
    background-image: url(/assets/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.message {
    position: relative;
    display: flex;
    white-space: nowrap;
    flex-direction: column;
}

.message span:nth-child(1) {
    color: #ffffff;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
}

.message span:nth-child(2) {
    font-size: 60px;
    line-height: 80px;
    height: 80px;
    color: #f58220;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.text-content span {
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 13px;
}

.contact {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.contact-item {
    display: flex;
    align-items: center;
    padding-left: 28px;
    margin-top: 5px;
}

.time {
    margin-top: 60px;
}

.contact a {
    text-decoration: none;
}

.contact br {
    margin-right: 10px;
}

.contact .phone {
    width: 18px;
    height: 22px;
    background-image: url(/assets/phone.svg);
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.contact .calendar {
    width: 22px;
    height: 22px;
    background-image: url(/assets/calendar.svg);
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.contact span {
    height: 25px;
    font-family: Helvetica;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    color: #ffffff;
}

.contact strong {
    color: #f58220;
    margin-left: 10px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 1440px) {
    .content-left {
        padding-left: 60px;
    }

    .content-right .img-content {
        width: 800px;
    }
}

@media (max-width: 1300px) {
    .content-left {
        padding-left: 30px;
    }
    .logo-container .name {
        font-size: 13px;
    }
    .message span:nth-child(1) {
        font-size: 18px;
    }
    .message span:nth-child(2) {
        font-size: 58px;
    }
    .text-content span {
        font-size: 18px;
    }

    .contact span {
        font-size: 16px;
    }
}

@media (max-width: 1220px) {
    .content-left {
        padding-left: 30px;
    }
    .content-right .img-content {
        width: 100%;
    }
    .content-left .logo-container {
        margin-bottom: 30px;
    }
    .logo-container .name {
        font-size: 11px;
    }
    .message span:nth-child(1) {
        font-size: 16px;
    }
    .message span:nth-child(2) {
        font-size: 50px;
    }
    .text-content span {
        font-size: 16px;
    }
    .time {
        margin-top: 30px;
    }

    .contact span {
        font-size: 14px;
    }
    .content-left .logo-container {
        margin-bottom: 40px;
    }
}

@media (max-width: 900px) {
    .container {
        display: flex;
        justify-content: center;
    }
    .content-right {
        display: none;
    }
    .content-left {
        width: 90%;
        align-items: center;
        padding: 0;
    }

    .content-left .logo-container,
    .message,
    .text-content {
        align-items: center;
    }
    .content-left .logo {
        width: 131.96px;
    }
    .contact {
        justify-content: center;
    }
    .logo-container .name {
        font-size: 15.54px;
    }
    .message span:nth-child(1) {
        font-size: 16px;
    }
    .message span:nth-child(2) {
        font-size: 32px;
    }
    .text-content span {
        font-size: 15px;
    }

    .contact span {
        font-size: 14px;
    }
}
