/* google fonts */
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* header */
.navbar-custom {
    border: 3px solid red;
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
    /* Adjust the logo height */
}

.navbar-nav .nav-link {
    margin-right: 20px;
    font-weight: bold;
}

.navbar-nav .nav-link .active {
    color: green;
}

.navbar-nav .nav-link:hover {
    color: green;
}

/* container1 */
.visa-section {
    position: relative;
    background: url('images/container1bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 200px 0;
    height: 580px;
}

@media (min-width: 390px) and (max-width: 844px) {
    .visa-section {
        height: 550px;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1px) and (max-width: 389px) {
    .visa-section {
        padding: 25px 0;
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark overlay */
}

.content {
    position: relative;
    z-index: 2;
}

.visa-title {
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 3rem;
    font-size: 39px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .visa-title {
        text-align: center;
    }
}

@media (min-width: 390px) and (max-width: 844px) {
    .visa-title {
        text-align: center;
    }
}

.visa-para {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 5px;
}


.btn-contact {
    background-color: #e23333;
    padding: 10px 20px;
    margin-top: 20px;
}


.search-box {
    background-color: white;
    border-radius: 6px;
    padding: 30px;
    max-width: 458px;
    margin-top: 24px;
}

@media (min-width: 1px) and (max-width: 289px) {
    padding: 15px;
    max-width: 250px;
    margin-top: 15px;
}


.search-box h3 {
    color: black;
    font-size: 35px;
}

.position-relative {
    display: flex;
    align-items: center;
}

@media (min-width: 390px) and (max-width: 844px) {
    .search-box {
        padding-top: 5px;
    }
}


.search-box input {
    border: 1px solid #dc3545;
    /* border-bottom: 2px solid #dc3545; */
    /* Red underline */
    padding: 10px;
    width: 100%;
    border-radius: 15px;
}

.search-box input:focus {
    box-shadow: none;
    border-color: #dc3545;
}

.search-box button {
    background-color: #dc3545;
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: white;
    position: absolute;
    right: 10px;
}

/* container2 */
.fa-person-snowboarding,
.fa-comment-dollar,
.fa-business-time,
.fa-map-location-dot {
    color: #ee6c5b;
    font-size: 34px;
    padding: 10px;
    border: 2px solid #ee6c5b;
    border-radius: 27px;
    margin-top: 14px;
}

@media (min-width: 390px) and (max-width: 844px) {
    .iphone {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .custom-card {
        margin: 0 auto;
    }
}

@media (min-width: 1px) and (max-width: 389px) {
    .iphone {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .custom-card {
        margin: 0 auto;
    }
}

/* about */
.custom-about-img {
    width: 250px;
    height: 200px;
    border-radius: 12px;
    padding: 5px;
}

.headline {
    color: #e23333;
}

/* footer  */
.footer {
    background-color: #c00;
    /* Adjust color to match your design */
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #a00;
    /* Adjust color to match your design */
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom a {
    color: #fff;
    margin: 0 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
}

/* contact us  */
.contact-section {
    text-align: center;
    padding: 50px 20px;
}

.contact-section h2 {
    color: #c00;
    /* Red color matching the image */
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-section p {
    color: #555;
    /* Slightly muted color for the paragraph */
    margin-bottom: 30px;
}

.contact-section .dot-divider {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 30px;
}

.social-icons a {
    color: #fff;
    background-color: #c00;
    /* Red background matching the buttons */
    border-radius: 50%;
    padding: 10px;
    margin: 0 5px;
    font-size: 20px;
    display: inline-block;
}

.social-icons a:hover {
    background-color: #a00;
    /* Slightly darker red on hover */
}

/* form  */
.contact-form {
    background-color: #f7f7f7;
    /* Light background color for the form */
    padding: 20px;
    border-radius: 5px;
}

.contact-form input,
.contact-form textarea {
    background-color: #f1f1f1;
    /* Light grey color */
    border: none;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form button {
    background-color: #c00;
    /* Red color for the button */
    border: none;
    padding: 15px 30px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #a00;
    /* Darker red on hover */
}