* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-image: url('../images/green-landscape-farm.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: 'Basic';
    overflow: hidden;
}
.main-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.main-wrapper .top  {
    display: flex;
    justify-content: center;
}
.main-wrapper .top .logo-wrapper {
    width: 402px;
}
.main-wrapper .top .logo-img{ 
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.bottom{ 
    margin-top: 300px;
}
.bottom .coming-soon-text {
    font-family: inherit;
    font-size: 57px;
    color: white;
    font-weight: bold;
    text-align: center;
}
.bottom .contact-cotaniner {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    column-gap: 10px;
    width: 100%;
}
.bottom .contact-cotaniner .icon-wrapper {
    width: 30px;
}
.bottom .contact-cotaniner .email-icon-img, .bottom .contact-cotaniner .phone-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.bottom .contact-cotaniner .contact-phone{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    background-color: #001f2cc4;
    width: 30%;
    padding:40px 0;
    text-decoration: none;
    transition: transform .7s ease;
}
.bottom .contact-cotaniner .contact-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    background-color: #001f2cc4;
    width: 30%;
    padding:40px 0;
    transition: transform .7s ease;
    text-decoration: none;
}
.bottom .contact-cotaniner .contact-link{
    color: #fff;
    text-decoration: none;
}
.bottom .contact-cotaniner .contact-phone-info {
    color: #fff;
}

@media(max-width:767px) {
    .bottom { 
    margin-top: 100px;
    }
    .main-wrapper .top .logo-wrapper {
     width: 200px;
    }
    .bottom .contact-cotaniner .contact-email, .bottom .contact-cotaniner .contact-phone {
        width: 90%;
    }
    .bottom .coming-soon-text {
        font-size: 30px;
    }
    .bottom .contact-cotaniner {
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

@media(min-width:767px) {
    .bottom .contact-cotaniner .contact-email:hover, .bottom .contact-cotaniner .contact-phone:hover {
    transform: translateY(-20px);
    transition: transform .7s ease;
}
}