@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Display', sans-serif;

}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  /* border-color:#EE3A3A; */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #EE3A3A;
  outline: 0 none;
}


h1,
h2 {
    font-weight: 200;
    margin: 0.4em 0;
}

h1 {
    font-size: 3.5em;
}

h2 {
    color: #888;
    font-size: 2em;
}

.navbar-brand img {
    width: 200px;
}

.second-text {
    font-size: 24px;
    font-weight: 600;
}

.hero-banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('../images/header.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
}

.heading-section h1 {
    font-size: 60px;
    font-weight: 600;
    width: 800px;

}

.heading-section h2 {
    font-size: 24px;
    font-weight: 400;
}

.form-banner form .form-control {
    width: 350px;
    border-radius: 4px;
    padding: 15px;
}

.form-banner form .form-control::placeholder {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;

}

.btn-form {
    border-radius: 4px;
    padding: 15px 40px !important;
    font-size: 16px;
    font-weight: 500;
    background-color: #F68A23 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;

}


.hero-banner .banner-text {
    width: 800px;
    font-size: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.about-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
}

.bg-text h4 {
    display: inline-block;
    background-color: #F68A23;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.p-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;

    color: #616161;
}

.welcome-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    color: #333333
}

.country-list li {
    color: #000;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.copyright-area {
    color: red;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.copyright-area a {
    color: #F68A23;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;


}

.about-sectio-two {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)), url('../images/area-bg.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.list-group-item {
    background-color: transparent !important;
    color: #fff !important;
}

@media only screen and (max-width: 600px) {
    .hero-banner {
               background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/header.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 80vh;
        display: flex;
        align-items: center;
    }
    .btn-form-mob{
        display:none !important;
    }

    .heading-section h1 {
        text-align: center;
        font-size: 32px;
        width: 100%;
    }

    .banner-text {
        text-align: center;
        width: 100% !important;
    }

    .btn-form {
        display: flex;
        justify-content: center;
    }

    form {
        display: flex;
        justify-content: center !important;
    }

    .btn-form {
        background-color: #EE3A3A;
        padding: 10px 30px !important;
    }

    .bg-text {
        text-align: center;
        padding-top: 20px;
    }

    .heading-section .about-text {
        font-size: 24px !important;
        line-height: 27px;
        text-align: center;
    }

    .p-text {
        text-align: center;
    }

    .welcome-heading {
        text-align: center;
        font-size: 24px;
    }
}