/*CSS for About us page*/
#section1 {
   height: calc(100vh - 70px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    animation: bgSlide 12s infinite;
}

@keyframes bgSlide {
    0% {
        background-image: url("../images/travel/travelBg1.jpg");
    }
    33% {
      background-image: url("../images/travel/travelBg2.jpg");
    }
    66% {
        background-image: url("../images/travel/travelBg3.jpg");
    }
    100% {
        background-image: url("../images/travel/travelBg1.jpg");
    }
}

#section1-div1 {
    background-color: rgba(51, 49, 49, 0.6);
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
}

#section1 h1 {
    color: #ffffff;
}

.section2-div1 {
    background-color: #fff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

#section5 {
    background-color: #EF1D26;
    color: #fff;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Make intl-tel-input wrapper full width */
.iti {
    width: 100% !important;
}

/* Make the input inside also full width */
.iti input {
    width: 100% !important;
}
