#root {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #212323;
}

#body > div:first-child {
    padding-top: 4.2%;
}

hr {
    border: 1px solid #212323;
    margin-top: 6rem;
}

.header-heading {
    font-size: 74px;
    font-weight: bolder;
    font-family: 'DM Serif Display';
}

.heading {
    font-size: 57px;
    font-weight: bolder;
    font-family: 'DM Serif Display';
    margin-bottom: 3%;
}

.btn {
    border-radius: 0;
    width: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: white;
    font-weight: bold;
}

.black-button {
    background-color: #212323;
    border: 1px solid #212323;
}

.black-button:hover {
    background-color: transparent;
    color: #212323;
}

.blue-button:hover {
    background-color: transparent;
    color: #273e60;
}

.blue-button {
    background-color: #273e60;
    border: 1px solid #273e60;
}

input, textarea {
    border: none !important;
    border-bottom: 2px solid #273e60 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

input::placeholder, textarea::placeholder {
    color: #BFBFBF !important;
}

textarea {
    min-height: 150px;
}

.form-group {
    margin-bottom: 15%;
}

.form-control:focus {
    box-shadow: none;
}

.custom-file-input {
    opacity: 1;
}

.grey-background {
    background-color: #F9F9F9;
}

.white-background {
    background-color: white;
}

.blue-background {
    background-color: #273e60;
}

.white-font {
    color: white;
}

.blue-font {
    color: #273e60;
}

.carousel-item {
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

.carousel-item > img {
    height: 100vh;
    object-fit: cover;
}

@keyframes rightBackgroundAnimation {
    0% {
        background-position: 99vw;
    }
    100% {
        background-position: 0;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 75%;
    }
}

@media (max-width: 990px) {
    .header-heading {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    #root {
        font-size: 14px;
    }

    #body > div:first-child {
        padding-top: 15.2%;
    }

    .header-heading {
        font-size: 40px;
    }

    .heading {
        font-size: 30px;
        margin-bottom: 5%;
    }
}
