@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
    line-height: 1.7;
    color: #d3e9ff;
    background-color: #f1f9ff;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 700 !important;
    color: #092032;
}
a {
    color: #092032;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}
img {
    width: 100%;
}
.bg-cover {
    background-position: center !important;
    background-size: cover !important;
}
/* NAVBAR */

.top-nav {
    background-color: #0d9eab;
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
}
.top-nav i, .top-nav span {
    vertical-align: middle;
}
.social-links a {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    border-radius: 100%;
}
.social-links a:hover {
    background-color: #ffffff;
    color: #0d9eab;
}
.navbar {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#0d9eab;
}
.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    color: #092032;
}
.navbar-brand span {
    color: #0d9eab;
}
.btn {
    padding: 9px 24px;
    font-weight: 500;
}
.btn-brand {
    background-color: #0d9eab;
    color: #ffffff;
    border-color: #0d9eab;
}
.btn-brand:hover {
    color: #0d9eab;
    background-color: #eaeaea;
    box-shadow: #0d9eab;
}

/************* SLIDER **************/

.slider-container{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
   }
.slider-container .slider-title{
    font-size: medium;
}
.slider-container .slide-descripttion{
    width: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
.swiper-button-next i, .swiper-button-prev i{
    font-weight: 100;
    font-size: 40px;
    background-color:rgba(255, 255, 255, 0.216);
    border-radius: 50%;
    color: #000;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    i{
    display: block;
    color: white;
    }
}
.slider-container .slider-controls{
    z-index: 5;
    position: absolute;
    bottom: 47px;
    width: 100%;
    padding: 0 24px;
}
.slider-controls .slider-pagination{
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 0 48px;
    max-width: 1400px;
    justify-content: space-between;
    list-style: none;
   
}
.slider-pagination .slider-indicator{
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #ffffff;
    transition: 0.5s ease-in-out;
}
.slider-pagination .slider-tab{
    color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-align: center;
    font-size: 0.85rem;
}
/* ************ Footer *************************** */
.copyright{
    background-color: #0d9eab;
    text-align: center;
}
.copyright p{
     margin-bottom: 0;
}
footer.container-fluid{
     color: #000;
    
}
footer.container-fluid p{
     margin-bottom:0;
}
.follow .icon{
    font-size: 38px;
    color:#095a61;
}
/*********************** News Letter ************************************************/
#newsletter{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newstext h5{
    margin-bottom: 0;
}
.newstext p{
    margin-bottom: 0;
    color: #000;
    font-size: 13px;
}
.newstext span{
    color: #0d9eab;
}
#newsletter form{
    border: 1px solid #095a61;
    border-radius: 2rem;
    overflow: hidden;
    display:inline-flex;
    max-width: 300px;
}
#newsletter input{
   padding: 5px 5px 5px 10px;
   border: none;
   font-size: 13px;
   white-space: nowrap;
}
#newsletter input:focus{
    outline: none;
    background-color: #ffffff;
}
#newsletter input::placeholder {
    padding-left: 15px;
}
#newsletter button{
 padding-left: 10px;
 padding-right: 10px;
 background-color: #095a61;
 color: #ffffff;
 white-space: nowrap;
 border: 0;
 font-size: 13px;
}
#newsletter button:hover{
    background-color:#14939f;
    color:#ffffff;
    cursor: pointer;
    font-weight: 500;
}

/***************** Tablet Vew*********************** */
@media (max-width:1040px){
    .slider-container {
    height: 70vh !important;
}
    .slider-container .slide-descripttion{
        width: 70% !important;
    }
    .slider-container .slider-controls{
        padding: 0px;
    }
    .slider-pagination .slider-tab {
        padding: 10px 15px;
        font-size: 12px;
    }
    .slider-pagination .slider-indicator{
        width: 100px;
    }
    .btn {
        padding: 5px 10px;
        font-weight: 400;
        font-size: 15px;
        
    }

}
/* ***********************Medium View ********************/
@media (max-width: 600px){
    #newsletter {
    display:inline-block;
    justify-items:left;
    width: 100%;
    padding-left: 25px;
    }
}

/* *****************Mobile Vew **********************/
@media (max-width: 500px){

       .slider-container {
    height: 50vh !important;
    }
    .slider-container .slide-descripttion{
        width: 90% !important;
    }
    .slide-subtitle{
        font-size:15px ;
    }
    .slide-title {
        font-size: 19px;
    }
    .slide-descripttion{
        font-size: 10px;
        font-weight: 300;
    }
    .slider-container .slider-controls{
        padding: 0;
    }
   .slider-pagination .slider-tab {
    padding: 6px 15px;
    font-size: 9px;
}
    .slider-pagination .slider-indicator{
        width: 50px;
    }
    .btn {
        padding: 2px 8px;
        font-weight: 300;
        font-size: 11px;
        
    }
    .navbar-brand {
    padding-top: 0px !important;
}
}
