@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:400,600,800|Heebo:300,400&display=swap');

body {
    margin: 0;
    font-family: 'Abhaya Libre', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

header {
    position: absolute;
    left: 0px;
    right: 0px;
    /*border-bottom: 1px solid black;*/
    padding: 0px 30px;
    z-index: 10;
}

header .row {
    justify-content: space-between;
    align-items: center;
}

header .brand-name a {
    display: block;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    color: black;
    position: relative;
    float: left;
}

header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .navbar ul li {
    display: inline-block;
    margin-left: 35px;
}

header .navbar ul li a {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    text-decoration: none;
    line-height: 70px;
    color: black;
    display: block;
    font-weight: 300;
    position: relative;
}

header .navbar ul li a.active {
    font-weight: 400;
}

header .navbar ul li a::before {
    content: '';
    height: 1.55px;
    background-color: black;
    width: 0;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: -1px;
    transition: all .5s ease;
    font-family: 'Heebo', sans-serif;
}

header .navbar ul li a:hover::before {
    width: 100%;
    left: 0;
}

header .navbar ul li a.active::before {
    width: 100%;
    left: 0;
}

.home {
    min-height: 100vh;
    /*background-image: url("1x/Header@2x.jpg");*/
    background-color: #FFF4F4;
    background-size: cover;
    background-position: center;
    padding: 15px;
}

.home .full-screen {
    min-height: 100vh;
}

.home .home-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home .home-content .block {
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 130px;
    /*border-left: 5px solid white;*/
    margin-top: 40px;
}

.home .home-content .block h6 {
    color: black;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.home .home-content .block h1 {
    color: black;
    font-size: 65px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    padding-bottom: 0.18em;
}

.home .home-content .block h3 {
    color: black;
    font-family: 'Heebo', sans-serif;
    font-size: 25px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

/*.home .home-content .block .cv-btn {
    padding-top: 20px;
}

.home .home-content .block .cv-btn a {
    border-radius: 4px;
    color: black;
    border: 1px solid black;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    transition: all .5s ease;
    background-color: transparent;
}*/

.home .home-content .block .cv-btn a:hover {
    background-color: black;
    color: black;
}

/*gallery starts here*/

.main {
    max-width: 1200px;
    margin: auto;
    padding: 2.5em;
    padding-top: 5em;
    padding-bottom: 88em;
}

.row-gallery {
    margin: 8px -16px;
    padding-top: 2em;
}
  
.row-gallery,
.row-gallery > .column {
    padding: 8px;
}
  
.column {
    float: left;
    width: 33.333%;
    padding-bottom: 1em;
}
  
.row-gallery:after {
    content: "";
    display: table;
    clear: both;
}
  
.content {
    background-color: white;
    padding: 18px;
    overflow: hidden;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}
  
h3 {
    font-size: 18px;
    font-weight: 300;
    padding-top: 11px;
    font-family: 'Heebo', sans-serif;
}
  
/*home-grid-hover*/
.content:hover {
    -webkit-tranform: scale(1);
    transform: scale(1);
}
  
.content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
}
  
.content:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 8vh;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #F2A193;
    border-right: 3px solid #F2A193;
    z-index: 9;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
    0% {
   -webkit-transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   -webkit-transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

@-moz-keyframes fade_move_down {
    0% {
   -moz-transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   -moz-transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

@keyframes fade_move_down {
    0% {
   transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

@media only screen and (min-width: 1800px) {

    .container {
        max-width: 1600px;
        margin: auto;
    }

    .home .home-content .block {
        flex: 0 0 65%;
        max-width: 65%;
        padding-left: 150px;
        /*border-left: 5px solid white;*/
        margin-top: 40px;
    }

    .main {
        max-width: 1600px;
        margin: auto;
        padding: 2.5em;
        padding-top: 5em;
        padding-bottom: 88em;
    }

    .home .home-content .block h1 {
        color: black;
        font-size: 70px;
        font-weight: 800;
        margin: 0;
        padding: 0;
        padding-bottom: 0.18em;
    }
    .home .home-content .block h3 {
        color: black;
        font-family: 'Heebo', sans-serif;
        font-size: 32px;
        font-weight: 300;
        margin: 0;
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
    header .navbar ul li a {
        font-size: 16px;
        line-height: 60px;
    }
    header .brand-name a {
        font-size: 22px;
    }
    .home .home-content .block {
        flex: 0 0 100%;
        max-width: 100%;
    }    
    .home .home-content .block h1 {
        font-size: 52px;
        padding-bottom: 0.25em;
        line-height: 1.1;
    }
    .home .home-content .block h3 {
        color: black;
        font-family: 'Heebo', sans-serif;
        font-size: 22px;
    }
    h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1020px) {
    header .navbar ul li a {
        font-size: 16px;
        line-height: 60px;
    }
    header .brand-name a {
        font-size: 22px;
    }
    .home .home-content .block {
        flex: 0 0 75%;
        max-width: 85%;
    }    
    .home .home-content .block h1 {
        font-size: 52px;
        padding-bottom: 0.25em;
        line-height: 1.1;
    }
    .home .home-content .block h3 {
        color: black;
        font-family: 'Heebo', sans-serif;
        font-size: 22px;
    }
    .column {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .column {
        width: 100%;
        padding-bottom: 0.25em;
    }
    .main {
        max-width: 1200px;
        margin: auto;
        padding: 2em;
        padding-top: 2.5em;
        padding-bottom: 88em;
    }
    .scroll-down {
        position: absolute;
        left: 50%;
        bottom: 5vh;
        display: block;
        text-align: center;
        font-size: 20px;
        z-index: 100;
        text-decoration: none;
        text-shadow: 0;
        width: 20px;
        height: 20px;
        border-bottom: 3px solid #F2A193;
        border-right: 3px solid #F2A193;
        z-index: 9;
        -webkit-transform: translate(-50%, 0%) rotate(45deg);
        -moz-transform: translate(-50%, 0%) rotate(45deg);
        transform: translate(-50%, 0%) rotate(45deg);
        -webkit-animation: fade_move_down 2s ease-in-out infinite;
        -moz-animation: fade_move_down 2s ease-in-out infinite;
        animation: fade_move_down 2s ease-in-out infinite;
    }
    .gallery-row {
        padding-bottom: 4em;
    }
}

@media only screen and (max-width: 600px) {

    /*header .navbar ul li a {
        display: none;
    }*/
    
    header .navbar {
        text-align: center;
    }

    /*hamburger menu*/
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    header {
        width: 100%;
        display: inline-block;
        left: 0px;
        right: 0px;
        padding: 16px;
        padding-left: 20px;
        z-index: 1000000;
    }
    header .navbar ul li {
        display: inline-block;
        margin-left: 0px;
    }

    header .navbar ul li a {
        font-family: 'Heebo', sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    .home .home-content .block {
        flex: 0 0 90%;
        max-width: 100%;
        padding-left: 50px;
        margin-top: 0px;
    }    
    .home .home-content .block h1 {
        font-size: 60px;
        padding-bottom: 0.5em;
        line-height: 1;
    }
    .home .home-content .block h3 {
        color: black;
        font-family: 'Heebo', sans-serif;
        font-size: 22px;
    }
    .nav-container { /*move this one*/
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1000;
        background: black;
        opacity: 0;
        transition: all .2s ease;
        transform: translateX(1000px);
        overflow-x: hidden;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
        
    }
    .nav-container ul li:nth-child(1) a {
        transition-delay: .2s;
        z-index: 1000000;
    }
    .nav-container ul li:nth-child(2) a {
        transition-delay: .3s;
    }
    .nav-container ul li:nth-child(3) a {
        transition-delay: .4s;
    }
    .nav-container ul li:nth-child(4) a {
        transition-delay: .5s;
    }
    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-container ul li a {
        padding: 10px 25px;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        /*transform: translateY(-20px);*/
        transition: all .2s ease;
    }
    .nav-open {
        position: fixed;
        right: 4px;
        top: 4px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
        /*background-color: white;*/
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: black;
        border-radius: 2px;
        margin-left: 14px;
    }


    .nav-open i:nth-child(1) {
        margin-top: 17px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    
    /*header .navbar ul li {
        display: inline-block;
        margin-left: 35px;
    }*/
    header .navbar ul li a {
        font-family: 'Heebo', sans-serif;
        /*font-size: 17px;*/
        text-decoration: none;
        /*line-height: 70px;*/
        color: white;
        display: block;
        font-weight: 400;
        position: relative;
    }
    header .navbar ul li a.active {
        font-weight: 600;
    }
    /*header .navbar ul li a::before {
        content: '';
        height: 1.55px;
        background-color: black;
        width: 0;
        position: absolute;
        right: 0px;
        left: 0px;
        bottom: -1px;
        transition: all .5s ease;
        font-family: 'Heebo', sans-serif;
    }*/
    #nav:checked ~ .nav-container {
        transform: translateX(0);
    }
    /*#nav:not(:checked) + .nav-container ul {
        cursor: none;
    }
    #nav:not(:checked) + .nav-container ul li {
        cursor: none;
    }
    #nav:not(:checked) + .nav-container ul li a {
        cursor: none;
    }*/

}

#nav:checked + .navbar ul {
    display: block;
}
#nav:checked + .nav-open {
    transform: rotate(45deg);
}
#nav:checked + .nav-open i {
    background: white;
    transition: transform .2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-container {
    z-index: 0;
    opacity: 0.75;
}
#nav:checked ~ .nav-container ul li a {
    opacity: 1;
    transform: translateY(0);
}
.hidden {
    display: none;
}



#nav:not(:checked) + .nav-container ul {
    cursor: none;
}
#nav:not(:checked) + .nav-container ul li {
    cursor: none;
}
#nav:not(:checked) + .nav-container ul li a {
    cursor: none;
}


