@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    transition: all 0.10s;
    -webkit-transition: all 0.10s;
    -moz-transition: all 0.10s;
    -ms-transition: all 0.10s;
    -o-transition: all 0.10s;
}

html {
    scroll-behavior: smooth;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

body {
    font-family: 'Roboto', sans-serif;
}

.top {
    background-color: #DBDBDB;
    color: #000000;
    padding: 10px;
}

.social-center i{
    padding: 9px 10px;
    background-color: black;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.social-center i:hover{
    background-color: #2952A9;
}

.search {
    display: inline;
}

.search form {
    display: inline;
}

.search input {
    width: 250px;
    height: 35px;
    padding: 3px 5px 5px 25px;
    border-radius: 5px 0 0 5px;
    display: inline;
    margin: 0 0 0 10px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.search button {
    background-color: black;
    margin: -2px 0 0 -5px;
    color: white;
    padding: 5px;
    width: 120px;
    height: 34.5px;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}

.search a {
    color: #000000;
}

/* navbar */
.mynav {
    background-color: #305EB7 !important;
    opacity: 96%;
    font-size: 20px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    background: #305EB7;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.dropdown-item {
    background-color: #305EB7;
    color: ghostwhite;
    font-weight: 600;
}

.slider {
 top: 0;
    width: 100%;
    height: 730px;
    position: fixed;
    z-index: -1;
}

.slider img {
    width: 100%;
    height: 730px;
}

.topnav {
    background-color: rgb(0 0 0 / 23%);
    height: 650px;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: white;
}

.carousel-indicators {
    top: 600px;
}

.carousel-indicators .active {
    background-color: #305EB7;
}

.header-text {
    color: white;
    text-align: center;
    margin-top: 150px;
}

.header-text h1 {
    width: fit-content;
    padding: 15px;
    margin: 15px auto;
    font-size: 100px;
    border: white solid 2px;
}


.header-text h2 {
    font-size: 28px;
}

.header-text h3 {
    font-size: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.contact-icon i{
    font-size: 35px;
}

.contact .col-sm-3 a{
    text-decoration: none;
    color: white;
}

.contact .col-sm-3 a:hover{
color: #2952A9;
}