/*///////////////////////ANIMATIONS///////////////////////////////// */

.fadeIn {
    visibility: visible !important;
    -webkit-animation: fade-in-top 1s cubic-bezier(.68, -.55, .265, 1.55) both;
    animation: fade-in-top 1s cubic-bezier(.68, -.55, .265, 1.55) both
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
}



/*///////////////////////////////LOADER//////////////////////////////*/


#loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    height: 100vh;
    /*   difsplay: none; */
}


.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* display: none; */
}

.load img {
    position: relative;
    left: 18%;
}

.load h2 {
    padding-top: 30px;
    color: white;
    width: 100%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
}

.load img {
    display: block;
    text-align: center;
    animation: spin 2s linear infinite;
}


@keyframes spin {
    0% {
        transform: scale(.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(.75);
    }

    100% {
        transform: scale(.75);
    }

}


.container {
    margin: 0 auto;
    width: 100%;
}



/*////////////////////////////////HEADER//////////////////////////////*/





.header {

    height: 100%;
}

.header::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/background.jpg);
    filter: brightness(0.9);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
}


.menu {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px 0 150px;
    width: 100%;
    z-index: 900;
    overflow: hidden;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0.4);

}

.scrolledMenu {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 5px -5px rgba(2, 2, 2, 0.15);
    transition: 0.3s ease;
}


.menu .icon {
    display: none;
}

.logo {
    cursor: pointer;
    transform: scale(0.5);
}


ul {
    display: flex;
}

.activeMenu {
    color: red;
}

li {
    list-style: none;
}


li a {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 50px;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

li a:hover {
    position: relative;
    top: 1px;
    transition: 0.3s ease;
}

.darkMenu {
    color: #0f3021 !important;
}

.darkMenu:hover {
    position: relative;
    top: 1px;
}


.darkMenu li a {
    color: red;
}


/*////////////////////////////////////HERO////////////////////////////*/


.hero {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    bottom: -75%;
}

.hero h1 {
    width: 100%;
    text-align: center;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2.2rem;
    padding-bottom: 1%;
}

.hero h2 {
    color: white;
    width: 100%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    padding-bottom: 1.3%;
}

.hero button {
    justify-content: center;
    color: white;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    border: 2px solid white;
    padding: 5px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0);
}

.hero button:hover {
    background-color: white;
    color: #323232;
    transition: 0.3s ease;
}

.hero span {
    font-family: 'Arial';
    font-weight: 700;
    font-size: 2rem;
}

.hero a {
    text-decoration: none;
}


/*///////////////////////////////ABOUT////////////////////////////////*/


.about h1 {
    display: flex;
    visibility: hidden;
    justify-content: center;
    padding: 120px 0 0px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 50px;
    /*    color: #323232;*/
    color: #0F3021;
    text-transform: uppercase;
}

.titleLine {
    display: flex;
    margin: 5px auto;
    background-color: #0f3021;
    width: 80px;
    height: 1px;
}


.about h2 {
    display: flex;
    justify-content: space-between;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 17px;
    /*    color: #878787;*/
    color: #0F3021;
}


.about_wrapper {
    margin: 0 auto;
    width: 80%;
    display: flex;
    /*    flex-wrap: wrap;*/
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about_wrapper img {
    margin-right: 100px;
}

.about_wrapper h2 {
    display: block;
    width: 300px;
    margin-bottom: 50px;
    margin-top: 50px;
}



/*//////////////////////////COUTNER BOX///////////////////////////////*/


.counterSectionBackground {
    background-image: url(images/counterbg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 200px;
}


.counterSection {
    width: 100%;
    display: flex;
    flex-grow: 0;
    justify-content: space-around;
    align-items: center;
    background-color: #0f3021;
    padding: 0 200px;

}

.counter {
    font-size: 2.2rem;
    color: white;
}

.counterbox i {
    font-size: 2.2em;
    color: white;
    overflow: hidden;
}

.counterbox {
    width: 200px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-family: 'Open Sans', sans-serif;
    padding: 50px 0;
}



/*///////////////////////////////PORTFOLIO////////////////////////////*/


.portfolio h1 {
    visibility: hidden;
    display: flex;
    justify-content: center;
    padding: 120px 0 0px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 50px;
    /*    color: #323232;*/
    color: #0F3021;
    text-transform: uppercase;

}


.portfolioContent {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow-x: hidden;
    padding-top: 30px;
    padding-bottom: 30px;

    /*    margin: 10px 70px 50px 70px;*/
    -webkit-backface-visibility: hidden;
}

.photoWrapper {
    width: 33.33333%;
    padding: 10px 10px;
    position: relative;
    height: auto;
    overflow: hidden;
    cursor: pointer;

}

.photoWrapper#description img {
    max-width: 100%;
    max-height: 100%;
    transition: 0.5s ease;
}

.photoWrapper#description .text {
    position: absolute;
    bottom: -20%;
    left: 0;
    z-index: 10;
    opacity: 0;
    width: 100%;
    height: 40px;
    transition: 0.3s ease;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    transition: 0.5s ease;

}

@media only screen and (min-width: 1000px) and (max-width: 3000px) {
    .photoWrapper#description:hover .text {
        transition: 0.5s ease;
        left: 0;
        bottom: 10px;
        opacity: 1;
        -webkit-backface-visibility: hidden;
    }

    .photoWrapper#description:hover img {
        -webkit-filter: brightness(0.5);
        transition: 0.5s ease;
        transform: scale(1.018);
    }

}

.photoWrapper#description a {
    padding: 0;
    margin: 0;
}

.photoWrapper#description a img {
    border: 0;
}



.text {
    text-transform: uppercase;
}


.button {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.portfolio button {
    justify-content: center;
    color: #0F3021;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    border: 2px solid #0F3021;
    padding: 5px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    background-color: white;
}

.portfolio button:hover {
    background-color: #0F3021;
    color: white;
    border: 2px solid #0F3021;
    transition: 0.3s ease;
}


.portfolioButton i {
    padding-left: 10px;
}


/*///////////////////////////////SERVICES/////////////////////////////*/


.services {
    background-color: white;
}

#services h1 {
    visibility: hidden;
    display: flex;
    justify-content: center;
    padding: 120px 0 0px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 50px;
    /*    color: #323232;*/
    color: #0F3021;
    text-transform: uppercase;
}

#services h2 {
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
    /*    color: #878787;*/
    color: #0F3021;

    text-transform: uppercase;
    padding: 0 0 30px 0;
}

.services_wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 150px 0 150px;
    max-width: 1500px;
}

.services_element {
    width: 300px;
    text-align: center;
    padding: 0px 0 0 0;
    height: 300px;
}


.services_element p {
    color: #252525;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding-bottom: 20px;
}

.services_element i {
    padding-bottom: 20px;
    color: #0f3021;
    font-size: 60px;
}

.services_element span {
    color: #878787;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 15px;
    text-align: center;
    color: #0F3021;
}


/*////////////////////////////CONTACT/////////////////////////////////*/


.contactme {
    background-color: red;
}

#contactme h1 {
    visibility: hidden;
    display: flex;
    justify-content: center;
    padding: 120px 0 0px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 50px;
    /*    color: #323232;*/
    color: #0F3021;
    text-transform: uppercase;
}

#contact h2 {
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
    /*    color: #878787;*/
    color: #0F3021;

    text-transform: uppercase;
    padding: 0 0 30px 0;
}

.contact {
    background-color: #efefef;
}

.contact_wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 150px 0 150px;
    max-width: 1500px;
}

.contact_element {
    width: 300px;
    text-align: center;
    padding-bottom: 50px;
}


.contact_element p {
    color: #252525;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding-bottom: 20px;
}

.contact_element i {
    padding-bottom: 20px;
    color: #0f3021;
    font-size: 60px;
}

.contact_element span {
    color: #878787;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 15px;
    text-align: center;
    color: #0F3021;
}

/*////////////////////////////////FOOTER//////////////////////////////*/


.footer {
    padding-top: 20px;
    padding-bottom: 10px;
    width: 100%;
    background-color: #fff;
}



.footerlogo {
    display: block;
    text-align: center;

}

.footerContainer p {
    color: 878787;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    text-align: center;
}



.footerSocial {
    display: flex;
}

.footerSocial i {
    color: white;
    margin-right: 15px;
    cursor: pointer;
}

.footerSocial i:hover {
    position: relative;
    top: 1px;
}

.footerContainer img {
    position: relative;
    margin-top: 20px;
    right: 12px;
    top: 0px;
    cursor: pointer;
    /* transform: scale(0.6); */
}


/*//////////////////////////MEDIA QUERIES////////////////////////*/



@media only screen and (min-width: 320px) and (max-width: 768px) {

    .about_wrapper img {
        margin: 0 auto;
    }

    .menu {
        display: inline-block;
        height: auto;
        padding: 0;
        margin: 0 auto;
        transition: 0.3s ease;
    }

    .logo {
        float: left;
    }

    .footerSocial {
        display: none;
    }

    .menu .icon {
        display: block;
        position: absolute;
        right: 25px;
        top: 10px;
        color: white;
        text-decoration: none;
        font-size: 32px;
    }

    ul {
        display: none;
        transition: 0.3s ease;
    }

    li {
        position: relative;
        display: block;
    }

    .responsive ul {
        position: relative;
        margin-top: 60px;
        width: 100%;
        display: block;
        transition: 0.3s ease;
    }

    .responsive li {
        position: relative;
        text-align: center;
        padding: 10px 0;
        margin: 0 auto;
    }

    .responsive li a {
        margin: 0;

    }

    .hero {
        top: 80%;
    }

    .hero h1 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero h2 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero span {
        font-size: 1rem;
    }


    .counterSection {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .counterbox {
        width: 60%;
    }

    .counterbox i {
        font-size: 2rem;
    }

    .counterbox p {
        font-size: 1rem;
    }

    .counter {
        font-size: 1.rem;
    }

    .services {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
    }

    /* .services_element {} */

    #services h2 {
        text-align: center;
        font-size: 14px;
    }


    .footerContainer p {
        font-size: 0.6rem;
    }


    .titleLine {
        align-items: center;
    }




    .about_wrapper {
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .about h1 {
        padding-top: 20px;
    }

    .about_wrapper h2 {
        text-align: justify;
        padding-bottom: 80px;
    }


    .portfolio h1 {
        padding: 0;
        padding-bottom: 30px;
    }

    .photowrapper {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: 90%;
        padding: 10px 0 30px 0;
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .photoWrapper#description .text {
        position: absolute;
        bottom: -6px;
        left: 0;
        z-index: 10;
        opacity: 1;
        width: 100%;
        height: 40px;
        transition: 0.3s ease;
        text-align: center;
        vertical-align: middle;
        line-height: 40px;
        color: black;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-transform: uppercase;
        -webkit-backface-visibility: hidden;
    }

    .contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
    }

    .contact_element {
        height: 150px;
    }

}

@media only screen and (min-width: 767px) and (max-width: 1100px) {

    .photoWrapper#description .text {
        font-size: 0.7rem;
    }

    .services_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .photoWrapper {
        cursor: pointer;
    }

    .about_wrapper img {
        margin: 0 auto;
    }

    .portfolioContent {
        justify-content: center;
        align-content: center;
    }

}