/*
--------------------------------------------------------

--------------------------------------------------------

TABLE OF CONTENTS:
====================

1 ) Font Import From Google Fonts

2 ) Preloader Styles

3 ) General Rulas

4 ) Homepage Styles

5 ) Close Button

6 ) General Rules for Content Pages Fixed Image

7 ) Profile Page

- ( a ) Story of Glory
- ( b ) What Can I Do
- ( c ) Some Facts

8 ) Resume Page

- ( a ) Education Section
- ( b ) Experience Section
- ( c ) Skills Section

9 ) Portfolio Page

- ( a ) Portfolio Section
- ( b )  Testimonial Section

10 ) Contact Page

- ( a )  Contact Form
- ( b )  Contact Details

11 ) Footer

12 ) Cookies 

--------------------------------------------------------
*/

/*-----------------------------------
1 ) Font Import From Google Fonts & Custom Fonts
-----------------------------------*/

@font-face {
    font-family: 'Adam';
    src: url('../fonts/ADAM2.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CocoPuff';
    src: url('../fonts/CocoPuff-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OPEN_SANS/OpenSans-Light.ttf');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OPEN_SANS/OpenSans-Semibold.ttf');
    font-weight: 600;
    font-style: normal;
}


@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OPEN_SANS/OpenSans-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Solveit';
    src: url('../fonts/Solveit4.eot') format('embedded-opentype'), url('../fonts/Solveit4.woff') format('woff'), url('../fonts/Solveit4.ttf') format('truetype'), url('../fonts/Solveit4.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*----------------------
2 ) Preloader Styles
----------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    z-index: 10000;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -webkit-animation: loader 1.2s infinite ease-in-out;
    animation: loader 1.2s infinite ease-in-out;
}

.loader span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    background-color: #4dbdc6;
    -webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
    animation: loaderBlock 1.2s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    top: 0;
    left: 0;
}

.loader span:nth-child(2) {
    top: 0;
    right: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(3) {
    bottom: 0;
    left: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(4) {
    bottom: 0;
    right: 0;
}

@-webkit-keyframes loader {
    0%,
    10%,
    100% {
        width: 40px;
        height: 40px;
    }
    65% {
        width: 80px;
        height: 80px;
    }
}

@-webkit-keyframes loaderBlock {
    0%,
    30% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes loaderBlockInverse {
    0%,
    20% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes loader {
    0%,
    10%,
    100% {
        width: 40px;
        height: 40px;
    }
    65% {
        width: 80px;
        height: 80px;
    }
}

@keyframes loaderBlock {
    0%,
    30% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loaderBlockInverse {
    0%,
    20% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

/*-------------------
3 ) General Rulas
-------------------*/

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #343333;
}

html,
body,
textarea,
button,
input {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
}

p {
    font-size: 14px;
    line-height: 1.42;
    margin: 0;
    line-height: 0.8
}

h1 {
    font-size: 3.8vh;
    font-weight: 500;
}

h2 {
    font-size: 36px;
    font-weight: 500;
}

h2.small-heading {
    padding: 60px 0 20px 0;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

h3.small-heading {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    font-family: CocoPuff;
}

.col-xs-12 .col-xs-4 p {
    text-align: center;
    color: #333;
}

sup {
    font-size: 15px;
    top: -15px;
}

body {
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
}

::-moz-selection {
    color: #fff;
    background: #4dbdc6;
}

::selection {
    color: #fff;
    background: #4dbdc6;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #4dbdc6;
    outline: 1px solid #fff;
}

/*---------------------
4 ) Homepage Styles
---------------------*/

/* ( a ) Homepage */

.home-page {
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* ( b ) Introduction Section */

.introduction {
    float: left;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.introduction img {
    position: absolute;
    top: 0;
    left: 0;
}

.mask {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    background: #1a1b23;
}

.intro-content {
    position: relative;
    z-index: 0;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.intro-content h1 {
    color: #fff;
    text-align: center;
    margin-top: 14%;
    margin-bottom: 15px;
    letter-spacing: 5px;
    font-weight: 500;
    font-family: CocoPuff
}

.intro-content h1.single_line {
    margin-top: 18%
}

.intro-content h1 span,
.main-heading h1 span {
    display: block;
    position: relative;
}

.intro-content h2 {
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 30px;
}

.social-media {
    font-size: 25px;
    text-align: center;
    margin-top: 50px;
}

.social-media a {
    color: #fff;
    text-decoration: none;
    outline: 0 none;
    padding: 0 10px;
}

.social-media a + .tooltip > .tooltip-inner {
    background-color: transparent;
    color: #00B796;
    font-size: 16px;
}

.social-media a + .tooltip > .tooltip-arrow {
    border-bottom-color: transparent;
}

.marina_logo {
    background: url(../images/logo.png);
    width: 282px;
    height: 69px;
    margin: 0 auto;
}


.pin_size {
    width: 8px;
    height: 71px;
    margin: 0 auto;
}

.pin1_main {
    background: url(../images/1.png);
}

.pin1 {
    background: url(../images/1.png);
}

.pin2 {
    background: url(../images/2.png);
}

.pin3 {
    background: url(../images/3.png);
}

.pin4 {
    background: url(../images/4.png);
}

.pin_separator {
    width: 1px;
    height: 50vh;
    background: #fff;
    margin: 0 auto;
}

.pin_separator::before {
    content: "";
    background: url(../images/2.png) no-repeat;
    position: absolute;
    height: 30px;
    width: 8px;
    left: 47%;
    top: -37px;
}

.pin_separator::after {
    content: "";
    background: url(../images/2.png) no-repeat;
    position: absolute;
    height: 30px;
    width: 8px;
    left: 47%;
    bottom: -38px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*Bootstrap tooltips Customized*/

.social-media a:hover {
    color: #00B796;
}

/* ( c ) Navigation Menu */

.menu {
    float: left;
    padding: 0;
    position: relative;
}

.menu > div {
    width: 100%;
    height: 33.3333333%;
    overflow: hidden;
    position: relative;

}

.menu > div > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 1s linear;
    transition: -webkit-transform 1s linear;
    transition: transform 1s linear;
    transition: transform 1s linear, -webkit-transform 1s linear;
}

.menu > div:hover > img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.heading {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center
}

.heading_about {
    margin-top: 13%
}

.heading_about2 {
    margin-top: 10%
}


.about_container .heading i {
    background: rgba(256, 256, 256, 0.2);
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 25px;
    height: 60px;
    line-height: 60px;
    margin: auto auto 10px;
    text-align: center;
    -webkit-box-shadow: 0 0 0 0 rgba(256, 256, 256, 0.2);
    box-shadow: 0 0 0 0 rgba(256, 256, 256, 0.2);
    width: 60px;
    -webkir-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.flex_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.about_container {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%
}

.col-right-30 {
    position: relative;
    right: 30px;
}

.menu > div:hover .heading i {
    -webkit-box-shadow: 0 0 0 50px rgba(256, 256, 256, 0);
    box-shadow: 0 0 0 50px rgba(256, 256, 256, 0);
}

.heading h2 {
    color: #fff;
    margin: 15px auto;
    font-size: 28px;
    letter-spacing: 4px;
    font-family: CocoPuff
}

.heading h2 span {
    color: #00B796;
}

.heading h3 {
    color: #fff;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.4;
        width: 80%;
    margin-left: 10%;

}

.heading .dark_heading {
    color: #333;
    margin-top: 4px
}

.heading .dark_heading span {
    display: block
}

.white_para {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.4;
}

/*------------------
5 ) Close Button
------------------*/

.close-btn {
    z-index: 1000;
    position: fixed;
    top: 30px;
    right: 40px;
    height: 44px;
    width: 44px;
}

.menu-icon {
    height: 41px;
    cursor: pointer;
    left: 50%;
    position: absolute;
    margin: -20px 0 0 -20px;
    top: 50%;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    width: 40px;
}

.menu-icon:after,
.menu-icon:before {
    background-color: #fff;
    content: "";
    height: 1px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.6, 0.36, 1);
    transition: all 400ms cubic-bezier(0.25, 0.6, 0.36, 1);
    position: absolute;
    top: 50%;
    width: 25px;
}

.menu-icon > .line {
    background: #fff;
    height: 1px;
    position: absolute;
    -webkit-transition: all 0.1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transition: all 0.1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    width: 0%;
}

.menu-icon > .line.top {
    left: 0;
    top: 0;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.menu-icon > .line.bottom {
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.menu-icon > .line.left {
    left: 0;
    top: 0;
    -webkit-transform: translate3d(0, 40px, 0) rotate(-90deg);
    transform: translate3d(0, 40px, 0) rotate(-90deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.menu-icon > .line.right {
    left: 0;
    top: 0;
    -webkit-transform: translate3d(40px, 0, 0) rotate(90deg);
    transform: translate3d(40px, 0, 0) rotate(90deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.menu-icon:before {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    -webkit-transition-delay: 65ms;
    transition-delay: 65ms;
}

.menu-icon:hover .line {
    width: 100%;
}

.menu-icon:hover .line.top {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.menu-icon:hover .line.right {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.menu-icon:hover .line.bottom {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.menu-icon:hover .line.left {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.menu-icon:hover:after {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(225deg);
    transform: translate3d(-50%, -50%, 0) rotate(225deg);
}

.menu-icon:hover:before {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(135deg);
    transform: translate3d(-50%, -50%, 0) rotate(135deg);
}

.menu-icon:active {
    opacity: 0.8;
    -webkit-transition: none;
    transition: none;
}

.grey_close_btn > .line {
    background: #c9c9c9;
}

.grey_close_btn {
    height: 41px;
    cursor: pointer;
    left: 50%;
    position: absolute;
    margin: -20px 0 0 -20px;
    top: 50%;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    width: 40px;
}

.grey_close_btn:after,
.grey_close_btn:before {
    background-color: #c9c9c9;
}

.read-more-btn {
    width: 160px;
    height: 32px;
    line-height: 32px;
    margin: 20px auto;
    border: 1px solid #fff;
    letter-spacing: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .8s;
    transition: .8s;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
}

.read-more-btn:hover {
    background: #fff;
    color: #4dbdc6;
    cursor: pointer
}

.resume-btn:hover {
    color: #000
}

.resume-btn2:hover,
.contact-btn2:hover,
.profile-btn2:hover {
    cursor: default
}

.dark_button {
    border: 1px solid #333;
}

.dark_button:hover {
    background: #333;
    color: #fff
}


.project .ovrly > .hover::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 0, 19, 0.5);
}

.project .ovrly > .hover::after {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 10px;
    background-image: url(../images/magnifier.png);
    opacity: 1;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    -o-border-image: initial;
    border-image: initial;
    background-repeat: no-repeat;
    background-position: center center;
}

/*-------------------------------------------------
6 ) General Rules for Content Pages Fixed Image
-------------------------------------------------*/

.profile-page,
.resume-page,
.portfolio-page,
.contact-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.image-container {
    height: 100vh;
    position: fixed;
    padding: 0;
    overflow: hidden;
}

.main-heading {
    position: relative;
    top: 50%;
    padding-left: 50px;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
}

.main-heading h1 {
    color: #fff;
    position: relative;
    text-align: left;
}

.main-heading h1:after {
    background-color: #00B796;
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 400px;
    height: 6px;
}

.content-container {
    left: 50%;
    position: relative;
    padding: 0;
    background: url(../images/background/contact_bg.jpg);
    min-height: 100vh;

}

/*------------------
7 ) Profile Page
------------------*/

/* ( a ) Story of Glory */

.profile-page .image-container {
    background: url(../images/marina_background_main.jpg);
    background-position: unset;
    background-size: 100% 100%;
}

.story {
    background: url(../images/background/about_bg.jpg);
    background-size: cover;
    min-height: 100vh;
}

.story-content {
    padding: 20px;
}

.story-content img {
    padding: 0;
    border: 1px solid #00B796;
}

.story-content div h3 {
    color: #00B796;
    line-height: 1;
    margin-top: 0;
}

.story-content div p {
    text-indent: 25px;
}

.story-content div a {
    border: 1px solid #00B796;
    color: #00B796;
    display: block;
    float: left;
    margin: 29px 5px;
    padding: 10px 25px;
    text-decoration: none;
    text-align: center;
    -webkir-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.story-content div a:hover {
    background: #00B796;
    color: #fff;
}

.space_to_use {
    width: 160px;
    height: 160px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto
}

.space_to_use:before,
.space_to_use:after {
    content: '';
    display: block;
    height: 35px;
    position: absolute
}

.space_to_use:after {
    right: -1px;
    bottom: -1px;
    border-right: 1px solid #fff
}

.space_to_use:before {
    right: -1px;
    top: -1px;
    border-left: 1px solid #fff
}

.space_to_use p {
    color: #fff;
    font-family: Adam;
    font-size: 30px;
    white-space: nowrap;
    position: relative;
    left: 5px
}

.space_to_use span.count {
    font-size: 30px;
    position: relative
}

.space_to_use span.square_meter {
    font-size: 30px;
    position: absolute;
    left: 60px
}

.space_to_use span.people {
    font-size: 14px;
    position: absolute;
    bottom: 0;
    right: -5px;
}

.space_to_use span {
    font-size: 14px
}

.how_many_people {
    line-height: 1.1;
    bottom: 10px
}


/*-----------------
8 ) Resume Page
-----------------*/

/* ( a ) Education Section */

.resume-page .image-container {
    background: url(../images/marina_background_main.jpg);
    background-position: unset;
    background-size: 100% 100%;
}

.item {
    position: relative;
    margin-bottom: 5px;
}

/*--------------------
9 ) Portfolio Page
--------------------*/

/* ( a ) Portfolio Section */

.portfolio-page .image-container {
    background: url(../images/background/contact_bg.jpg);
    background-size: cover;
    background-position: bottom;
}

.project-controls {
    padding: 20px 0;
    text-align: center;
}

.filter {
    background: none;
    outline: none;
    border: none;
    color: #333;
    margin: 10px 0;
    padding: 10px 25px;
    -webkir-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.filter:hover {
    background: transparent;
    color: #8ccfd0;
    outline: none;
}

.filter.active, .filter.active2  {
    color: #fff;
    background: #4dbdc6;
    outline: none;
}

#projects > .mix {
    display: none;
}

.projet-items {
    padding: 20px;
}

/*----- Hover Effect Portfolio Image --------*/

.project {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.project img {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.project .ovrly {
    /* background: rgba(77, 189, 198, 0.7);*/
    background: rgba(174, 212, 215, 0.9);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.project .buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.project .buttons a {
    -webkit-transform: scale(5);
    transform: scale(5);
    opacity: 0;
    margin: 0 2px;
    background: transparent;
    float: left;
    display: block;
    line-height: 40px;
    outline: none;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #343333;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.project .buttons .fa-search {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.project:hover .buttons a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    width: 70px;
    height: 70px;
}

.project:hover .buttons {
    border: 1px solid #fff;
    width: 92%;
    height: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project:hover .ovrly {
    opacity: 1;
}

/*----- Hover Effect Portfolio Image [ END ] --------*/

.pop-up-box {
    display: none;
}

.popup_content {
    max-width: 900px;
    border: 2px solid #4dbdc6;
    background: #fff;
}

.popup_content img {
    display: block;
    width: 100%;
    background: #fff;
    margin: 0 auto;
}

.popup_content .popup-content {
    padding: 30px;
}

.popup_content h3 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.popup_content a {
    border: 1px solid #4dbdc6;
    color: #4dbdc6;
    display: block;
    width: 150px;
    margin: 30px auto;
    padding: 10px 25px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.popup_content p {
    line-height: 1.4;
}

.popup_content a:hover {
    background: #4dbdc6;
    color: #fff;
}

/*----- Popup Sty;es [ END ] --------*/

/*-------------------
10 ) Contact Page
-------------------*/

/* ( a )  Contact Form */

.contact-page .image-container {
    background: url(../images/marina_background_main2.jpg);
    background-position: unset;
    background-size: 100% 100%;
}

.contact-form {
    float: none;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #bbb;
    border-radius: 2px;
    height: 40px;
    margin: 5px 0;
    padding: 5px 10px;
    background: transparent;
    width: 100%;
    outline: none;
    resize: none;
    font-weight: 400;
    color: #333
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: none;

}

.contact-form textarea {
    height: 100px;
}

textarea::-webkit-scrollbar {
    width: 10px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #4dbdc6;
    outline: 1px solid #fff;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    font-style: normal;
    color: #bbb
}

.contact-form input:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
    font-style: normal;
    color: #bbb
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    font-style: normal;
    color: #bbb
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    font-style: normal;
    color: #bbb
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 1px solid #4dbdc6;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-bottom: 1px solid #4dbdc6;
}

.contact-form button {
    background: none;
    color: #333;
    border: 1px solid #333;
    text-align: center;
    width: 160px;
    height: 32px;
        padding: 7px 55px;
    margin: 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .8s;
    transition: .8s;
    font-size: 11px;
    padding: 0;
    font-weight: 600;
    outline: none;
        letter-spacing: 2px;
    margin: auto;
}

.contact-form button:hover {
    background: #333;
    outline: none;
    color: #fff;
}

.btn_green {
    background: #47D38F!important;
    color: #fff!important;
    border: 1px solid #47D38F!important;
}

.btn_red {
    background: #F95D48!important;
    color: #fff!important;
    border: 1px solid #F95D48!important;
}

#contactForm {
    text-align: center
}

.error {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0;
    font-weight: 700;
    color: #F95D48;
}

.error h3,
.success h3 {
    border-radius: 2px;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.error h3 {
    color: #c9302c;
    border: 1px solid #c9302c;
}

.error h3 p {
    color: #c9302c;
    line-height: 20px;
    font-size: 18px;
    font-weight: 500;

}

.success h3 {
    color: #449d44;
    border: 1px solid #449d44;
}

#name-error,
#email-error,
#message-error {
    position: absolute;
    width: auto;
    left: 9px;
    bottom: 42px;
    background: #F95D48;
    color: #fff;
    padding: 2px 20px;
}

#name-error:before,
#email-error:before,
#message-error:before {
    background: #F95D48;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 2px;
    transform: rotate(135deg);
}


#message-error {
    bottom: 100px;
}

.controls {
    position: relative
}

.google-map {
    width: 100%;
    height: 700px;
}

/* ( b )  Contact Details */

.contact {
    padding: 20px;
    height: 155px;
}

.contact p {
    text-align: center;
}

.contact p i {
    font-size: 25px;
    margin: 20px 0;
}

.flex_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_div img {
    margin-right: 6px;
    position: relative;
    bottom: 0px;
}

.mar-btm-60 {
    margin-bottom: 60px;
}


/*-------------
11 ) Footer 
-------------*/

.footer {
    background: transparent;
    padding: 10px 20px 6px 20px;
    position: absolute;
    width: 100%;
    bottom: 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer p {
    line-height: 1;
    color: #666;
    float: right;
    margin: 0;
}

.copy_design {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 30px;
    font-weight: 600
}

.solveit_logo {
    font-family: Solveit;
    font-size: 46px;
    line-height: 12px;
    margin-left: 5px;
    top: 7px;
    position: relative;
    color: #666;
    -webkit-transition: .7s;
    transition: .7s;
    text-rendering: optimizeLegibility;

}

.solveit_logo:hover {
    color: #fff;
    text-rendering: optimizeLegibility
}

#map {
    height: 100%;
}

.map_container {
  position: fixed;
    bottom: 0;
    width: 50%;
    height: 33.33333333%;

}

/*-------------
12 ) Cookies 
-------------*/

#cookie-info {
    -webkit-transition: -webkit-transform 0.65s 0.2s;
    transition: -webkit-transform 0.65s 0.2s;
    transition: transform 0.65s 0.2s;
    transition: transform 0.65s 0.2s, -webkit-transform 0.65s 0.2s;
    opacity: 1;
    bottom: 25px;
    padding: 15px 52px 12px 20px;
    position: fixed;
    left: 25px;
    width: 340px;
    z-index: 2000;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    background: url(../images/background/about_bg.jpg)
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .6;
}

.close:hover {
    opacity: 1;
}

#cookie-info a.close {
    height: 28px;
    outline: none;
    width: 28px;
    cursor: pointer;
    background: none;
    border: 1px solid #fff;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

#cookie-info a.close span.top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff;
}

#cookie-info a.close span.bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
    top: 23px;
}

#cookie-info a.close span {
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    cursor: pointer;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

#cookie-info p {
    font-size: 12px;
    margin: 0;
    line-height: 16px;
    color: #fff;
    text-align: justify;
}

#cookie-info.remove {
    opacity: 0;
    -webkit-transform: translate(-120%, 0);
    transform: translate(-120%, 0);
    -webkit-transition: -webkit-transform 1s .2s,
    opacity 1s .2s;
    -webkit-transition: opacity 1s .2s,
    -webkit-transform 1s .2s;
    transition: opacity 1s .2s,
    -webkit-transform 1s .2s;
    transition: transform 1s .2s,
    opacity 1s .2s;
    transition: transform 1s .2s,
    opacity 1s .2s,
    -webkit-transform 1s .2s;
}
