@font-face {
    font-family: FuturaBkBt;
    src: url(./font/Futura\ Bk\ Book.ttf);
}

@font-face {
    font-family: FuturaHvBt;
    src: url(./font/Futura\ Hv\ Heavy.ttf);
}

/* navbar start */
.nav-link {
    font-size: 1.1rem;
    color: #000;
    font-family: FuturaBkBt;
    margin: 0rem 0.4rem;
}

.nav-link:hover {
    color: #E64141;
}

.navbar {
    width: 100%;
    padding: 16px;
    position: fixed;
    top: 0;
    z-index: 1;
}

.scrolled {
    background-color: #fff;
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url(./images/menu-button.png);
}

/* navbar end */

.nav-links {
    font-family: FuturaBkBt;
    font-size: 1rem;
    padding-top: 100px;
    padding-bottom: 50px;
}

a:hover{
    color: #E64141;
}

a{
    color: #000000;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.section img {
    width: 100%;
}

/*  */

.text-content {
    padding: 20px;
}

.text-content-second {
    text-align: right;
}

.text-content-second h2 {
    font-size: 3.1rem;
    font-family: FuturaHvBt;
}

.text-content-second p {
    font-family: FuturaBkBt;
    font-size: 1.3rem;
}

.text-content h2 {
    font-size: 3.1rem;
    font-family: FuturaHvBt;
}

.text-content p {
    font-family: FuturaBkBt;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    br {
        display: none;
    }

    .text-content h2 {
        text-align: center;
    }

    .text-content p {
        text-align: justify;
    }

    .text-content-second h2 {
        text-align: center;
    }

    .text-content-second p {
        text-align: justify;
        padding: 0px 10px;
    }

    .nav-links {
        text-align: center;
    }
}


/* footer start */
#footer {
    background-image: url('./images/footerbgcover.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header h4 {
    font-size: 2.4rem;
    font-family: FuturaHvBt;
}

.header h2 {
    font-size: 2.4rem;
    color:#E64141;
    font-family: FuturaHvBt;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: normal;
    font-family: FuturaBkBt;
}

.overlay {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    min-height: 100vh;
}

.contact-container {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 20px;
}

.contact-box {
    background-image: linear-gradient(rgb(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: FuturaBkBt;
}

.form-control {
    background: white;
    color: black;
    padding: 10px 0px;
}

::placeholder {
    font-size: 0.8rem;
    padding: 0px 6px;
    font-family: FuturaBkBt;
}

.btn-submit {
    background:#E64141;
    color: white;
    border: none;
    padding: 10px 50px;
    border-radius: 10px;
    font-family: FuturaBkBt;
}

:hover .btn-submit{
    background-color: #E64141;
}

.header {
    text-align: center;
    /* margin-bottom: 30px; */
}

.social-icons i {
    font-size: 36px;
    color: rgb(123, 123, 123);
    cursor: pointer;
    margin: 0px 16px;
}

.align-top {
    margin-top: 50px;
}

.contact-info i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .contact-container {
        text-align: center;
    }

    .contact-box {
        margin-top: 20px;
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
    }

    .text-end {
        text-align: center !important;
    }

    /* br{
        display: none;
    } */
}

/* footer loader animation styling */
@keyframes spin2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#firstfan2 {
    opacity: 0;
    animation: spin2 3s 550ms infinite;
}

#secondfan2 {
    opacity: 0;
    animation: spin2 3s 350ms infinite;
}

#thirdfan2 {
    opacity: 0;
    animation: spin2 3s 150ms infinite;
}

/* loader animation end */
/* footer section style end */