html, body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', cursive;
    color: white;
    text-shadow: none;
}

/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');*/

.wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 90;
}


/* ---------------------------------------------------- menu -------------------------------------------- */

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}


/* #Navigation
================================================== */

.cd-header {
    position: fixed;
    width:100%;
    top:0;
    left:0;
    z-index:100;
    background-color: #343437;
    height: 80px;
}

.header-wrapper {
    position: relative;
    width: calc(100% - 100px);
    margin-left: 50px;
}

.logo-wrap {
    position: absolute;
    display: flex; /*block*/
    flex-direction: row;
    justify-content: center;
    /*align-items: center;*/
    right:0;
    top: 20px;
    /*background-color: #343437;*/
    cursor: pointer;
}

.logo-wrap img {
    height: 80%;
    width: auto;
    transition-duration: 0.7s;
}

.logo-wrap div:first-child {
    margin-right: 40px;
}

.logo-wrap div:nth-child(2) {
    margin-right: 60px;
}

.logo-wrap div:nth-child(3) {
    margin-left: 40px;
}

.logo-wrap a {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    transition : all 0.3s ease-out;
}
.logo-wrap a span{
    color: #8167a9;
}
.logo-wrap a:hover {
    opacity: 0.9;
}
.nav-but-wrap{
    position: relative;
    display: inline-block;
    float: left;
    padding-left: 15px;
    padding-top: 15px;
    margin-top: 26px;
    transition : all 0.3s ease-out;
}

.menu-icon {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
}

.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #fff;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, background-color .5s ease;
    transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
    width: 16.5px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.menu-icon__line-right {
    width: 16.5px;
    float: right;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
    width: 30px;
}
.nav {
    position: fixed;
    z-index: 98;
}
.nav:before, .nav:after {
    content: "";
    position: fixed;
    top: 20px;
    left: 50px;
    width: 0;
    height: 0;
    background-color: rgba(20, 21, 26,0.6);
    border-bottom-right-radius: 200%;
    z-index: -1;
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.nav:after {
    background-color: #343437; /*rgba(9,9,12,1)*/;
    /*background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg');*/
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 300%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
}
.nav:before {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.nav__content {
    position: fixed;
    visibility: hidden;
    top: 90px;
    left: 50px;
    width: 280px;
    text-align: left;
}
.nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}
.nav__list-item {
    position: relative;
    display: block;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    text-align: left;
    color: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 2px;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, transform .2s ease;
    transition: opacity .2s ease, transform .2s ease, -webkit-transform .2s ease;
    margin-top: 7px;
    margin-bottom: 7px;
}
.nav__list-item a{
    position: relative;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    z-index: 2;
    padding-left: 40px;
    padding-top:5px;
    padding-bottom: 5px;
    display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list-item a:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 5px;
    height: 0;
    opacity: 0;
    background-color: #8167a9;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list-item a:hover:after{
    height: 100%;
    opacity: 1;
    top: 0;
}
.nav__list-item a:hover{
    color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
    color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{
    height: 100%;
    opacity: 1;
    top: 0;
}
body.nav-active .nav__content {
    visibility: visible;
}
body.nav-active .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translate(0px, 0px) rotate(-45deg);
    transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
    width: 15px;
    -webkit-transform: translate(2px, 4px) rotate(45deg);
    transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
    width: 15px;
    float: right;
    -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
    transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}
body.nav-active .nav {
    visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
    width: 250px;
    height: 400px;
    border-radius: 15px;
}
body.nav-active .nav:after {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
body.nav-active .nav:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
body.nav-active .nav__list-item {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(5) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(6) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(7) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(8) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(9) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(10) {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.switch-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    transform: translateY(-50%);
    width: 100%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    margin: 0 auto;
    text-align: center;
}
.switch-wrap h1 {
    font-weight: 900;
    font-size: 46px;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
@media screen and (max-width: 580px){
    .switch-wrap h1 {
        font-size: 32px;
    }
}
.switch-wrap p {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    color: #8167a9;
    text-align: center;
    margin-top: 15px;
}
.switch-wrap p span {
    position: relative;
}
.switch-wrap p span:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -4px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.switch-wrap p span:nth-child(2):before {
    opacity: 0;
}
#switch,
#circle {
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
#switch {
    width: 60px;
    height: 8px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #000;
    border-radius: 27px;
    background: #8167a9;
    position: relative;
    display: inline-block;
}
#circle {
    position: absolute;
    top: -11px;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
    background: #fff;
}
.switched {
    border-color: #8167a9 !important;
    background: #000 !important;
}
.switched #circle {
    left: 43px;
    background: #000;
}








/* my code for about me page */

.aboutMe {
    position: relative;
    top: 60px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    background-color: #F3F4F6;
    box-sizing: border-box;
}

.invisible {
    display: none;
}

.aboutMe-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 60px 20px;
    box-sizing: border-box;
    background: #F2F3F5 url(../assets/taking-photos-2168422_1280.jpg) no-repeat fixed left;
    background-size: 80% auto;
}

.aboutMe-text h1 {
    text-transform: uppercase;
    color: #343437;
    font-size: 40px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 3px;
    text-align: right;
    box-sizing: border-box;
    padding-left: 60%;
}

.aboutMe-text p {
    font-size: 16px;
    color: #927F7F;
    line-height: 30px;
    letter-spacing: 3px;
    text-align: right;
    text-shadow: 0 4px 6px #F4F5F7;
    box-sizing: border-box;
    padding-left: 60%;
}

.digits {
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    padding: 80px 0 50px 0;
    box-sizing: border-box;
}

.digits-block:nth-child(1), .digits-block:nth-child(2) {
    padding-right: 40px;
    box-sizing: border-box;
}

.digits-block:nth-child(3) {
    padding-right: 0;
    box-sizing: border-box;
}

.digits .digits-block h1 {
    width: 100%;
    color: #D1C8BC;
    font-size: 60px;
    font-weight: bold;
    padding-left: 0;
    text-shadow: 0 4px 6px #F3F4F6;
}

.digits .digits-block p {
    color: #7F7F91;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 0;
    text-shadow: 0 4px 6px #F3F4F6;
}

.services {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    box-sizing: border-box;
    background-color: #F5F5F5;
}

.services-wrapper {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.services-wrapper-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.services-block {
    width: 23%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    color: #343437;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.services-text {
    width: 100%;
}

.services-text h1 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #343437;
    text-transform: uppercase;
}

.services-text p {
    line-height: 30px;
    color: #7F7F91;
}


.feedback {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    /*height: 100vh;*/
    font-family: 'Open Sans', sans-serif;
    background: white;
}

.feedback-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 120px 0 60px 20px;
    box-sizing: border-box;
    background: white url(../assets/photo-bg.png) no-repeat fixed right;
    background-size: 80% auto;
}

.feedback-text h1 {
    width: 100%;
    text-transform: uppercase;
    color: #343437;
    font-size: 40px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 3px;
    text-align: left;
    box-sizing: border-box;
    padding-left: 20px;
    text-shadow: 0 2px 4px white;
}


/* ----------------------------------------------------- slider ------------------------------------------*/

body {
    /*font: 14px/22px Arial, Helvetica, sans-serif;*/
    /*color: #333;*/
    /*margin: 50px auto;*/
    overflow-x: hidden;
}

#slider {
    text-align: center;
    color: #333;
}

label, a {
    color: teal;
    cursor: pointer;
    text-decoration: none;
}
label:hover, a:hover {
    color: #000 !important;
}
* {
    box-sizing: border-box;
}
label, #active, img {
    -moz-user-select:none;
    -webkit-user-select:none;
}
#slider {
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 50%;
    height: auto;
    padding: 20px;
    /*margin: 0 auto;
    max-width: 50%;*/
}
input {
    display: none;
}
#slide1:checked ~ #slides .inner {
    margin-left:0;
}
#slide2:checked ~ #slides .inner {
    margin-left:-100%;
}
#slide3:checked ~ #slides .inner {
    margin-left:-200%;
}
#slide4:checked ~ #slides .inner {
    margin-left:-300%;
}
#slide5:checked ~ #slides .inner {
    margin-left:-400%;
}
#overflow {
    width: 100%;
    overflow: hidden;
}

article {
    display: flex;
    height: 200px;
}

article#slider {
    background: transparent;
}

article p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: justify;
    line-height: 30px;
    text-shadow: 1px 1px 2px white;
}

article h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

h3.small {
    padding-top: 0;
    margin-top: 0;
    font-size: 16px;
    font-weight: normal;
    text-transform: initial;
}

#slides .inner {
    width: 500%;
    background: transparent;
    /*line-height: normal;*/
}
#slides article {
    width: 20%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    padding: 20px;
}

#controls {
    margin: -25% 0 0 0;
    width: 100%;
    height: 50px;
}
#controls label {
    display: none;
    width: 50px;
    height: 50px;
    opacity: 0.3;
}
#active {
    margin: 10px 0 0;
    text-align: center;
}
#active label {
    border-radius: 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
}
#active label:hover {
    background: #ccc;
    border-color: #777 !important;
}
#controls label:hover {
    opacity: 0.8;
}
#slide1:checked ~ #controls label:nth-child(2),
#slide2:checked ~ #controls label:nth-child(3),
#slide3:checked ~ #controls label:nth-child(4),
#slide4:checked ~ #controls label:nth-child(5),
#slide5:checked ~ #controls label:nth-child(1) {
    background: url('http://upload.robinbrons.com/u/1366504016.png') no-repeat;
    float: right;
    margin: -20px -70px 0 0;
    display: block;
}
#slide1:checked ~ #controls label:nth-child(5),
#slide2:checked ~ #controls label:nth-child(1),
#slide3:checked ~ #controls label:nth-child(2),
#slide4:checked ~ #controls label:nth-child(3),
#slide5:checked ~ #controls label:nth-child(4) {
    background: url('http://upload.robinbrons.com/u/1366544716.png') no-repeat;
    float: left;
    margin: -20px 0 0 -70px;
    display: block;
}
#slide1:checked ~ #active label:nth-child(1),
#slide2:checked ~ #active label:nth-child(2),
#slide3:checked ~ #active label:nth-child(3),
#slide4:checked ~ #active label:nth-child(4),
#slide5:checked ~ #active label:nth-child(5) {
    background: #333;
    border-color: #333 !important;
}
/* Info Box */
.info {
    line-height: 20px;
    margin: 0 0 -150%;
    position: absolute;
    font-style: italic;
    padding: 30px 30px;
    opacity: 0;
    color: #000;
    text-align: left;
}
.info h3 {
    color: #333;
    margin: 0 0 5px;
    font-weight: normal;
    font-size: 22px;
    font-style: normal;
}
/* Slider Styling */
#slides {
    /*margin: 45px 0 0;*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    /*box-shadow: 1px 1px 4px #666;*/
    padding: 1%;
    /*background: #fff;*/
    /*background: rgb(252, 255, 244);*/
    /*background: linear-gradient(top, rgba(252, 255, 244, 1) 0%, rgba(219, 218, 201, 1) 100%);*/
    background: transparent;
}
/* Animation */
#slides .inner {
    transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
#slider {
    -webkit-transform: translateZ(0);
    transition: all 0.5s ease-out;
}
#controls label {
    -webkit-transform: translateZ(0);
    transition: opacity 0.2s ease-out;
}
#slide1:checked ~ #slides article:nth-child(1) .info,
#slide2:checked ~ #slides article:nth-child(2) .info,
#slide3:checked ~ #slides article:nth-child(3) .info,
#slide4:checked ~ #slides article:nth-child(4) .info,
#slide5:checked ~ #slides article:nth-child(5) .info {
    opacity: 1;
    transition: all 1s ease-out 0.6s;
}
.info, #controls, #slides, #active, #active label, .info h3, .desktop, .tablet, .mobile {
    -webkit-transform: translateZ(0);
    transition: all 0.5s ease-out;
}
/* Responsive Styling */
@media only screen and (max-width: 850px) and (min-width: 450px) {
    #slider #controls {
        margin: -25% 0 0 15%;
        width: 70%;
        height: 50px;
    }
    #slider #controls label {
        transform: scale(0.8);
    }
    #slider #slides {
        padding: 1% 0;
        border-radius: 0px;
    }
    #slider #active {
        margin: 22% 0 0;
    }
}
/* Mobile */
#mobile:checked ~ #slider #controls {
    margin: -28% 0 0 24%;
    width: 50%;
    height: 50px;
}
#mobile:checked ~ #slider #active {
    margin: 23% 0 0;
}
#mobile:checked ~ #slider #slides .info {
    opacity: 0 !important;
}
#mobile:checked ~ #slider #controls label {
    transform: scale(0.6);
}
@media only screen and (max-width: 450px) {
    #slider #controls {
        margin: -28% 0 0 24%;
        width: 50%;
        height: 50px;
    }
    #slider #active {
        margin: 23% 0 0;
    }
    #slider #slides {
        padding: 1% 0;
        border-radius: 0px;
    }
    #slider #slides .info {
        opacity: 0 !important;
    }
    #slider #controls label {
        transform: scale(0.6);
    }

    #slider {
        width: 100%;
    }

    article {
        height: auto;
    }

    .feedback-text {
        background: none;
    }

    .feedback-text h1 {
        line-height: normal;
    }

    .feedback-text {
        height: auto;
        padding: 0;
    }

    article#slider {
        width: 100%;
    }

    #slides article {
        padding: 30px 0;
    }

}
@media only screen and (max-width: 850px) {
    .feedback-text {
        background: none;
    }

    #slider {
        width: 80%;
    }

    .feedback-text {
        padding: 40px 0 40px 20px;
    }
}



/* --------------------------------------------------- subscribe --------------------------------------- */
input#email {
    display: flex;
    justify-content: center;
    margin-right: 20px;
    box-sizing: border-box;
}

.ourUpdates form#subscribeForm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
}

.ourUpdates h1 {
    margin-top: 50px;
}

.ourUpdates p {
    display: flex;
    justify-content: center;
    text-align: center;
}

.ourUpdates {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #343437;
}

.ourUpdates input {
    width: 300px;
    height: 50px;
    border-radius: 4px;
    border: none;
    padding-left: 20px;
}

.ourUpdates form input:focus {
    border: none;
    box-shadow: 0 2px 4px grey;
}

.ourUpdates button {
    width: 180px;
    height: 50px;
    background-color: #D1C8BC;
    border: #7b7b7b;
    border-radius: 4px;
    transition-duration: 0.5s;
}

.ourUpdates button {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ourUpdates button {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
}

.ourUpdates button:hover {
    background-color: #626262;
}


/* ------------------------------------------------------ gallery ---------------------------------------- */
/*
   ------------------------------------------------ Small Gallery ----------------------------------------------
*/
* {
    box-sizing: border-box;
}
body {
    background-color: #ecf0f1;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0 auto;
    /*padding: 10px;*/
}

.gallery-items {
    flex-basis: 16.6%;
    height: 220px;
    /*margin-bottom: 6px;*/
    opacity: .85;
    cursor: pointer;
}

.gallery-items:hover {
    opacity: 1;
}
.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    width: 40%;
    height: 80%;
    margin: 5% auto;
}


.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 40px;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 17px;
    top: 45%;
    cursor: pointer;
    margin-top: 40px;
}

.lightbox-prev {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}


.lightbox-next {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-items {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-items {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}
/*


/* ----------------------------------------------------- footer ------------------------------------------*/
footer {
    width: 100%;
    background-color: #343437;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
    text-align: center;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 20px;
}

.social a.rollover {
    background: url('../assets/104498_facebook_icon.svg'); /* Путь к файлу с исходным рисунком  */
    display: block; /*  Рисунок как блочный элемент */
    width: 20px; /* Ширина рисунка */
    height: 20px; /*  Высота рисунка */
    margin-right: 15px;
    transition-duration: 0.5s;
}
.social a.rollover:hover {
    background: url('../assets/white-104498_facebook_icon.svg'); /* Путь к файлу с заменяемым рисунком  */
}

.social a.rollover2 {
    background: url('../assets/211920_twitter_social_icon.svg'); /* Путь к файлу с исходным рисунком  */
    display: block; /*  Рисунок как блочный элемент */
    width: 20px; /* Ширина рисунка */
    height: 20px; /*  Высота рисунка */
    margin-right: 15px;
    transition-duration: 0.5s;
}
.social a.rollover2:hover {
    background: url('../assets/white-104501_twitter_bird_icon.svg'); /* Путь к файлу с заменяемым рисунком  */
}

.social a.rollover3 {
    background: url('../assets/1851680_social_pintrest_network_pinterest_social media_icon.svg'); /* Путь к файлу с исходным рисунком  */
    display: block; /*  Рисунок как блочный элемент */
    width: 20px; /* Ширина рисунка */
    height: 20px; /*  Высота рисунка */
    margin-right: 15px;
    transition-duration: 0.5s;
}
.social a.rollover3:hover {
    background: url('../assets/white-5279116_pin_pinterest_inspiration_pinterest logo_icon.svg'); /* Путь к файлу с заменяемым рисунком  */
}

.social a.rollover4 {
    background: url('../assets/1161953_instagram_icon.svg'); /* Путь к файлу с исходным рисунком  */
    display: block; /*  Рисунок как блочный элемент */
    width: 20px; /* Ширина рисунка */
    height: 20px; /*  Высота рисунка */
    transition-duration: 0.5s;
}

.social a.rollover4:hover {
    background: url('../assets/white-1161953_instagram_icon.svg'); /* Путь к файлу с заменяемым рисунком  */
}

.social img {
    color: #999999;
    height: 100%;
    width: auto;
}

.social img:nth-child(1), .social img:nth-child(2), .social img:nth-child(3) {
    margin-right: 20px;
}

.social-p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
}

/* -------------------------------------------------- @media -------------------------------------------- */

@media screen and (min-width: 500px) and (max-width: 1150px) {
    .aboutMe-text {
        background: none;
        padding: 0;
        justify-content: center;
    }

    .aboutMe-text h1, .aboutMe-text p {
        padding-left: 0;
        text-align: center;
    }

    .aboutMe-text h1 {
        margin-top: 60px;
    }

    .aboutMe-text p {
        padding: 10px;
    }

    .digits {
        padding: 10px;
        justify-content: center;
    }

    .digits-block:nth-child(1), .digits-block:nth-child(2) {
        padding-right: 100px;
        box-sizing: border-box;
    }


    .invisible {
        display: none;
    }

    .invisible img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 765px) {
    .services-wrapper-row {
        flex-direction: column;
    }

    .services-block {
        width: 80%;
    }

    .ourUpdates form#subscribeForm {
        flex-direction: column;
    }

    input#email {
        margin-right: 0;
        margin-top: 20px;
    }

    .ourUpdates button {
        margin-bottom: 0;
    }

    .ourUpdates p {
        padding: 10px;
        box-sizing: border-box;
    }

    .feedback-text h1, .feedback-text h3, .feedback-text h3.small {
        text-align: center;
    }

    .feedback-text p {
        text-align: center;
    }

    .digits {
        justify-content: center;
    }

    .digits-block:nth-child(1), .digits-block:nth-child(2) {
        padding-right: 20px;
        box-sizing: border-box;
    }

}


@media screen and (max-width: 499px) {

    .cd-header {
        justify-content: space-around;
    }

    .aboutMe-text {
        background: none;
        padding: 0;
        justify-content: center;
        box-sizing: border-box;
    }

    .invisible {
        display: flex;
    }

    .invisible img {
        width: 100%;
        height: auto;
    }

    .aboutMe-text h1, .aboutMe-text p {
        padding-left: 0;
        text-align: center;
    }

    .aboutMe-text p {
        padding: 10px;
    }

    .digits {
        padding: 10px;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .digits .digits-block h1 {
        width: 100%;
        font-size: 30px;
        box-sizing: border-box;
    }

    .digits .digits-block p {
        font-size: 12px;
    }

    .feedback-text {
        padding: 40px 10px 20px 10px;
        align-items: center;
    }

    .feedback-text h1 {
        padding-left: 0;
        margin: 0;
    }

    .cd-header {
        height: 80px;
    }

    .header-wrapper {
        /*position: relative;
        width: calc(100% - 100px);
        margin-left: 50px;*/
        display: flex;
        flex-direction: row;
        }

    .logo-wrap {
        width: 70%;
        margin: 0;
        justify-content: space-between;
    }

    .logo-wrap h2 {
        font-size: 12px;
    }

    .logo-wrap img {
        height: 80%;
        width: auto;
        transition-duration: 0.7s;
    }

    .logo-wrap {
        width: 80%;
        margin: 0 6px 0 0;
        justify-content: start;
        box-sizing: border-box;
    }

    .logo-wrap div:nth-child(3) {
        margin-left: 0;
    }

    .nav-but-wrap {
        position: relative;
        display: inline-block;
        float: left;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 40px;
        transition: all 0.3s ease-out;
    }

    .nav-but-wrap {
        position: relative;
        display: inline-block;
        float: left;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 10px;
        transition: all 0.3s ease-out;
    }

    .menu-icon {
        height: 30px;
        width: 30px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: block;
        top: 4px;
        left: -16px;
    }

    article p {
        text-align: justify;
    }

    .ourUpdates h1 {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        text-align: center;
        line-height: 40px;
    }

    .ourUpdates p {
        line-height: 30px;
    }

    .ourUpdates form#subscribeForm {
        width: 90%;
    }

    .ourUpdates input {
        width: 90%;
    }

    #slider #active {
        margin: 5% 0 0;
    }
}



