main {
	background-color: #263A4A;
}

.main-container {
    background-color: #263A4A;
    z-index: 1;
    max-width: 1500px;
    min-height: calc(100vh - 80px);
    justify-content: center;
    align-items: center;
    padding: 5%;
    display: flex;
    margin: auto;
}

.contact-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 15px;
}

.text-section {
    color: #ffffff;
}

.text-section h1 {
    font-size: 4rem;
    padding-bottom: 3%;
}

.text-section p {
    font-size: 1.5rem;
    width: 75%;
}

.text-section a {
    color: #ffffff;
    text-decoration: none;
    padding-top: 8%;
}

.contacts {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
}

.email-logo {
    width: 30px;
    padding-right: 5px;
}

.map-logo {
    width: 30px;
    padding-right: 5px;
}

.logos {
    margin: auto;
}

.ULVT-Logo {
    width: 100%;
    padding-bottom: 2%;
    display: flex;
    margin: auto;
}

.social-logos {
    display: flex;
    justify-content: space-between;
    margin: auto 15%;
}

.social_logo img {
    height: 50px;
    align-self: center;
}

.social_logo img:hover {
    opacity: 0.5;
    transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
    .contact-us {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .text-section, .text-section h1, .text-section p, .text-section a {
        margin: auto;
        text-align: center;
    }

    .text-section h1 {
        font-size: 4rem;
        padding-bottom: 3%;
    }
    
    .text-section p {
        font-size: 1.2rem;
        width: 80%;
    }
    
    .text-section a {
        padding-top: 8%;
        font-size: 1.2rem;
        width: 80%;
    }

    .email-logo {
        width: 25px;
    }
    
    .map-logo {
        width: 25px;
    }

    .ULVT-Logo {
        width: 80%;
    }
    
    .social-logos {
        margin: auto 10%;
    }
    
    .social_logo img {
        height: 40px;
    }
}

@media screen and (max-width: 400px) {
    .text-section h1{
        font-size: 3rem;
    }

    .text-section p {
        font-size: 1rem;
        width: 90%;
    }

    .text-section a {
        font-size: 1rem;
        width: 90%;
    }

    .email-logo {
        width: 22px;
    }
    
    .map-logo {
        width: 22px;
    }
}