* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    list-style: none;
}
#loader{
    width: 100%;
    height: 100vh;
    background-color: black;
display: flex;
justify-content: center;
align-items: center;
}
#loader img{
    width: 480px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    height: 70px;
    width: 100%;
    background-color: #0e1a2c;
    padding: 15px 4%;
    align-items: center;
    text-transform: uppercase;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a img {
    width: 50px;
}

.logo a {
    margin: 0 7px;
}

.logo-text {
    color: #ef4b3f;
}

.logo-text,
.tour {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
}

.tour {
    color: #4cb3ed;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li a {
    color: whitesmoke;
    letter-spacing: 1px;
    font-size: 16px;
    margin: 14px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

a {
    color: white;
}

.btn {
    background-color: #ef4b3f;
    padding: 9px 35px;
    color: whitesmoke;
    border-radius: 90px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #4cb3ed;
    box-shadow: 0 0 15px #4cb3ed, 0 0 15px #4cb3ed;
}
ul li  a.active {
    color: #ef4b3f;
}
/* Hover property in Logo text */
.logo:hover{
    transform: scale(1.1);
}
.logo a:hover {
    color: #4cb3ed;
}

.navbar .logo a span.tour:hover {
    color: #ef4b3f;
}

/* Hover property in Nav-links */
.navbar ul li a.active:hover {
    color: whitesmoke;
}

ul li a:hover {
    color: #ef4b3f;
    text-decoration: underline;
}
/* Hover property in button */
.btn:hover {
    border-radius: 3px;
    border: none;
    /* border: 1px solid #ef4b3f; */
    background-color: #4cb3ed;
    transform: scale(1.1);
    box-shadow: 0 0 25px #c22216, 0 0 15px #d13024;
}


/* Banner styling */
body {
    background-image: url(../images/bg.jpg);
    background-size: contain;
    background-position: center;
}

.banner {
    margin-top: 2px;
    background-image: url(../images/contact_bg.jpg);
    height: 401px;
    width: 100%;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 44px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner h1 {
    margin-bottom: 50px;
    text-shadow: 0 0 10px whitesmoke, 0 0 10px #4cb3ed;
}

.banner h1:hover {
    transform: scale(1.1);
}

.space {
    margin-top: 50px;
}

.about {
    display: flex;
    padding: 30px;
    justify-content: center;
    align-items: center;
    /* margin: auto 45px; */
}

.about .left {
    width: 40%;
}
.about img {
    width: 60%;
}
.left h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #4cb3ed;
}

.left h2 span {
    color: #c22216;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.left p {
margin: 50px auto;
    margin-right: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Services  start */
.service h1 {
    text-align: center;
}

.service h2 {
    text-align: center;
    text-transform: capitalize;
    color: #4cb3ed;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.service h2 span {
    color: #c22216;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.boxes {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.box {
    border: 5px solid #ef4b3f;
    border-radius: 25px;
    padding: 10px;
    width: 320px;
    height: 476px;
    background-color: #0e1a2c;
    text-align: center;
    margin: 30px;

}

.box h3 {
    font-size: 25px;
    text-transform: uppercase;
    padding: 8px;
    border-bottom: 2px solid #c22216;
    color: #4cb3ed;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.box img {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    height: 220px;
}

.box p {
    margin: 18px auto;
    color: whitesmoke;
    text-align: center;
    padding: 9.5px;
}

.boxes {
    display: flex;
    justify-content: space-evenly;
}
/* Boxes hover */
.box:hover{
    transform: scale(1.05);
}

.foot1 {
    background-color: #0e1a2c;
    display: flex;
    justify-content: space-between;
    /* padding: auto 30px; */
    padding: 60px;
}

.foot1 h1 {
    margin-bottom: 42px;
    color: #d13024;
    font-size: 30px;
    text-align: center;
}

.sec1 ul li {
    margin: 13px auto;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}

.sec2 h1 {
    font-size: 30px;
    color: #d13024;
}

.sec2 iframe {
    width: 500px;
    height: 300px;
    border: 5px solid #4cb3ed;
}

.sec3 p {
    text-align: center;
    max-width: 200px;
    color: whitesmoke;
    line-height: 20px;
    margin-bottom: 35px;
}

.sec3 a i {
    font-size: 33px;
    color: #4cb3ed
}

.icons
{
    text-align: center;
}
.icons a i#facebook:hover{
    color:  #1877F2;
    rotate: 180deg;
}
.icons a i#twitter:hover{
    color:  rgb(99, 98, 98);
    rotate: 180deg;
}
.icons a i#insta:hover{
    color:  #515ed4;
    rotate: 180deg;
}
.icons a i#snap:hover{
     color:  #FFFC00;
     rotate: 180deg;
}
.foot2 {
    display: flex;
    align-items: center;
    justify-content: center;
}