*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
/*common class*/
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Raleway';
    font-weight: 600;
}
p{
    font-family: 'Montserrat';
    font-weight: 500;
}
a{
    font-family: 'Raleway';
    font-weight: 600;
}
.img-responsive{
    max-width: 100%;
    display: block;
    height: auto;
}
/*header*/
nav {
    position: fixed;
    width: 100%;
    z-index: 99;
}
.menu-par {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-par h2 {
    color: #00a8b4;
    font-size: 40px;
}
.nav ul li a {
    color: white;
    padding: 10px;
    position: relative;
}
.nav ul li a:before {
    content: "s";
    position: absolute;
    top: 0;
    left: 10px;
    background-color: white;
    width: 0%;
    height: 2px;
    font-size: 0px;
    transition: all 0.5s ease;
}
.nav ul li a:hover::before{
    width: 74%;
}
.nav ul li {
    display: inline-block;
}
.nav-fixed{
    background-color: white;
    box-shadow: 2px 2px 10px #bbb;
}
.nav-fixed h2{
    color: #00a8b4;   
}
.nav-fixed ul li a{
    color: #00a8b4;
}
header {
   /* background-color: blue;*/
    width: 100%;
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 200px;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: overlay;
}
.video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
video#video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-par {
    padding: 30px 0px;
}
.header-info-par a {
    background-color: white;
    color: #00a8ba;
    padding: 17px 45px;
    display: inline-block;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}
.header-info-par a:after{
    content: "Read More";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00a8b4;
    color: #fff;
    width: 0%;
    height: 100%;
    line-height: 50px;
    transition: all 0.5s ease;
}
.header-info-par a:hover::after{
    width: 100%;
}
.header-info-par h1{
    font-size: 45px;
    text-transform: uppercase;
    padding: 20px 0px;
    letter-spacing: 4px;
}
.header-info-par p {
    line-height: 30px;
    font-size: 15px;
    width: 100%;
}
/*welcome text*/
h2 {
    color: #343a40;
    font-size: 45px;
    padding-bottom: 12px;
}
section#welcome-text {
    text-align: center;
    padding: 100px 0px;
    justify-content: center;
}
/*slides*/
h2{
    color: #343a40;
    font-size: 45px;
    padding-bottom:12px;
}
section#destinations{
    text-align: center;
    padding: 100px 0px;
    justify-content: center;
}
.slides{
    display: flex;
    justify-content: center;
}
.slide_1{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/img1.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 60px;
    min-width: 60px;
    height: 300px;
    border-radius: 40px;
    margin: 0 15px;
    position: relative;
    transition: all 0.5s ease;
}
.slide_1:hover{
    min-width: 250px;
}
.slide_1:hover .slide-info{
    transform: rotate(0deg);
    font-size: 22px;
    left: 20px;
    bottom: 20px;
}
.slide-info{
    position: absolute;
    bottom: 50px;
    right: 0;
    color: #fff;
    transform: rotate(-90deg);
    font-size:  13px;
    font-weight: 700;
    transition: all 0.5s ease;
}
.slide_2{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/img2.jpeg);
}
.slide_3{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/img3.jpeg);
}
.slide_4{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/img4.jpeg);
}
/*blog*/
#blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.5);
}
.blog-heading{
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}
.blog-heading span{
    color:#343a40 ;
}
.blog-heading h3{
    font-size: 3.4rem;
    color: #00a8ba;
    font-weight: 600;
}
.blog-container{
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 20px 0px;
   flex-wrap: wrap;  
}
.blog-box{
    width: 250px;
    background-color: #fff;
    border: 1px solid #ececec;
    margin: 20px;
}
.blog-img{
    width:100px;
    height: auto;
}
.blog-img img{
    width: 250%;
    height: 200%;
    object-fit: cover;
    object-position: center;
}
.blog-text{
    padding:30px;
    display:flex;
    flex-direction: column;
}
.blog-text span{
    color: #00a8ba;
    font-size: 0.9rem;
}
.blog-text .blog-title{
    font-size: 1.3rem;
    font-weight: 500;
    color:#343a40;
}
.blog-text .blog-title:hover{
    color: #0f0f0f;
    transition: all ease 0.3s;
}
.blog-text p{
    color: #00a8ba;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin:20px 0px ;
}
.blog-text a{
    color: #0f0f0f;
}
.blog-text a:hover{
    color:#00a8b4;
    transition: all 0.5s ease;
}
/*form*/
#CONTACT{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
}
.form{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    margin: 20px 0px;
    background-color: #343a40;
}
.input{
    padding: 12px;
    margin: 15px;
    width: 30%;
    border: none;
    outline: none;
}
#msg{
    width: 20%;
    padding: 10px;
    margin: 15px;
    border: none;
    outline: none;
}
#SEND{
    padding: 10px;
    width: 10%;
    margin:40px;
    border: none;
    outline: none;
}
#SEND:hover{
    cursor: pointer;
    box-shadow: 0 0 10px white;
}
