/* Global/Index */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #eeebe7;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
    @keyframes fadeInAnimation {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}

.container{
    padding: 20px 0 0 0;
}

.container, .footer-container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-menu a{
    color: #706E6C;
    padding-bottom: 5px;
}

.nav-menu a:hover{
    color: #ae8b6f;
    transition: 0.7s ease;
}

.nav-active{
    border-bottom: 2px solid #CDC5BC;
}

.nav-branding{
    font-size: 2rem;
}

.nav-branding img,
footer img{
    max-width: 100px;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #706E6C;
}

.hero h1{
    max-width: 1000px;
    margin: 20px auto 40px;
}

.accentbar{
    max-width: 100%;
    width: 500px;
    height: 2px;
    margin: 30px auto;
    background-color: #999793;
}

button{
    background-color: #5a748c;
    padding: 10px 20px;
    border-radius: 5px;
    border-style: none;
    margin: 20px auto;
}
    
button:hover{
    background-color: #7b90a3;
    transition: .9s;
}

button a{
    color: white;
}

section{
    margin: 50px auto;
}

.index-service{
    margin-top: 50px;
}

.instagram .div-right{
    min-height: 404px;
}


.instagram .div-right p{
    max-width: 400px;
    margin: 0 auto;
}

.instagram button{
    margin-top: 100px;
}

footer{
    width: 100%;
    background-color: #CDC5BC;
    margin: 0;
    text-align: center;
}

footer img{
    padding: 20px 0;
}

.footer-container{
    padding-bottom: 40px;
}

.footer-container ul{
    margin-top: 40px;
}


/* About */

.about, .instagram, .contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px auto;
}

.div-right, .phases{
    background-color: #CDC5BC;
    margin: 0 20px;
    padding: 30px;
}

.div-right p{
    max-width: 600px; 
}

/* Services */

.col-4 button{
    margin-top: 50px;
}

.service div{
    margin: 5px;
}

.service p, .service h2, .phases h2{
    padding-top: 15px;
}

.phases{
    margin: 40px auto;
}

.phases p{
    padding: 0 200px;
}

.phases .accentbar{
    margin: 15px auto 20px auto;
}

.on-demand button{
    margin-top: 20px;
}

.on-demand p{
    max-width: 800px;
    margin: 0 auto;
}

/* Portfolio */

.portfolio button{
    margin-top: 15px;
}

.portfolio img{
    height: 397px;
}


/* Contact */

.contact p, .contact button{
    margin-top: 50px;
}

.contact .div-right{
    height: 461px;
}

/* Typography */

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?7w48mm');
  src:  url('../fonts/icomoon.eot?7w48mm#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?7w48mm') format('truetype'),
    url('../fonts/icomoon.woff?7w48mm') format('woff'),
    url('../fonts/icomoon.svg?7w48mm#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-at-symbol:before {
  content: "\e900";
}

.icon-phone:before {
  content: "\e942";
}
.icon-facebook2:before {
  content: "\ea91";
}
.icon-instagram:before {
  content: "\ea92";
}

.icon-at-symbol, .icon-instagram{
    color: white;
    font-size: 1.7em;
    padding: 0 100px;
}

.icon-at-symbol:hover, .icon-instagram:hover{
    color: #ae8b6f;
    transition: .9s;
}


p, h1, h2, h3 {
    color: #474645;
}

h1, h2, h3 {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
}

p, a, label{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

nav li a{
    font-weight: 600;
}

.small-print{
    text-transform: uppercase;
    font-size: .8em;
    padding-bottom: 10px;
}

.footer-container a:hover{
    color: white;
}



/* Media Queries */

@media(max-width: 768px){
    .hamburger{
        display: block
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position: fixed;
        background-color: #474645;
        left: -100%;
        top: 165px;
        gap: 0;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.4s;
    }

    .nav-menu a{
    color: #E6E2DC;
    }

    .nav-menu a:hover{
        color: #C2BFBA;
        transition: 0.7s ease;
    }
    .nav-item{
        margin: 16px 0;
    }

    .nav-menu.active{
        left: 0;
    }

    section, .contact{
        margin-left: 50px;
        margin-right: 50px;
    }

    .phases p{
        padding: 0;
    }

    .icon-at-symbol, .icon-instagram{
       padding: 0 10px;
    }

    .contact{
        display: block;
    }

    .contact .div-right{
        margin-top: 20px;
    }

}

@media(max-width: 1016px){
    .instagram{
        display: block;
        max-width: 600px;
    }
    .instagram img{
        margin-bottom: 20px;
    }
}

@media(max-width: 1024px){
        .service{
        flex-wrap: wrap;
    }

}

@media(max-width: 1116px){
    .about{
        display: block;
    }
    .about p{
        margin: 0 auto;
    }
}


@media(max-width: 1250px){
        .phases{
        margin: 0 50px 50px;
    }

}


























/*Grid*/

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }





