@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700;800;900&display=swap');

:root{
    --primary: rgb(2, 43, 156);
    --off-white: rgba(241,241,241);
    --near-black: rgb(33, 37, 44);
    --yellow: rgba(254,206,10);
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
li{
    list-style: none;
}

@media screen and (max-width: 800px){
    section.social-media{
        background-color: var(--primary);
        height: 5vh;
        width: 100%;
    }
    section.social-media ul{
        display: flex;
        justify-content: flex-end;
        padding-right: 2%;
        margin-top: 0;
        padding-bottom: 1%;

    }
    .social-media ul li{
        margin-left: 0 10px;
    }
    .social-media ul li img{
        width: 15px;
        height: 15px;
        margin-left: 10px;
    }
    header{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        background-color: black;
        color: white;
        padding: 2% 15%;
    }
    header div.logo-container{
        grid-column: 1/4 ;
        display: flex;
        align-items: center;

    }
    header div.logo-container img{
        width: 65%;
        margin-right: 10px;
    }
    header div span{
        font-size: 24px;
        font-weight: 800;
    }
    header nav, header button{
        display: none;
    }
    section.banner{
        background: url('https://canatal.net/app/uploads/2018/11/Canatal-Boston-Structure3-3-1024x0-c-default.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-blend-mode: darken;
        background-color: rgba(0, 0, 139, 0.719);
        padding: 5%;
    }
    .banner .banner-content h2{
        font-size: 45px;
        color: white;
        font-weight: 600;
        margin: 2px;
    }
    .banner .banner-content h4{
        font-size: 25px;
        color: white;
        font-weight: 400;
        margin: 2px;
    }
    .banner .banner-content p{
        color: white;
        font-size: 12px;
        font-weight: 300;
        line-height: 30px;
        margin: 40px auto;

    }
    section.expertise{
        background: var(--off-white);
        padding: 5% 5%;
        /* padding-right: 50%; */
    }
    .expertise h2{
        font-size: 35px;
        color: var(--primary);
        font-weight: 600;
        margin: 2px;
    }
    .expertise p{
        margin-top: 12px;
        font-size: 12px;
        color: rgb(104, 103, 103);
        font-weight: 300;
    }
    section.project-planing{
        padding: 10% 5%;
        /* background-color: var(--off-white); */
        background-image: url('https://canatal.net/app/uploads/2018/11/Canatal-Preposal.jpg');
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }
    .project-content{
        background-color: var(--near-black);
        padding: 5% 10%; 
        margin-bottom: -70px;
    }
    .project-content h2{
        color: white;
        font-size: 25px;
    }
    .project-content h3{
        color: white;
        font-size: 15px;
        line-height: 23px;
        font-weight: 300;
        /* margin-bottom: 70px; */
    }
    .project-content li{
        padding-left: 2%;
        color: white;
        font-weight: 200;
        font-size: 11px;
        list-style: outside;
        margin-top: 15px;
    }
    section.have-a-project{
        /* height: 100vh; */
        margin: 50px 0;
        padding: 10% 5%;
        background-image: url('https://images.pexels.com/photos/196658/pexels-photo-196658.jpeg?cs=srgb&dl=pexels-picjumbocom-196658.jpg&fm=jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-blend-mode: darken;
        background-color: rgba(0, 0, 0, 0.788);
    }
    section.have-a-project h1{
        font-size: 25px;
        font-weight: bold;
        color: white;
    }
    section.have-a-project h3{
        font-size: 15px;
        font-weight: 300;
        color: white;
        margin-bottom: 20%;
    }
    section.have-a-project a{
        color: white;
        text-decoration: none;
        font-size: 12px;
        border-left: 2px solid white;
        padding-left: 5px;
        transition: .5s ease;
    }
    
    footer{
        background: black;
        padding: 5%;
    }
    footer div.footer-inner-container{
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    .footer-inner-container div.logo-name{
        grid-column: 1/13;
        padding: auto 1%;
    }
    .footer-inner-container .logo-name img{
       opacity: 0.4;
        width: 30%; 
    }
    .logo-name p{
        color: rgb(119, 119, 119);
        font-size: 15px;
        font-weight: 400;
    }
    .information{
        grid-column: 1/13;
        padding-left: 10px;
    }
    .our-service{
        grid-column: 1/13;
        padding-left: 10px; 
    }
    div ul{
        padding: 0;
        margin-top: 40px;
    }
    li{
        list-style: none;
        color: rgb(196, 196, 196);
        margin-top: 10px;
        
    }
    p.copyright{
        color: rgb(206, 206, 206);
    }
    div.menu-body{
        position: relative;
        text-align: end;
    }
    ul.menu-list{
        margin-top: 0;
        position: fixed;
        right: 20px;
        bottom: 80px;
        background-color: var(--near-black);
        padding: 10%;
        /* width: 30%; */
        text-align: center;
        background: var(--primary);
        border-radius: 20px 20px 0 20px;
        visibility: hidden;
        opacity: 0;
        z-index: 3;
        transition: 1s ease-in;
    }
    ul.show-menu{
        opacity: 1;
        visibility: visible;
    }
    ul.menu-list li{
        margin-bottom: 10px;
    }
    ul.menu-list li a{
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 100;
    }
    span.menu{
        display: inline-block;
        padding: 10px 15px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        /* height: 60px; */
        text-align: center;
        /* width: 60px; */
        background: var(--primary);
        color: white;
        font-size: 35px;
        border-radius: 120px;
        margin: 10px;
        align-items: center;
        z-index: 3;
        transition: .5s linear;
    }
    span.open-menu{
        transform: rotate(180deg);
    }
}

@media screen and (min-width: 801px){
    div.menu-body{
        display: none;
    }
    section.social-media{
        background-color: var(--primary);
        height: 5vh;
        width: 100%;
    }
    section.social-media ul{
        display: flex;
        justify-content: flex-end;
        padding-right: 2%;
        margin: 0;
    }
    .social-media ul li{
        margin-left: 0 10px;
    }
    .social-media ul li img{
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }
    header{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        background-color: black;
        color: white;
        padding: 2% 15%;
    }
    header div.logo-container{
        grid-column: 1/4 ;
        display: flex;
        align-items: center;

    }
    header div.logo-container img{
        width: 20%;
        margin-right: 10px;
    }
    header div span{
        font-size: 27px;
        font-weight: 800;
    }
    header nav{
        grid-column: 4/7;
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    header nav span{
        margin: auto 10px;
    }
    header nav span a{
        text-decoration: none;
        transition: 0.5s ease;
        color: rgb(163, 163, 163);
    }
    header nav span a:hover{
       color: white;
    }
    header button{
        grid-column: 8/13;
        width: 40%;
        color: white;
        background-color: var(--primary);
        border: none;
        border-radius: 2px;
    }
    section.banner{
        background: var(--primary);
        padding: 5% 10%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .banner .banner-content h2{
        font-size: 105px;
        color: white;
        font-weight: 600;
        margin: 2px;
    }
    .banner .banner-content h4{
        font-size: 35px;
        color: white;
        font-weight: 400;
        margin: 2px;
    }
    .banner .banner-content p{
        color: white;
        font-size: 16px;
        font-weight: 300;
        line-height: 30px;
        margin: 40px auto;

    }
    .banner-image{
        background: url('https://canatal.net/app/uploads/2018/11/Canatal-Boston-Structure3-3-1024x0-c-default.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 100vh;
        margin-bottom: -110px;
        margin-left: 20px;
    }
    section.expertise{
        background: var(--off-white);
        padding: 10% 10%;
        padding-right: 50%;
    }
    .expertise h2{
        font-size: 55px;
        color: var(--primary);
        font-weight: 600;
        margin: 2px;
    }
    .expertise p{
        margin-top: 20px;
        font-size: 15px;
        color: rgb(104, 103, 103);
        font-weight: 200;
    }
    section.project-planing{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        position: relative;
    }
    .project-image{
        grid-column: 1/6;
        background-image: url('https://canatal.net/app/uploads/2018/11/Canatal-Preposal.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        /* height: 100vh; */        
    }
    .project-content{
        grid-column: 6/13;
        padding: 10%;
        margin-top: -20px;
        margin-bottom: 20px;
        margin-left: -10px;
        background-color: var(--near-black);
    }
    .project-content h2{
        color: white;
        font-size: 45px;
    }
    .project-content h3{
        color: white;
        font-size: 20px;
        line-height: 23px;
        font-weight: 300;
        /* margin-bottom: 70px; */
    }
    .project-content li{
        color: white;
        font-weight: 200;
        font-size: 16px;
        list-style: square;
        margin-top: 15px;
    }
    section.have-a-project{
        /* height: 100vh; */
        margin: 50px 0;
        padding: 10%;
        background-image: url('https://images.pexels.com/photos/196658/pexels-photo-196658.jpeg?cs=srgb&dl=pexels-picjumbocom-196658.jpg&fm=jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-blend-mode: darken;
        background-color: rgba(0, 0, 0, 0.788);
    }
    section.have-a-project h1{
        font-size: 55px;
        font-weight: bold;
        color: white;
    }
    section.have-a-project h3{
        font-size: 25px;
        font-weight: 300;
        color: white;
        margin-bottom: 20%;
    }
    section.have-a-project a{
        color: white;
        text-decoration: none;
        font-size: 18px;
        border-left: 2px solid white;
        padding-left: 5px;
        transition: .5s ease;
    }
    section.have-a-project a:hover{
        padding-left: 10px;
    }
    footer{
        background: black;
        padding: 5%;
    }
    footer div.footer-inner-container{
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    .footer-inner-container div.logo-name{
        grid-column: 1/4;
        padding: auto 1%;
    }
    .footer-inner-container .logo-name img{
       opacity: 0.4;
        width: 30%; 
    }
    .logo-name p{
        color: rgb(119, 119, 119);
        font-size: 20px;
        font-weight: 400;
    }
    .information{
        grid-column: 5/8;
        padding-left: 10px;
    }
    .our-service{
        grid-column: 8/11;
        padding-left: 10px; 
    }
    div ul{
        padding: 0;
        margin-top: 40px;
    }
    li{
        list-style: none;
        color: rgb(196, 196, 196);
        margin-top: 10px;
        
    }
    p.copyright{
        color: rgb(206, 206, 206);
    }
}