* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html {
    font-size: 62.5%;;
}

body {
    font-family: 'Mitr', sans-serif;
    color: #fff;
    font-weight: 300;
    box-sizing: border-box;
    background: #10375c;
    text-align: center;
}
.grid-parent {
    display: grid;
    grid-template: 10vh 90vh repeat(2, 70vh) 50vh 30vh / repeat(10, 1fr);      
    grid-template-areas: 
    "nav nav nav nav nav nav nav nav nav nav"
    "header header header header header header header header header header"
    ". our_company-text our_company-text our_company-text our_company-text our_company-image our_company-image our_company-image our_company-image ."
    ". services-image services-image services-image services-image services-text services-text services-text services-text ."
    "insurance insurance immigration immigration divorce divorce general_services general_services real_estate real_estate"
    "footer footer footer footer footer footer footer footer footer footer"
    ;
}

/*--------------------- HEADER NAV  HERO ---------------------*/
header {
    grid-area: header;
}
.home-hero {      
    background-image: radial-gradient(circle at center, rgba(38, 39, 71, 0.5), rgba(14, 14, 34, 0.9)), url(../images/bg_hero.jpg);
    background-size: cover;
    background-position: center;  
    text-align: center;   
    height: 90vh;
}
.header_container--text {   
    display: block;  
    margin: 0 auto;
    text-align: left;
    width: 75%;
    padding-top: 15vh;
}
.header_mainText {
    font-size: 6.5rem;
    line-height: 9rem;
    color: #f6f5f5;  
    font-weight: 400;
    animation-name: moveUp;
    animation-duration: 1s;
    /* text-shadow: .5rem .5rem .8rem #000; */
    

}
.header_line {
    border: .4rem solid #f6f5f5;
    width: 60%;
    margin-top: 1rem;
    animation-name: moveDown;
    animation-duration: 1.2s;
}

.header_subText {   
    font-size: 3.5rem;
    margin-top: 1.7rem;
    font-weight: lighter;    
    letter-spacing: -.1rem;
    color: #f6f5f5;
    animation-name: moveDown;
    animation-duration: 1.2s;
}
.btn {
    
    font-size: 2rem;
    border: none;
    border-radius: .5rem;
    width: 19rem;
    height: 5rem;
    
    
}
.btn:hover {
    cursor: pointer;
    color: #fff;
    background-color: rgba(200, 200, 200, .5);
    border: solid 3px #fff;
}
.header_btn {
    text-align: center;
    background-color: Transparent;
    color: #f6f5f5;
    border: .2rem solid #f6f5f5;
    margin-top: 2.5rem;
    font-family: inherit;
    animation-name: moveDown;
    animation-duration: 1s;
    
}
/*--------------------- MAIN CONTENT ---------------------*/
.our_company-image {
    grid-area: our_company-image;    
    text-align: right;    
    align-items: center;
    
    }
.our_company-image img{
    max-width: 90%;
    border-radius: 35rem;
    margin-top: 10rem
}
.our_company-text {
    grid-area: our_company-text;
    text-align: left;
}
.services-text {
    grid-area: services-text;
    text-align: right;
    
}
.services-image {
    grid-area: services-image;
    /* background: rgb(14, 74, 204);  */
    text-align: left;
}
.services-image img {
    max-width: 90%;
    border-radius: 35rem;
    margin-top: 10rem
}

.insurance, .immigration, .divorce, .general_services, .real_estate{
    background-size: cover;
    background-position: center;
    margin: 1rem;
    border-radius: 2rem;
}
.insurance {
    grid-area: insurance;
    background-image: radial-gradient(circle at center, rgba(22, 112, 22, 0.5), rgba(34, 80, 22, 0.9)), url(../images/insurance_home_img.jpg);
    
}
.immigration {
    grid-area: immigration;
    background-image: radial-gradient(circle at center, rgba(236, 229, 132, 0.5), rgba(95, 95, 67, 0.9)), url(../images/immigration_home_img.jpg);
    
}
.divorce {
    grid-area: divorce;
    background-image: radial-gradient(circle at center, rgba(63, 171, 243, 0.4), rgba(108, 173, 214, 0.7)), url(../images/divorce_img.jpg);
    
}
.general_services {
    grid-area: general_services;
    background-image: radial-gradient(circle at center, rgba(63, 243, 204, 0.5), rgba(87, 167, 156, 0.9)), url(../images/general_home_img.jpg);
    }
.real_estate {
    grid-area: real_estate;
    background-image: radial-gradient(circle at center, rgba(63, 171, 243, 0.4), rgba(108, 173, 214, 0.7)), url(../images/realestate_img.jpg);
}

.presentation_intro {
    font-size: 2.1rem;
    margin: 5% 0;
    letter-spacing: -.1rem;
    line-height: 3rem;
}
.presentation_btn {
    background-color: #eebb4d;
    color: #fff;
    font-family: inherit;
}
.serviceslist_title {
    font-size: 2.1rem;
    font-weight: 400;
    color: #fff;
    text-shadow: .5rem .5rem .8rem #000;
    margin-top: 8rem;
    margin-bottom: 4rem;
}
.serviceslist_btn {
    position: relative;
    width: 12rem;
    font-size: 1.7rem;
    font-family: inherit;
    background-color: transparent;
    border: .2rem solid #dddddd;
    color: #dddddd;
}
.serviceslist_bg1 {
    background-image: url(../images/insurance_home_img.jpg);
}
.serviceslist_bg2 {
    background-image: url(../images/immigration_home_img.jpg);
}
.serviceslist_bg3 {
    background-image: url(../images/divorce_img.jpg);
}
.serviceslist_bg4 {
    background-image: url(../images/general_home_img.jpg);
}

.presentation-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-top: 10rem;
}
.presentation_intro {
    font-size: 2.1rem;
    margin: 5% 0;    
    line-height: 3rem;
}
    
.presentation_line-left {        
    border: .4rem solid #dddddd;
    width: 80%;
    margin-top: 2rem;
        
}
.presentation_line-rigth { 
    margin-inline-start: 20%;
    border: .4rem solid #dddddd;
    width: 80%;
    margin-top: 2rem;
}
    

@keyframes moveUp {
    0% {
            opacity: 0;
            transform: translateY(-5rem);
    }
    100% {
         opacity: 1;
            transform: translateY(0);
    }
}
@keyframes moveDown {
    0% {
            opacity: 0;
            transform: translateY(5rem);
    }
    100% {
            opacity: 1;
            transform: translateY(0);
    }
}

@media only screen and (min-width: 1024px) {
    
    .header_container--text
    .header_mainText {
        font-size: 6.5rem;
        line-height: 9rem;
    
    }
    .our_company-image img, .services-image img {
        margin-top: 5rem;
        max-width:80% ;
    }
}
  
@media only screen and (max-width: 800px) and (min-width:600px) {
   
    .serviceslist_btn {
        width: 10rem;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .grid-parent {
        grid-template: 10vh 90vh repeat(2, 38vh 39vh) repeat(4, 45vh)  30rem/ 1fr;
        grid-template-areas: 
        "nav"
        "header"
        "our_company-image"
        "our_company-text"        
        "services-image"
        "services-text"        
        "insurance"
        "immigration"
        "divorce"
        "general_services"
        "real_estate"
        "footer";
        text-align: center;
      }  
    .home-hero {        
        height: 90vh;    
    }  
    .header_container--text {   
        display: block;  
        margin: 0 auto;
        text-align: center;
        width: 50%;
        padding-top: 6rem;
    }
    .header_mainText {
        font-size: 4.9rem;
        line-height: 5rem;    
    }
    .header_line {
        border: .4rem solid #f6f5f5;
        margin-top: 4rem;
        width: 60%;
        margin-inline-start: 20%;
    }
    
    .header_subText {   
        display: grid;
        font-size: 2rem;
        font-weight: lighter;
        margin-top: 1.5rem;
        letter-spacing: -.1rem;
        margin-left: 0;
    }
    .header_btn {
        margin-top: 2.5rem;
    }
   
    .header_btn {
        margin-top: 2.5rem;
    }  
    
.presentation {
    position: relative;
    color: #fff;
}
.presentation-title {
    font-size: 3rem;
    margin-top: 0;
}
.presentation_intro {
    font-size: 1.9rem;;
    margin: 5% ;
}
.presentation_line-left {
    border: .2rem solid #fff;
    margin-inline-start: 25%;
    width: 50%;
    margin-top: 2rem;
}
.presentation_line-rigth {    
    text-align: right;
    margin-inline-start: 25%;
    border: .2rem solid #fff;
    width: 50%;
    margin-top: 2rem;
}
.presentation_btn {
    background-color: #eebb4d;
    color: #fff;
}


.our_company-text {
    text-align: center;
}
.our_company-image {
    text-align: center;
}
.our_company-image img{
   
    max-width: 60%;
    border-radius: 35rem;
    margin-top: 2rem   
}
.services-image {
    text-align: center;
}

.services-image img {
    max-width: 60%;
    border-radius: 35rem;
    margin: 3% 0;
}

.services-text {
    text-align: center;
    margin: 5%;   
}

.serviceslist_title {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: .5rem .5rem .8rem #000;
    margin-bottom: 3rem;
    margin-top: 3rem;
}
.serviceslist_btn {
    position: relative;
    width: 12rem;
    font-size: 1.7rem;
}
.serviceslist_items--bg1 {
    background-image: url(../images/insurance_home_img.jpg);
}
.serviceslist_items--bg2 {
    background-image: url(../images/immigration_home_img.jpg);
}
.serviceslist_items--bg3 {
    background-image: url(../images/divorce_img.jpg);
}
.serviceslist_items--bg4 {
    background-image: url(../images/general_home_img.jpg);
}
.serviceslist_items--bg5 {
    background-image: url(../images/realestate_home_img.jpg);
}
}

@media only screen and (max-width: 320px) {     
    
    .header_container--text {           
        padding-top: 3rem;
    }
}