:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #1951C9;
    --sky-blue: #48F9FF;
    --font-color: #363636;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

p {
    margin: 0px;
    color: var(--font-color);
}

h1 {
    font-weight: 300;
    font-size: 80px;
    line-height: 100%;
    color: var(--font-color);
    margin: 0px;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0px auto;
    padding: 0px 20px;
}

.comming-soon-section {
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.nav-link {
    display: inline-block;
}

.comming-soon-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.comming-soon-wrapper div:nth-child(1){
    display: flex;
    flex-direction: column;
    grid-row-gap: 24px;
    width: 100%;
    max-width: 38%;
    transform: translate(0px, -64px);
}

.navbar-top-block {
    position: absolute;
    top: 80px;
}

.comming-soon-image {
    position: absolute;
    width: 100%;
    z-index: -1;
    display: flex;
    justify-content: flex-end;
}

.comming-soon-image img{
    width: 100%;
    max-width: 50%;
    height: 100vh;
    object-fit: cover;
}

.right-blue-block {
    height: 480px;
    width: 120px;
    background-color: var(--sky-blue);
    position: absolute;
    right: 0px;
    top: 0px;
}

.contact-section {
    position: absolute;
    background-color: var(--blue);
    width: calc(100% - 500px);
    padding-top: 160px;
    padding-bottom: 80px;
    position: absolute;
    bottom: 0px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    grid-row-gap: 12px;
}

.contact-inner-block {
    display: flex;
    align-items: center;
    grid-column-gap: 12px;
}

.contact-inner-block a{
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    
}

.contact-inner-block a:hover{
    text-decoration: underline;
}

.page-wrapper {
    position: relative;
}

.container .comming-soon-image {
    display: none;
}

.opacity-0 {
    position: relative;
    z-index: -1;
}

.hero {
    position: absolute;
    z-index: 1;
    bottom: 80px;
}