*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}
.emergency {
    width: 320px;
    top: 0;
    position: absolute;
    margin-left: 1000px;
    padding: 15px;
}
.emergency span {
    color: red;
    animation: blinker 3s linear infinite;
    animation-delay: 1s;
}
@keyframes blinker {
    50% {
      opacity: 0;
    }
}
.emergency i, .emergency p {
    color: white;
    margin-left: 15px;
    margin: 0;
}
.navbar-brand {
    margin-left: 50px;
}
.navbar-brand img {
    width: 300px;
    height: 100px;
}
.navbar-nav {
    margin-left: 525px;
    margin-top: 50px;
    --bs-navbar-hover-color: black;
}
.nav-item a {
    font-family: Marvel;
    margin-left: 35px;
    font-size: 22px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    color: transparent;
}
.nav-item a::before, .nav-item a::after {
    content: attr(data-text);
    position: absolute;
    transition: all 0.3s ease;
}
.nav-item a::before {
    color: white;
    transform: translateY(0);
}
.nav-item a::after {
    color: red;
    top: 100%;
    transform: translateY(0);
    left: 8px;
}
.nav-item a:hover::before {
    transform: translateY(-120%);
}
.nav-item a:hover::after {
    transform: translateY(-126%);
}
#active {
    color: red;
}
.banner {
    width: 100%;
    height: 350px;
}
.banner h1 {
    font-family: Playfair Display;
    font-size: 65px;
    text-align: center;
    padding: 125px;
    color: navy;
    text-shadow: 1px 1px 1px black;
}
.one {
    margin-left: 250px;
    margin-right: 250px;
    position: relative;
}
.one h2, h5 {
    padding: 5px;
    text-align: center;
    margin: 0;
    font-family: Marvel;
    color: #6495ED;
}
.one .user-box {
    position: relative;
}
.one .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: black;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    background: transparent;
}
.one .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: black;
    pointer-events: none;
    transition: .5s;
}
.one .user-box input:focus ~ label,
.one .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #6495ED;;
    font-size: 15px;
}
.button {
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: red;
    margin-left: 43%;
}
.map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}
iframe {
    width: 100%;
    height: 400px;
}
.footer {
    background-color: #245cfc;
    width: 100%;
    height: 250px;
    margin-top: 50px;
}
.footer_content {
    width: 370px;
    height: 200px;
    margin: 25px;
    margin-left: 85px;
    float: left;
}
.footer_content h2 {
    padding: 10px;
    font-family: Marvel;
    font-weight: bolder;
    text-shadow: 1px 1px 1px white;
}
.footer_content p {
    font-family: Roboto-Thin 100;
    margin: 0;
    padding-left: 10px;
    line-height: 2;
    color: beige;
}
.footer_content i {
    color: red;
}
.foot {
    width: 100%;
    background-color: #245cfc;
    border: 0.1px white;
    border-style: solid none none none ;
}
.foot p {
    padding: 20px;
    text-align: center;
    margin-bottom: 0;
}
.scrollbutton {
    display: none;
    position: fixed;
    bottom: 5px;
    right: 20px;
    color: red;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 30px;
}
@media screen and (max-width:570px) {
    .emergency {
        margin-left: 0px;
        padding: 5px;
        }
    .emergency span {
        margin-left: 0px;
    }    
    .navbar-brand {
        margin-left: 0px;
        margin-top: 25px;
    }
    .navbar-nav {
        margin-left: 0px;
        margin-top: 0px;
    }
    .nav-item a {
        margin-left: 0px;
    }
    .nav-item a::after {
        left: 0;
    }
    .banner {
        width: 100%;
        height: 200px;
    }
    .banner h1 {
        font-size: 40px;
        padding: 70px;
    }    
    .one {
        margin-left: 10px;
        margin-right: 10px;
    }
    .button {
        margin-left: 30%;
    }    
    .map {
        width: 95%;
        height: 400px;
        margin-top: 0px;
        margin: 10px;
    }
    .footer {
        height: 550px;
        margin-top: 20px;
    }
    .footer_content {
        width: 95%;
        height: 200px;
        margin: 10px;
    }
    .footer_para {
        height: 145px;
    }
    .foot p {
        padding: 15px;
        margin-bottom: 0;
    }
}
@media screen and (max-width:360px) {
    .banner h1 {
        font-size: 30px;
    }  
    .two h2 {
        padding: 8px;
    }
    .two h6 {
        font-size: 15px;
    }
    .button {
        margin-left: 100px;
    }
}