*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background: #051232;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0px 0px 20px 0px rgba(7, 20, 52, .1);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0;
    padding: 0 50px;
}

.navbar__logo img {
    max-height: 80px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #e2f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
}

.navbar__links:hover {
    text-decoration: underline;
    color: #67cdf5;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1; 
    }

   .navbar__menu .active {
        background: #fff;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #020202;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*Contact section*/
.contact__us {
    background: #fff;
    padding: 10px 0;
}
.contact {
    background-color:#0a7fbf ;
    padding: 6rem 0;
}
.contact__container {
   display: flex;
}

.contact__container h1 {
    font-size: 50px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #020202;
}

.contact__container p {
    font-size: 45px;
    font-family: "Montserrat", sans-serif;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
}

label{
    margin-top: 10px;
    font-weight: bold;
    color: #030303;
    font-weight: 10px;
}

input, textarea {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: 10px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1ea7dd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color:#67cdf5;
}

#form-messages {
    margin-top: 20px;
    color: red;
    text-align: center;
}

.contact__btn {
    font-size: 1.8rem;
    background: #1ea7dd;
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    margin-right: 920px;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.contact__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.contact__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1ea7dd;
    transition: all 0.35s;
    border-radius: 4px; 
}

.contact__btn:hover {
    color: #fff;
}

.contact__btn:hover:after {
    width: 100%;
}

.contact__img--container {
    text-align: center;
}

.contact__img--card {
    margin-top: 35px;
    height:500px;
    width: 1519px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #020202;
    background-color: darkgray;
}

.location__container {
    margin-right: 100px;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    height: 70%;
    text-align: left;
    padding: 30px;
}

.box {
    flex: 1;
    padding: 10px;
    margin: 1px;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
    height: 100%;
    text-align: left;
    padding: 30px;
}

.box h1 {
    font-size: 50px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #020202;
}

.location__details h2 {
    font-family: "Montserrat", sans-serif;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 80px;
}

.location__details p {
    font-size: 15px;
    font-weight: 10px;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 80px;
}

.location__img img {
    max-height: 80px;
    margin-left: 30px;
}

@media screen and (max-width: 768px) {
    .contact__heading {
        font-size: 60px;
    }

    .contact__description {
        font-size: 40px;
    }
}

/*Footer section*/
.footer__logo img {
    max-height: 90px;
    margin-left: 100px;
}

.footer__location {
    margin-top: 130px;
}

.footer__location h2 {
    margin-left: 200px;
    margin-bottom: 10px;
}

.footer__location iframe{
    max-height: 200px;
    margin-left: 200px;
    max-width: 400px;

}

.footer__container {
    display: flex;
    height: 200px;
    align-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    margin-left: 200px;
    margin-top: 10px;
}

.footer__link--items h2 {
    margin-bottom: 16px;
    color: #020202;
}

.footer__link--items a {
    color: #020202;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3 ease-out;
}

.footer__link--items a:hover {
    color: #1ea7dd;
    transition: 0.3 ease-out;
}

.social__icon--link {
    color: #030303;
    font-size: 24px;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 50px;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.website__rights {
    color: #020202;
    margin-left: 100px;
}