@font-face {
    font-family: Roboto;
    font-weight: Regular;
    src: url("../fonts/Roboto-Regular.ttf") format("opentype");
}

@font-face {
    font-family: Roboto;
    font-weight: Bold;
    src: url("../fonts/Roboto-Bold.ttf") format("opentype");
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

body,html {
    width: 100%;
    height: 100vh;
    color: #000000;
    font-family: Arial !important; /* Roboto */
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
    flex: 1;
}

nav {
    padding: 30px 50px !important;
    background: #ffffff !important;
    margin: 0;
}

.navbar-brand:nth-child(2) {
    margin: 0;
}
.navbar-toggler {
    color: #000000;
}

.navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link{
    color: #000000 !important;
}

.main_img {
    height: 470px;
    background-image: url('../imgs/main_img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section {
    position: absolute;
    /* width: calc(100% - 200px); */
/* margin-left: 200px; */
    width: 100%;
    height: 100vh;
    /* background: url('../imgs/main_img.jpg') no-repeat center; 
    background-position: center;
    background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto; */
    margin-bottom: 90px;
    margin-top: 0%;
    padding-top: 0;
    
}

.hero-section h2 {
    color: #ffffff;
    font-weight: bold;
    font-size: 60px;
    width: 92%;
    padding-top: 5%;
    padding-left: 50%;

}

.hero-section button {
    margin-top: 40px;
    margin-left: 50%;
    padding: 20px 30px;
    color: #0E347B;
    cursor: pointer;
}

.hero-section button img{
    margin-left: 10px;
}

.hero-section button:hover{
 box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.247);
}


.navbar-explore-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

@media(max-width:1303px) {
    .hero-section h2 {
        font-size: 55px;
        width: 87%;
    }
}

@media(max-width:1253px) {
    .hero-section h2 {
        width: 93%;
    }
}
@media(max-width:1085px) {
    .hero-section h2 {
        font-size: 55px;
        width: 80%;
        padding-left: 0;
        padding-top: 10%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-section button {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        display: block;
        text-align: center;
        margin: 20px auto;
    }
}

@media(max-width:786px) {
    .hero-section h2 {
        width: 80%;
    }
}

