@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Nunito", sans-serif;
}


.top-main {
     padding: 0 0 0 5rem;
     background-color: #00509d;
     display: flex;
     justify-content: space-between;
}

.top-main .contact-info {
     padding: 20px 0;
     display: flex;
     justify-content: start;
     column-gap: 70px;
     align-items: center;
}

.top-main .contact-info a {
     display: inline-flex;
     align-items: center;
     column-gap: 10px;
     font-size: 18px;
     text-decoration: none;
     color: #fff;
}

.top-main .contact-info .bx {
     font-size: 22px;
     color: #ffdb57;
}

.social-links {
     padding: 0 20px;
     display: flex;
     align-items: center;
     column-gap: 40px;
     text-decoration: none;
     background-color: #11296b;
     border-top-left-radius: 30px;
     border-bottom-left-radius: 30px;
}

.social-links .bx {
     font-size: 30px;
     color: #fff;
}

header nav {
     padding: 5px 5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background-color: #ededed;
}


header nav img {
     background-color: #fff;
     width: 110px;
     border-radius: 10px;
}

header nav ul {
     display: flex;
     list-style: none;
}

header nav ul li a {
     position: relative;
     padding: 0 30px;
     text-decoration: none;
     font-size: 20px;
     color: #00509d;
}

header nav ul li a::after {
     content: "";
     position: absolute;
     top: 1.6rem;
     left: 50%;
     transform: translate(-50%, 0%);
     height: 2px;
     width: 0px;
     background-color: #00509d;
     transition: all 0.3s ease;
}

header nav ul li a:hover:after {
     width: 40px;
}

header nav .get-quote {
     display: inline-flex;
     align-items: center;
     text-decoration: none;
     background-color: #ffcb05;
     color: #11296b;
     padding: 10px 20px;
     border-radius: 10px;
     font-weight: 600;
     text-transform: uppercase;
     transition: all 0.3s ease;
}

header nav .get-quote:hover {
     transform: scale(1.08);
}

header nav .get-quote .bx {
     margin-left: 10px;
     font-size: 22px;
}


/* -----Slideshow-Start-----*/
.slideshow-container {
     width: 100%;
     position: relative;
     margin: auto;
}

.slideshow-container .Slides {
     display: none
}

.slideshow-container .Slides img {
     height: 35rem;
}

.slideshow-container .prev,
.slideshow-container .next {
     cursor: pointer;
     position: absolute;
     top: 50%;
     width: auto;
     padding: 16px;
     margin-top: -22px;
     color: white;
     font-weight: bold;
     font-size: 18px;
     transition: 0.6s ease;
     border-radius: 0 3px 3px 0;
     user-select: none;
     display: none;
}

.slideshow-container .next {
     right: 0;
     border-radius: 3px 0 0 3px;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
     background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-container .Slides .text {
     color: #f2f2f2;
     font-size: 15px;
     padding: 8px 0px;
     position: absolute;
     bottom: 8px;
     width: 100%;
     text-align: center;
}

.dot {
     cursor: pointer;
     height: 15px;
     width: 15px;
     margin: 10px 2px;
     background-color: #bbb;
     border-radius: 50%;
     display: inline-block;
     transition: background-color 0.6s ease;
}

.active,
.dot:hover {
     background-color: #717171;
}

.fade {
     -webkit-animation-name: fade;
     -webkit-animation-duration: 1.5s;
     animation-name: fade;
     animation-duration: 1.5s;
}

@-webkit-keyframes fade {
     from {
          opacity: .4
     }

     to {
          opacity: 1
     }
}

@keyframes fade {
     from {
          opacity: .4
     }

     to {
          opacity: 1
     }
}

/* -----Slideshow-End-----*/


/* -----Main-1-Start----- */
.main-1 {
     padding: 2rem 5rem;
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     column-gap: 20px;
}

.main-1 a {
     display: inline-flex;
     flex-direction: column;
     row-gap: 12px;
     padding: 2rem 20px;
     border-radius: 10px;
     background-color: #00509d;
     text-align: center;
     text-decoration: none;
     color: #fff;
     font-size: 22px;
     text-transform: capitalize;
}

.main-1 a .bx{
     font-size: 35px;
}

/* -----Main-1-End----- */