:root {
    --bg: linear-gradient(#020234d2, #024648);
    --secondary: #069;
    --primary: #fff;
    --header-bg: #020234d2;
    --primaryFont: "Poppins", sans-serif;
    --secondaryFont: "Roboto", sans-serif;
}

* {

    box-sizing: border-box;
}

body {
    background: var(--bg);
    background-repeat: no-repeat;
    background-position: left;
    background-attachment: fixed;
    font-family: var(--primaryFont);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    margin: 0;
    padding: 0;
}
header{
    height: 66px;
    background: var(--secondary);
    position: relative;
    /* overflow: hidden; */
}
header *{
    color: #fff;
}
header .logo{
    float: left;
    height:inherit;
    margin-left: 2em;

}
header .logo h2{
    margin: 10px;
}
header .logo h2 span{
    color: var(--header-bg);
}
#nav-toggle{
    display: none;
    font-size: 3em;
}
header ul{
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
    /* border: 1px solid red; */
}
header ul li{
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
}
header ul li a{
    display: block;
    padding: 20px;
    text-decoration: none;
    font-family: var(--secondaryFont);
    transition: 1.2s;
}
header ul li a:hover{
    background: #060678d2;
}
header ul li .drop-down-nav{
    position: absolute;
    right: 0;
    width: 100%;
    display: none;
    background: #fff;
    transition: 1.7s;
    z-index: 3;
    /* top: 0; */
}
header ul li .drop-down-nav li{
    width: 100%;
    /* top: 10px ; */
}
header ul li .drop-down-nav li a{
    color: #069;
    display: block;
}
.drop-down:hover .drop-down-nav{
    display: block;
}
article .hero-card{
    /* height: 500px; */
    position: relative;
    width: 100%;
    background-image: url(../img/hero-card-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    box-sizing: border-box;
    }
article .hero-card .intro-cover{
    position: absolute;
    width: 100%;
    /* height: 500px; */
    background-color: #024648af;  
    z-index: -1;
}
article .hero-card .hero-intro{
    z-index: 2;
    padding: 35px;
    text-align: center;
    background-color: #0246488e;
    /* border: 1px solid red; */
}
article .hero-card .hero-intro h5{
    font-weight: 700;
    font-size: 1.5em;
    color: var(--primary);
    text-shadow: 2px 3px 0 #39e6e6;
    font-family: var(--primaryFont);
}
article .hero-card .hero-intro h2{
    font-size: 3.2em;
    font-weight: 800;
}
article .hero-card .hero-intro p{
    font-size: 1.3em;
}
article .blog h1{
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    margin: 10px 0 10px 0;
}
article .blog h1 a{
    color: #fff;
    text-decoration: none;
    margin: 10px 0 10px 20px;
    text-shadow: 1px 2px 0 #0c83be;
    text-align: center;

}
article .blog-cont{
    position: relative;
}
article .blog-section-slide{
    height: 300px;
    width: 80%;
    padding: 0 5px 0 5px;
    justify-content:center ;
    position: relative;
    margin: 5px auto;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: inset 0 1px 15px -1px #f5f5f594;
    /* border: 1px solid red; */
}
article .blog-section-slide .slide1{
    width: 250px;
    height: 300px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    /* overflow: hidden; */
    margin: 0 10px;
    /* z-index: ; */
}
article .blog-section-slide .slide1 img{
    border-radius: 5px;
    display: block;
    width: 100%;
}
article .blog-section-slide .slide1 a{
    /* border: 1px solid red; */
    position: absolute;
    font-size: 12px;
    bottom: 0;
    background-color: #ffffffad;
    text-decoration: none;
    color: #2d2b2b;   
    padding: 5px;
    font-family: var(--secondaryFont);
    text-align: center;
    /* margin: 3px; */

}
article .blog-cont .prev{
    position: absolute;
    top: 145px;
    left: 30px;
    font-size: 2em;
    font-weight: 700;
    color: #39e6e6;
    cursor: pointer;
}
article .blog-cont .next{
    position: absolute;
    top: 145px;
    right: 30px;
    font-size: 2em;
    cursor: pointer;
    font-weight: 700;
    color: #39e6e6;
}
article .recent-gallery{
    /* border: 1px solid red; */
    padding: 30px;
    position: relative;
}
article .recent-gallery h2{
    text-align: center;
}
article .recent-gallery .recent{
    width: 60%;
    height: 300px;
    /* border: 1px dotted red; */
    margin: 25px 0 25px 0;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    box-shadow: 0 2px 3px 1px var(--secondary);
    border-radius: 10px;
    
}

article .recent-gallery .post-img{
    height: 300px;
    width: calc(100% - 10px);
}
article .recent-gallery .post-text{
    padding: 10px;
    /* border: 2px double red; */
    position: relative;
}
article .recent-gallery .post-text h2{
    text-align: left;
    font-size: 1.4em;
    font-family: var(--secondaryFont);
    transition: 500ms;
    margin: 10px 0 10px 0;
}
article .recent-gallery .post-text h2:hover{
    color:var(--secondary);
}
article .recent-gallery .post-text .post-info{
    display: flex;
    color: #838282;
    font-size: 16px;
    font-weight: 600;
} 
article .recent-gallery .post-text .post-info span{
    /* border: 1px solid red; */
    margin: 0 10px 0 0;
}
article .recent-gallery .post-text .post-info span i {
    margin: 0 5px 0 5px;
}
article .recent-gallery .post-text p{
    font-size: 16px;
    font-weight: 500;
    
}
article .recent-gallery .post-text a{
    text-decoration: none;
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: inline-block;
    border: 1px solid var(--secondary);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    transition: 500ms;
}
article .recent-gallery .post-text a:hover{
    box-shadow: 6px 8px 5px -3px var(--header-bg);
    bottom: 16px;
}
.side-icon{
    position: fixed;
    padding: 20px 5px 20px 5px;
    border-radius: 10px;
    font-weight: 800;
    background: var(--secondary);
    color: #c4bebe;
    font-size: 25px;
    top: 50%;
    right: 0;
    cursor: pointer;
    transition: 500ms;
    z-index: 99;
    display: none;

}
.side-icon:hover{
    top: 49.5%;
    box-shadow: 1px 3px 5px -1px var(--header-bg);
    /* opacity: 0.9; */
}
article .right-nav{
    width: 38%;
    border:1px solid red ;
    float: right;
    position: absolute;
    top: 110px;
    right: 10px;
    background-color: #fff;
    padding: 15px;
    color: #069;
    
}
article .right-nav form{
    position: relative;
    width: 100%;
}
article .right-nav form .search-wrapper{
    border: .6px solid #069;
    width: 100%;
    border-radius: 5px;
    display: flex;

}
article .right-nav form .search-wrapper input{
    width: calc(100% - 30px);
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
    outline: none;
    border:none;
}
article .right-nav form .search-wrapper button{
    width: 30px;
    border: none;
    border-radius: 5px;
    outline: none;
}
article .right-nav form .search-wrapper button i{
    font-size: 20px;
    font-weight: bolder;
    color: #069;
}
 article .right-nav .new-side-nav-wrapper{
    border: 1px solid red;
 }
 article .right-nav .new-side-nav-wrapper h2{
    font-family:var(--secondaryFont);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
 }
 article .right-nav .new-side-nav-wrapper ol li{
    list-style: none;
    width: 100%;
 }
 article .right-nav .new-side-nav-wrapper ol li a{
    display: flex;
    text-decoration: none;color: var(--header-bg);
    font-family: var(--secondaryFont);
    font-weight: 700;
    /* height: 80px; */
    text-overflow:ellipsis;
    overflow: hidden;
    font-size: 18px;
 } article .right-nav .new-side-nav-wrapper ol li a img{
    border-radius: 10px;
    margin: 0 5px 0 0;
 }
 article .right-nav .new-side-nav-wrapper ol li a span{
    text-align: left;
    line-height: 1;
    font-weight: 800;
    height: 60px;
    

 }
article .right-nav .new-side-nav-wrapper ol li a span p {
    word-wrap: break-word;
    text-wrap: wrap;
    /* border: 2px solid red; */
    text-overflow: ellipsis;
    position: relative;
    top: -5px;
}
@media only screen and (max-width: 680px){
    header{
        position: fixed;
        z-index: 88;
        width: 100%;
        /* margin-top: 10px; */
        top: 0;

    }
    header #nav-toggle{
        position: absolute;
        right: 10px;
        display: block;
        font-size: 30px;
        top: 15px;
    }
    header ul{
        background: var(--secondary);
        width: 100%;
        display: none;
    }
    header ul li{
        display: block;
        width: 100%;

    }
    header ul li .drop-down-nav{
        background: var(--secondary);
        width: 100%;
    }
    header ul li .drop-down-nav li a{
        color: #fff;
    }
    article .blog-section-slide{
        display: block;
        box-shadow: none;
        width:100%;
        /* border:  1px solid red; */
        border-radius: 3;
    }
    article .blog-cont .prev{
        z-index: 3;
        font-size: 18px;
        left: 1px;
    }
    article .blog-cont .next{
        right: 1px ;
        z-index: 3;
        font-size: 18px;
    }
    article .recent-gallery .recent{
        width: 100%;
        display: block;
        height: 100%;
    }
    article .recent-gallery .post-text a{
        position: relative;
        right: 0;
        margin-top: 10px;
    }
    .right-nav{
        display: none;
    }
}

