
@import url('../css/fonts.css');


html,body{
    margin: 0.5%;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: skyblue;
}

:root{

    /*theme colors*/
    --text-gray:#3f4954;
    --text-light:#686666da;
    --bg-color:#0f0f0f;
    --white:#ffffff;
    --midnight:#104f55;

    /*gradient color*/
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);


    /*theme font family*/
    --Abel:'Abel',cursive;
    --Anton:'Anton',cursive;
    --Josefin:'Josefin',cursive;
    --Lexend: 'Lexend',cursive;
    --Livvic: 'Livvic',cursive;

}

/*-------------------global---------------------------*/
a{
    text-decoration: none;
    color:var(--text-gray);
}

.flex-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

ul{
    list-style-type: none;
}

h1{
    font-family: var(--Lexend);
    font-size: 2.5rem ;
}

h2{
    font-family: var(--Lexend);
}

h3{
    font-family: var(--Abel);
    font-size: 1.3rem;
}

button.btn{
    border: none;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--Livvic);
    cursor: pointer;
}
 span{
    font-family: var(--Abel);
 }
 .container{
    margin: 0 5vw;
 }
 .text-gray{
    color: var(--text-gray);
 }
 p{
    font-family: var(--Lexend);
    color: yellow;
 }
/*----x------------------global------------------x---*/

/*---------------------------NAVBAR-------------------*/
.nav{
    background: white;
    padding: 0 2rem;
    height: 0rem;
    min-height: 10vh;
    overflow: hidden;
    transition: height 0.45s ease-in-out;
}
.nav .nav-menu{
    justify-content: space-between;
}
.nav .toggle-collapse{
    position: absolute;
    top: 3.5%;
    width: 90%;
    cursor: pointer;
    display: none;
}

.nav .toggle-collapse .toggle-icons{
    display: flex;
    justify-content: flex-end;
    padding: 1.7rem,0;
}

.nav .toggle-collapse .toggle-icons i{
    font-size: 1.4rem;
    color: var(--text-gray);
}

.collapse{
    height: 43rem;
}

.nav .navitems{
    display: flex;
    margin: 0;

}

.nav .navitems .nav-link{
    padding: 1.6rem 1rem;
    font-size: 1.1rem;
    position: relative;
    font-family: var(--Abel);
    font-size: 1.1rem;
}

.nav .navitems .nav-link:hover{
    background-color: var(--midnight);
}

.nav .navitems .nav-link:hover a{
    color: var(--white);
}
.nav .logo{
    position: relative;
    padding: .3rem 0;
}
.nav .nav-brand a{
    margin-left: 0rem;
    padding: 1.2rem 0rem;
    text-decoration: none;
    display: block;
    font-family: var(--Lexend);
    font-size: 1.5rem;
}

.nav .social{
    padding: 1.4rem 0;

}

.nav .social i{
    padding: 0.2rem;
}
.nav .social i:hover{
    color: #a1c4cf;
}

/*-----x---------------------NAVBAR--------------x----*/

/*----------------------FOOTER-----------------------*/

footer.footer{
    height: 100%;
    background: var(--bg-color);
    position: relative;
}
footer.footer .container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
footer.footer .vertical-menu {
    width: 200px;
  }
  
footer.footer .vertical-menu a {
    color: rgb(255, 255, 255);
    display: block;
    font-size: 1.2rem;
    padding: 12px;
    text-decoration: none;
    font-family: var(--Josefin);
  }
  
footer.footer .vertical-menu a:hover {
    background-color:green;
  }
  
footer.footer .container>div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}
footer.footer .container h2{
    color: var(--white);
}
footer.footer .instagram div>img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: 0.3rem 0.4rem;
}
footer.footer .follow div i{
    color: white;
    padding: 0 .4rem;
}
footer.footer .follow div i:hover{
    color: var(--text-gray);
    cursor: pointer;
}
footer.footer .follow .address p{
    color: white;
    font-family: var(--Josefin);
    padding: 0 .4rem;
    margin-top: 0rem;
    font-weight: bold;
}
footer.footer .rights{
    justify-content: center;
    font-family: var(--Livvic);
}
footer.footer .rights h4 a{
    color: var(--white);
}
footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;
}
footer.footer .move-up span{
    color: var(--midnight);
} 
footer.footer .move-up span:hover{
    color: var(--white);
    cursor: pointer;
}
footer.footer .mail{
    margin-top: 2%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
footer.footer .instagram{
    margin-top: 5vh;
}
footer.footer .follow .mail .i{
    font-family: var(--Livvic);
    font-style:var(--Lexend);
}
footer.footer .newsletter .logo{
    padding-top:1rem;
    position: relative;
    padding-left: 2.5rem;
}
footer.footer .follow .mail a{
    color: white;
    font-family:var(--Josefin);
    font-size: 1.2rem;
}
footer.footer .tag-line{
    font-family: var(--Josefin);
    color: rgb(167, 165, 165);
    font-size: 1.2rem;
}
/*--------x-------------FOOTER---------x-------------*/
@media only screen and (max-width:1450px){
    .nav .nav-brand a{
        font-size: 1.4rem;
        padding: 1.5rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.2rem;
    }

}

/*------------------view port less than or equal 1130px---------*/

@media only screen and (max-width:1150px){
    
    .nav .nav-brand a{
        font-size: 1.6rem;
        padding: 1rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.6rem;
    }
    .nav .nav-menu,.nav .navitems{
        flex-direction: column;
    }

    .nav .toggle-collapse{
        display: initial;
        padding-top: 0.5rem;
    }
    .site-content .post-content>.post-image .post-info{
        left: 2rem !important;
        bottom: 1.2rem !important;
        border-radius: 0% !important;
    }
    .site-content .sidebar .popular-post .post-info{
        display: none !important;
    }
    footer.footer .container{
        grid-template-columns: repeat(2,1fr);
    }
}

/*-----x------------view port less than or equal 1130px-----x---*/
@media only screen and (max-width:900px){
    .nav .nav-brand a{
        font-size: 1.6rem;
        padding: 1rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.6rem;
    }
}
/*------------------view port less than or equal 750px---------*/

@media only screen and (max-width:750px){
    .nav .nav-brand a{
        font-size: 1.6rem;
        padding: 1rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.6rem;
    }
    .nav .nav-menu,.nav .navitems{
        flex-direction: column;
    }

    .nav .toggle-collapse{
        display: initial;
    }
    main .site-content{
        grid-template-columns: 100%;
    }
    footer.footer .container{
        grid-template-columns: repeat(1,1fr);
    }
}

/*-x----------------view port less than or equal 750px----x----*/

/*------------------view port less than or equal 520px---------*/

@media only screen and (max-width:520px){
    .nav .nav-brand a{
        font-size: 1.1rem;
        padding: 1rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.5rem;
    }
    main .blog{
        height: 150vh;
    }
    .site-content .post-content>.post-image .post-info{
        display: none;
    }
    footer.footer .container>div{
        padding: 1rem .9rem !important;
    }
    footer .rights{
        padding: 0 1.4rem;
        text-align: center;
    }
    nav .toggle-collapse{
        width: 90% !important;
    }
    .nav .toggle-collapse{
        padding-top: 0.2rem;
    }
}

/*-x----------------view port less than or equal 520px----x----*/
@media only screen and (max-width:493px){
    .nav .nav-brand a{
        font-size: 1.1rem;
        padding: 1.2rem 0rem;
        text-decoration: none;
        display: block;
        font-family: var(--Lexend);
        font-size: 1.2rem;
    }
    .nav .toggle-collapse{
        padding-right: 1rem;
    }
}