@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Ubuntu+Condensed&display=swap');



* {
    margin: 0;
    padding: 0;
    transition: 0.5s;
    box-sizing: border-box;
    object-fit: cover;
    text-transform: uppercase;
    font-family: 'Alumni Sans Collegiate One', sans-serif;
    font-family: 'Bebas Neue', cursive;
    font-family: 'Cardo', serif;
    font-family: 'Cormorant SC', serif;
    font-family: 'Roboto Condensed', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
}




:root {
    --blue: rgb(8, 76, 139) !important;
    --gray: rgb(172, 172, 172);
    --white: rgb(226, 226, 226);
    --black: rgb(29, 27, 27);
    --para: rgb(52, 40, 40);
    --red: rgb(191, 1, 1);
    --border: rgb(150, 149, 149);
    --orange: rgb(218, 104, 29);
}



/* header section  */
header {
    width: 100%;
    height: 70vh;
    position: relative;
    text-align: center;

}


header .contact-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .contact-banner h1 {
    color: var(--blue);
    font-weight: bolder;
}

header .contact-banner h1 span {
    color: var(--white);
}

header .contact-banner h1 a {
    text-decoration: none;
    color: var(--white);
    text-shadow: 2px 3px var(--black);
}

header .contact-banner h1 a:hover {
    color: var(--red);
}


/* ------------------------Contact content -------------------------------------------------------- */

.contact-content {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin: 3%;
}

.contact-content .contact-info {
    width: 45%;
}

.contact-content .contact-details .contact-address .c-call,
.contact-content .contact-details .contact-address .c-locate,
.contact-content .contact-details .contact-address .c-mail {
    display: flex;
    align-items: center;
    padding: 8px;
}

.contact-content .contact-details .contact-address .c-locate a {
    display: flex;
}

.contact-content .contact-details .contact-address .c-locate a p {
    margin-right: 10px;

}

.contact-content .contact-details .contact-address .c-details i {
    margin: 10px;
    font-size: 2rem;
    color: var(--blue);
}

.contact-content .contact-details .contact-address .c-mail a p {
    text-transform: lowercase;
}

.contact-content .contact-details .contact-address .c-details a {
    text-decoration: none;
    color: var(--gray);
    transition: 0.1s;
}

.contact-content .contact-info h3 {
    font-weight: bolder;
    color: var(--blue);
}

.contact-content .contact-info h3 span {
    color: var(--black);
}

.contact-content .contact-title p {
    text-transform: initial;
    color: var(--para);
    font-size: 1.2rem;
}

.contact-content .contact-title .contact-social {
    display: flex;
    justify-content: space-around;
}

.contact-content .contact-title .contact-social a {
    border: 0.1px solid var(--gray);
    padding: 10px;
    border-radius: 50%;
}

.contact-content .contact-title .contact-social a i {
    font-size: 25px;
    color: var(--gray);

}


.contact-content .contact-title .contact-social a:hover {
    border-color: var(--blue);
}

.contact-content .contact-title .contact-social a:hover i {
    color: var(--blue);
}

.contact-content .contact-details .contact-address .c-details a:hover {
    color: var(--blue);

}

/* -----------------------message section ----------------------------------------------- */

.message-sec {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
    height: 70vh;
    margin-bottom: 3%;

}


.message-sec .message-content {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.message-sec .message-content img {
    width: 100%;
    height: 100%;


}

.message-sec .message-content p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.message-sec .message-form {
    width: 40%;
    height: 100%;
    position: relative;
    padding: 20px 0 0 20px;
    background: rgb(237, 237, 237);
    text-align: center;

}

.message-sec .message-form h3 {
    color: var(--blue);
    font-weight: bolder;
}

.message-sec .message-form h3 span {
    color: var(--black);
}


.message-sec .message-form form fieldset input {
    width: 80%;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 0.1px solid var(--border);
    padding: 5px;
    height: 30px;
    font-size: 15px;
    text-transform: initial;
}

.message-sec .message-form form fieldset textarea {
    width: 80%;
    height: 10vh;
    border-radius: 5px;
    border: 0.1px solid var(--border);
    padding: 5px;
    text-transform: initial;
}


.message-sec .message-form form button{
    width: 80%;
    height: 50px;
    margin-top: 50px;
    border-radius: 15px;
    border: 0.1px solid var(--blue);
    color: var(--blue);

}

.message-sec .message-form form button:hover{
    color: var(--white);
    background: var(--blue);
}





































































@media screen and (max-width:320px) {

    /* ------------------------Contact content -------------------------------------------------------- */

    .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        width: 100%;
        margin: 0%;
    }

    .contact-content .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-content .contact-details .contact-address .c-call,
    .contact-content .contact-details .contact-address .c-locate,
    .contact-content .contact-details .contact-address .c-mail {
        display: flex;
        align-items: center;
        padding: 8px;
    }

    .contact-content .contact-details .contact-address .c-call p,
    .contact-content .contact-details .contact-address .c-locate p,
    .contact-content .contact-details .contact-address .c-mail p {
        font-size: 10px;
    }






    .contact-content .contact-details .contact-address .c-locate a {
        display: flex;
    }

    .contact-content .contact-details .contact-address .c-locate a p {
        margin-right: 10px;

    }

    .contact-content .contact-details .contact-address .c-details i {
        margin: 10px;
        font-size: 1rem;
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-mail a p {
        text-transform: lowercase;
        font-size: 10px;
    }


    .contact-content .contact-details .contact-address .c-details a {
        text-decoration: none;
        color: var(--gray);
        transition: 0.1s;
        font-size: 16px;
    }

    .contact-content .contact-info h3 {
        font-weight: bolder;
        color: var(--blue);
    }

    .contact-content .contact-info h3 span {
        color: var(--black);
    }

    .contact-content .contact-title p {
        text-transform: initial;
        color: var(--para);
        font-size: 1.2rem;
    }

    .contact-content .contact-title .contact-social {
        display: flex;
        justify-content: space-around;
    }

    .contact-content .contact-title .contact-social a {
        border: 0.1px solid var(--gray);
        padding: 10px;
        border-radius: 50%;
    }

    .contact-content .contact-title .contact-social a i {
        font-size: 25px;
        color: var(--gray);

    }


    .contact-content .contact-title .contact-social a:hover {
        border-color: var(--blue);
    }

    .contact-content .contact-title .contact-social a:hover i {
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-details a:hover {
        color: var(--blue);

    }

    /* -----------------------message section ----------------------------------------------- */

    .message-sec {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        width: 100%;
        height: auto;
        margin-bottom: 3%;

    }


    .message-sec .message-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 10px;
    }

    .message-sec .message-content img {
        width: 100%;
        height: 100%;

    }

    .message-sec .message-content p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
    }

    .message-sec .message-form {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 0 0 0 0;
        background: rgb(237, 237, 237);
        text-align: center;

    }

    .message-sec .message-form h3 {
        color: var(--blue);
        font-weight: bolder;
    }

    .message-sec .message-form h3 span {
        color: var(--black);
    }


    .message-sec .message-form form fieldset input {
        width: 80%;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
        height: 30px;
        font-size: 15px;

    }

    .message-sec .message-form form fieldset textarea {
        width: 80%;
        height: 10vh;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
    }


}


@media screen and (min-width:321px) and (max-width:425px) {
    /* ------------------------Contact content -------------------------------------------------------- */

    .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        width: 100%;
        margin: 0%;
    }

    .contact-content .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-content .contact-details .contact-address .c-call,
    .contact-content .contact-details .contact-address .c-locate,
    .contact-content .contact-details .contact-address .c-mail {
        display: flex;
        align-items: center;
        padding: 8px;
    }

    .contact-content .contact-details .contact-address .c-call p,
    .contact-content .contact-details .contact-address .c-locate p,
    .contact-content .contact-details .contact-address .c-mail p {
        font-size: 10px;
    }






    .contact-content .contact-details .contact-address .c-locate a {
        display: flex;
    }

    .contact-content .contact-details .contact-address .c-locate a p {
        margin-right: 10px;

    }

    .contact-content .contact-details .contact-address .c-details i {
        margin: 10px;
        font-size: 1rem;
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-mail a p {
        text-transform: lowercase;
        font-size: 10px;
    }


    .contact-content .contact-details .contact-address .c-details a {
        text-decoration: none;
        color: var(--gray);
        transition: 0.1s;
        font-size: 16px;
    }

    .contact-content .contact-info h3 {
        font-weight: bolder;
        color: var(--blue);
    }

    .contact-content .contact-info h3 span {
        color: var(--black);
    }

    .contact-content .contact-title p {
        text-transform: initial;
        color: var(--para);
        font-size: 1.2rem;
    }

    .contact-content .contact-title .contact-social {
        display: flex;
        justify-content: space-around;
    }

    .contact-content .contact-title .contact-social a {
        border: 0.1px solid var(--gray);
        padding: 10px;
        border-radius: 50%;
    }

    .contact-content .contact-title .contact-social a i {
        font-size: 25px;
        color: var(--gray);

    }


    .contact-content .contact-title .contact-social a:hover {
        border-color: var(--blue);
    }

    .contact-content .contact-title .contact-social a:hover i {
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-details a:hover {
        color: var(--blue);

    }

    /* -----------------------message section ----------------------------------------------- */

    .message-sec {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        width: 100%;
        height: auto;
        margin-bottom: 3%;

    }


    .message-sec .message-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 10px;
    }

    .message-sec .message-content img {
        width: 100%;
        height: 100%;

    }

    .message-sec .message-content p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
    }

    .message-sec .message-form {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 0 0 0 0;
        background: rgb(237, 237, 237);
        text-align: center;

    }

    .message-sec .message-form h3 {
        color: var(--blue);
        font-weight: bolder;
    }

    .message-sec .message-form h3 span {
        color: var(--black);
    }


    .message-sec .message-form form fieldset input {
        width: 80%;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
        height: 30px;
        font-size: 15px;

    }

    .message-sec .message-form form fieldset textarea {
        width: 80%;
        height: 10vh;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
    }


}


@media screen and (min-width:426px) and (max-width:600px) {
    /* ------------------------Contact content -------------------------------------------------------- */

    .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        width: 100%;
        margin: 0%;
    }

    .contact-content .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-content .contact-details .contact-address .c-call,
    .contact-content .contact-details .contact-address .c-locate,
    .contact-content .contact-details .contact-address .c-mail {
        display: flex;
        align-items: center;
        padding: 8px;
    }

    .contact-content .contact-details .contact-address .c-call p,
    .contact-content .contact-details .contact-address .c-locate p,
    .contact-content .contact-details .contact-address .c-mail p {
        font-size: 13px;
    }






    .contact-content .contact-details .contact-address .c-locate a {
        display: flex;
    }

    .contact-content .contact-details .contact-address .c-locate a p {
        margin-right: 10px;

    }

    .contact-content .contact-details .contact-address .c-details i {
        margin: 0;
        font-size: 1rem;
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-mail a p {
        text-transform: lowercase;
        font-size: 10px;
    }


    .contact-content .contact-details .contact-address .c-details a {
        text-decoration: none;
        color: var(--gray);
        transition: 0.1s;
        font-size: 16px;
    }

    .contact-content .contact-info h3 {
        font-weight: bolder;
        color: var(--blue);
    }

    .contact-content .contact-info h3 span {
        color: var(--black);
    }

    .contact-content .contact-title p {
        text-transform: initial;
        color: var(--para);
        font-size: 1.2rem;
    }

    .contact-content .contact-title .contact-social {
        display: flex;
        justify-content: space-around;
    }

    .contact-content .contact-title .contact-social a {
        border: 0.1px solid var(--gray);
        padding: 10px;
        border-radius: 50%;
    }

    .contact-content .contact-title .contact-social a i {
        font-size: 25px;
        color: var(--gray);

    }


    .contact-content .contact-title .contact-social a:hover {
        border-color: var(--blue);
    }

    .contact-content .contact-title .contact-social a:hover i {
        color: var(--blue);
    }

    .contact-content .contact-details .contact-address .c-details a:hover {
        color: var(--blue);

    }

    /* -----------------------message section ----------------------------------------------- */

    .message-sec {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        width: 100%;
        height: auto;
        margin-bottom: 3%;

    }


    .message-sec .message-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 10px;
    }

    .message-sec .message-content img {
        width: 100%;
        height: 100%;

    }

    .message-sec .message-content p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
    }

    .message-sec .message-form {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 0 0 0 0;
        background: rgb(237, 237, 237);
        text-align: center;

    }

    .message-sec .message-form h3 {
        color: var(--blue);
        font-weight: bolder;
    }

    .message-sec .message-form h3 span {
        color: var(--black);
    }


    .message-sec .message-form form fieldset input {
        width: 80%;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
        height: 30px;
        font-size: 15px;

    }

    .message-sec .message-form form fieldset textarea {
        width: 80%;
        height: 10vh;
        border-radius: 5px;
        border: 0.1px solid var(--border);
        padding: 5px;
    }
}

@media screen and (min-width:601px) and (max-width:768px) {}

@media screen and (min-width:769px) and (max-width:992px) {}

@media screen and (min-width:993px) and (max-width:1024px) {}

@media screen and (min-width:1025px) and (max-width:1280px) {}