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

:root {
    --fontcolor: #43b9dc;
    --backgroundcolor: #34d3b4;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    transition: all .2s linear;
    text-transform: capitalize;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 2rem 7%;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

header #logo {
    font-size: 3rem;
    color: black;
}

header #logo span {
    color: var(--fontcolor);
}

header .navbar a {
    font-size: 1.5rem;
    color: var(--fontcolor);
    margin-left: 1rem;
}

.icons i {
    font-size: 2rem;
    color: var(--fontcolor);
    margin-left: 1rem;
}

header #menu_bars {
    font-size: 2rem;
    color: var(--fontcolor);
    display: none;
}


header .navbar.active{
    left: 0;
    transition: .5s;
}

.main-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-top: 75px;
    height: 100vh;
}


.container {
    background: url(../images/headerimage.png);
    width: 100%;
    padding-top: 7.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.container .main-text{
    width: 50%;
    position: absolute;
    top: 200px;
    padding: 0 2rem;
    text-align: center;
}

.container .main-text h2 {
    font-size: 40px;
    color: var(--fontcolor);
    padding-bottom: 1.5rem;
}

.container .main-text button {
    padding: 1.5rem 3.5rem;
    background: var(--backgroundcolor);
    color: white;
    border-radius: 10px;
    border: 1px solid white;
}

.service-section {
    padding: 2rem 7%;
    background: linear-gradient(#43b9dc, #34d3b4);
    min-height: 50vh;
}

#ourservices {
    color: white;
    font-size: 30px;
    padding: 2rem 0;
    text-align: center;
}

.inner-service-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    text-align: center;
}

.service-box {
    flex: 1 1 200px;
    padding: 5rem 0;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, .1);
}

.service-box i {
    color: white;
    font-size: 2rem;
    padding: .5rem 0;
}

.service-box h2 {
    color: white;
    font-size: 2rem;
    padding: 1rem 0;
}

.service-box p {
    color: white;
    font-size: 1.5rem;
}

.work-section {
    padding: 2rem 7%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: center;
}

.inner-work-section h2{
    font-size: 25px;
    padding: .5rem 0;
}

.text-work {
    padding: 1rem 0;
    padding-bottom: 2rem;
}

.myimages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
}

.btn {
    padding: 1.5rem 3rem;
    background: var(--backgroundcolor);
    border-radius: 15px;
    display: inline-block;
    color: white;
    font-size: 18px;
    margin-top: 5px;
}

.creative-text {
    padding: 2rem 0;
}

.gallery {
    background: var(--backgroundcolor);
    min-height: 100vh;
    padding: 2rem 9%;
}

.galleryheading {
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 30px;
}

.galleryheading span {
    color: var(--fontcolor);
}

.main-gallery .gallery-box {
    flex: 1 1 300px;
}

.main-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-box img {
    width: 100%;
}

.ourteam-section {
    padding: 10rem;
}

.ourteam-section h2 {
    padding: 2rem;
    font-size: 3rem;
    text-align: center;
}

.ourteam-section h2 span {
    color: var(--fontcolor);
}

.ourteam-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.ourteam-inner .section-box {
    flex: 1 1 250px;
}

.ourteam-inner .section-box img {
    width: 100%;
}

.section-box h3 {
    padding: 1rem 0;
    font-size: 1.5rem;
}

.team-social-links i {
    color: var(--fontcolor);
    font-size: 2rem;
    padding: 1rem 0;
    cursor: pointer;
}

.main-footer {
    display: flex;
    justify-content: space-between;
    background: #222;
    padding: 2rem 9%;
}

.inner-footer h2 {
    color: white;
    font-size: 2rem;
    padding: 2rem 0;
}

.inner-footer a {
    display: block;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
}














.footer {
    background-color: #f6fbf6;
  }
  .footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
  }
  .footer .box-container .box h3 {
    font-size: 2.2rem;
    color: #244d4d;
    padding: 1rem 0;
  }
  .footer .box-container .box p {
    font-size: 1.6rem;
    color: #779;
    padding-bottom: 1rem;
  }
  .footer .box-container .box a {
    font-size: 1.4rem;
    color: #779;
    padding: 1rem 0;
    display: block;
  }
  .footer .box-container .box a:hover {
    color: #244d4d;
  }
  .footer .box-container .box a:hover i {
    padding-right: 2rem;
  }
  .footer .box-container .box a i {
    padding-right: 0.5rem;
    color: #244d4d;
  }
  .footer .box-container .box form input[type=email] {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    color: #244d4d;
    text-transform: none;
    margin: 0.7rem 0;
    border: 0.1rem solid #244d4d;
  }
  
  .credit {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    background: #244d4d;
  }











/*Responsive*/
@media (max-width: 768px){
    html {
        font-size: 50%;
    }

    header #menu_bars{
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 100%;
        right: 0;
        background: var(--backgroundcolor);
        height: 100vh;
        text-align: center;
    }

    header .navbar a {
        display: block;
        background: white;
        margin-top: 1rem;
        padding: 2rem;
        width: 90%;
        border-radius: 10px;
    }

    .container .main-text{
        width: 70%;
        padding: 0;
    }
    
    .work-section {
        display: grid;
        grid-template-columns: 1fr;
    }

    .myimages img {
        width: 100%;
    }

    .btn {
        display: block;
    }

}