/* start - global */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto' , sans-serif;
}

img{
    border-style: none;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    width:600px;
    max-width:100%
}

    /* start - media */

        /* small */


@media (min-width : 768px) {
    .container{
        width: 750px;
    }
}


	/* medium */

@media (min-width : 992px){
    .container{
        width: 970px;
    }
}


	/* large */

@media (min-width : 1200px){
    .container{
        width: 1170px;
    }
}
    /* end - media */

 /* end - global */

 /* start header */

 header{
    padding-top: 20px;
    padding-bottom: 20px;
 }

 header a{
    color: black;
 }

 header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 header .classic{
   display: blocka;
 }

 header .ul-classic{
    display: flex;
 }

 header .ul-classic li{
    padding: 15px;
 }

 header .ul-classic a{
    transition: 0.5s;
 } 

 header .ul-classic a:hover,
 header .ul-classic a.active{
    color: blue;
 }

 header .drop{
   display: none;
   position: relative;
 }

 header .drop .button i{
    color: black;
    font-size: 30px;
 }

 header nav .ul-drp{
   background-color: #eee;
   position: absolute;
   right: 0;
   min-width: 200px;
   top: calc(100% + 19px);
   display: none;
   transition: 0.3s;
   z-index: 100;
}

header nav .ul-drp::before{
   content: "";
   border-width: 10px;
   border-style: solid;
   border-color: transparent transparent #eee transparent;
   position: absolute;
   right: 0;
   top: -19px;
}

header nav ul li{
   padding: 15px;
}

 header nav .drop  a:hover{
   padding-left: 10px;
}

@media (max-width: 992px) {
   header .classic{
      display: none ;
   }
   header .drop{
      display: block;
   }
}


 /* end header */

 /* start landing */
section {
    background-image: url(../img/cover.jpg);
    background-size: cover;
    height: calc(100vh - 90px);
    position: relative;
}

section .landing-container .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

section .landing-container .text h1{
    font-size: 3em;
}

section .landing-container .text p{
    color: white;
    font-size: 2em;
}

@media (max-width: 992px) {
   section{
      height: calc(100vh - 70px);
   }
}
 /* end landing */

 /* start services */
 .services{
    padding-top: 60px;
    padding-bottom: 60px;
 }

 .services .cards{
    display: flex;
    justify-content: space-between;
    gap: 30px;
 }

 .services .card-head img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 160px;
    width: 50%;
    padding-bottom: 15px;
 }

 .services .card-head h3{
    text-align: center;
    font-weight: bolder;
    padding-bottom: 15px;
 }

 .services .card-body {
    text-align: center;
    line-height: 1.6;
 }

 @media (max-width:776px) {
    .services .cards{
        flex-direction: column;
    }

    section  p{
        width: 320px;
    }
 }

 /* end services */

 /* start about */
 .about{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f1f0f0;
 }

 .about .container{
    display: flex;
    align-items: center;
 }

 .about .image img{
    width: 500px;
 }


 .text h2{
    font-weight: bolder;
    padding-bottom: 15px;
 }

 .text p{
    line-height: 1.6;
 }

 @media (max-width:776px) {
    .about .container{
        flex-direction: column;
    }

    .about .image img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        padding-bottom: 15px;
    }

    .about .text{
        margin-top: 100px;
        text-align: center;
    }
 }

 /* end about */

 /* start contact */
 .contact{
    padding-top: 60px;
    padding-bottom: 60px;
 }

 .contact .title h2{
    text-align: center;
    padding-bottom: 30px;
 }

 .contact .link  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
 }

 .text{
    position: relative;
 }

 /* end contact */

 /* start footer */
 footer{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: black;
 }

 .footer-container{
    display: flex;
    justify-content: space-between;
 }

 footer p{
    color: white;
    padding: 15px;
 }
 /* end footer */