@font-face {
    font-family: 'Harmonia Sans Pro Cyr';
    src: url('../css/fonts/HarmoniaSansProCyr-Regular.eot');
    src: url('../css/fonts/HarmoniaSansProCyr-Regular.eot?#iefix') format('embedded-opentype'),
    url('../css/fonts/HarmoniaSansProCyr-Regular.woff2') format('woff2'),
    url('../css/fonts/HarmoniaSansProCyr-Regular.woff') format('woff'),
    url('../css/fonts/HarmoniaSansProCyr-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Harmonia Sans Pro Cyr Cond';
    src: url('../css/fonts/HarmoniaSansProCyr-Cond.eot');
    src: url('../css/fonts/HarmoniaSansProCyr-Cond.eot?#iefix') format('embedded-opentype'),
    url('../css/fonts/HarmoniaSansProCyr-Cond.woff2') format('woff2'),
    url('../css/fonts/HarmoniaSansProCyr-Cond.woff') format('woff'),
    url('../css/fonts/HarmoniaSansProCyr-Cond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Harmonia Sans Pro Cyr';
    src: url('../css/fonts/HarmoniaSansProCyr-Bold.eot');
    src: url('../css/fonts/HarmoniaSansProCyr-Bold.eot?#iefix') format('embedded-opentype'),
    url('../css/fonts/HarmoniaSansProCyr-Bold.woff2') format('woff2'),
    url('../css/fonts/HarmoniaSansProCyr-Bold.woff') format('woff'),
    url('../css/fonts/HarmoniaSansProCyr-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Harmonia Sans Pro Cyr';
    src: url('../css/fonts/HarmoniaSansProCyr-Black.eot');
    src: url('../css/fonts/HarmoniaSansProCyr-Black.eot?#iefix') format('embedded-opentype'),
    url('../css/fonts/HarmoniaSansProCyr-Black.woff2') format('woff2'),
    url('../css/fonts/HarmoniaSansProCyr-Black.woff') format('woff'),
    url('../css/fonts/HarmoniaSansProCyr-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Harmonia Sans Pro Cyr';
    src: url('../css/fonts/HarmoniaSansProCyr-Light.eot');
    src: url('../css/fonts/HarmoniaSansProCyr-Light.eot?#iefix') format('embedded-opentype'),
    url('../css/fonts/HarmoniaSansProCyr-Light.woff2') format('woff2'),
    url('../css/fonts/HarmoniaSansProCyr-Light.woff') format('woff'),
    url('../css/fonts/HarmoniaSansProCyr-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
}

body, html {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-style: normal;
    background-color: white;
    position: relative;
}

.body-overflow {
    overflow-x: hidden;
    width: 100%;
}

textarea,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
    border: none;
    border: 1px solid white;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
    outline: none;
    border: 1px solid #ececec;
}

a, a:focus  {
    text-decoration: none;
    outline: none;
}

.container {
    width: auto;
    margin-right: 10px;
    margin-left: 12px;
    box-sizing: border-box;
    margin-top: 10px;
}

header {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    z-index: 10;
}

header.fixed {
    position: fixed;
    z-index: 9999;
}

.hamb {
    margin-top: 10px;
    margin-left: 6px;
    position: relative;
    cursor: pointer;
    display: block;
    height: 24px;
    width: 40px;
}

.hamb span.one, .hamb span.two, .hamb span.three {
    transition: 200ms ease;
}

.hamb span.one.urger  {
    transform: rotate(45deg);
    transition: 200ms ease;
    position: absolute;
    top: 3px;
    left: -3px;
}

.hamb span.two.urger  {
    transition: 200ms ease;
    opacity: 0;
}

.hamb span.three.urger  {
    transform: rotate(-45deg);
    transition: 200ms ease;
    position: absolute;
    left: -3px;
    top: 3px;
}

.hamb span {
    width: 28px;
    background-color: #ffffff;
    height: 2px;
    display: block;
    margin-left: 9px;
    margin-top: 7px;
}

.menu-area {
    position: fixed;
    z-index: 50;
    visibility: hidden;
}

.menu {
    opacity: 0;
    visibility: hidden;
    padding-top: 55px;
}

.menu.menu-display {
    opacity: 0;
    visibility: visible;
    animation: menumove 500ms ease forwards;
}

@keyframes menumove {
    0% {
    opacity: 0;
    visibility: hidden;
    }

    90% {
    opacity: 0;
    visibility: hidden;
    }

    100% {
    opacity: 1;
    visibility: visible;
    }
}

.menu-area.expand {
    transition: 600ms ease;
    height: 100vh;
    background-color: white;
    width: 60px;
    top: 0;
    right: 0;
    width: 100%;
    visibility: visible;
    background-image: url(../img/menu-bg.jpg);
    background-repeat: no-repeat;
    background-size: auto;
}

.menu-item {
    text-align: center;
    color: #2b5b90;
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.menu-item.menu-move:nth-child(1) {
    animation: menuload 1500ms 500ms ease forwards;
}

.menu-item.menu-move:nth-child(2) {
    animation: menuload 1500ms 800ms ease forwards;
}

.menu-item.menu-move:nth-child(3) {
    animation: menuload 1500ms 1100ms ease forwards;
}


.developments-menu-list {
    display: none;
}

.developments-menu-list p a {
    color: #9c7108;
    text-align: center;
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 26px;
    display: block;
}

.menu-item.developments.menu-move {
    cursor: pointer;
}

.menu-item a {
    text-align: center;
    color: #2b5b90;
    font-size: 46px;
    font-weight: 300;
}

@keyframes slideover {
    0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    }

    100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    }
}

@keyframes menuload {
    0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    }

    100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    }
}

.flex {
    display: flex;
}

footer {
    text-align: center;
}

.contact-details p {
    font-size: 50px;
    background-color: #bacde3;
    color: #2d5a90;
    font-weight: 300;
    padding: 42px 0px 41px 0px;
}

p.copyright {
    background-color: #99c2f1;
    color: white;
    padding: 18px 0px 18px 0px;
    margin-bottom: 10px;
    font-size: 13px;
}


.darkblue {
    background-color: #2c5b91;
}

.home-sidebar {
    width: 335px;
    display: inline-block;
    height: calc(100vh - 10px);
    text-align: center;
    margin-right: 10px;
    position: relative;
}

.home-slider {
    height: 100vh;
}

.sliderBorder {
    position: relative;
    overflow: hidden;
    width: 100%;
    animation: devSlide 1800ms 300ms ease forwards;
    opacity: 0;
}

@keyframes devSlide {
    0% { opacity: 0; }
    10% { opacity: 0; }
    100% { opacity: 1; }
}

.homeSlider {
    position: relative;
}

.homeSlider img {
    width: 100%;
}

.logo {
    width: 93px;
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 13;
}

.logo img {
    width: 100%;
}

.flexslider {
    border: 0px solid #fff;
}

.flex-control-nav {
    display: none;
}

.flex-direction-nav a:before, .flex-direction-nav a {
    color: white;
}

.sliderTitle {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    z-index: 20;
    animation: devSlideTxt 1800ms 300ms ease forwards;
    opacity: 0;
    transform: translateY(-32px);
}

@keyframes devSlideTxt {
    0% { transform: translateY(100px); opacity: 0; }
    10% { opacity: 0; }
    100% { transform: translateY(0px); opacity: 1; }
}

.innerTitle {
    display: block;
    width: 100%;
}

a.fancybtn {
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-size: 13px;
    width: 200px;
    margin: auto;
    display: block;
    text-align: center;
    padding: 22px 0px 19px 0px;
    margin-top: 22px;
    position: relative;
    transition: 150ms ease;
}

.p-info-box a.fancybtn {
    background-color: #2c5b91;
    color: white;
}

a.fancybtn:hover {
    background-color: #e3f0ff;
}

span.fancybtn {
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-size: 13px;
    width: 200px;
    margin: auto;
    display: block;
    text-align: center;
    padding: 22px 0px 19px 0px;
    margin-top: 22px;
    position: relative;
    transition: 150ms ease;
    cursor: pointer;
}

.p-info-box span.fancybtn {
    background-color: #2c5b91;
    color: white;
}

span.fancybtn:hover {
    background-color: #e3f0ff;
}

.stroke {
    width: 208px;
    height: 65px;
    border: 2px solid white;
    position: absolute;
    top: -6px;
    left: -6px;
    transition: 150ms ease;
}

.p-info-box .stroke {
    border: 2px solid #2c5b91;
}

a.fancybtn:hover .stroke {
    width: 197px;
    height: 55px;
    top: 0px;
    left: 0px;
    cursor: pointer;
}

span.fancybtn:hover .stroke {
    width: 197px;
    height: 55px;
    top: 0px;
    left: 0px;
}

.propertyShow {
    position: relative;
    display: flex;
    width: 1330px;
    margin: auto;
    z-index: 10;
    margin-top: -29px;
    background-color: white;
    -webkit-box-shadow: 0px 17px 52px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 17px 52px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 17px 52px 0px rgba(0,0,0,0.75);
    animation: devBox 800ms 1000ms ease forwards;
    opacity: 0;
    transform: translateY(100px);
}

@keyframes devBox {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0px); opacity: 1; }
}

.half {
    position: relative;
    width: 665px;
    display: inline-block;
    height: 526px;
    overflow: hidden;
}

.p-info-box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.halfSlide img {
    width: 100%;
}

p.d-title {
    font-family: 'Lora', serif;
    color: #2c5b91;
    font-size: 43px;
}

p.s-title {
    font-size: 13px;
    color: #6d6d6d;
    margin-top: 13px;
    margin-bottom: 26px;
}

p.appr {
    font-family: 'Lora', serif;
    margin-bottom: 23px;
}

.slide.slide1 {
    z-index: 10;
} 

.slider-holder2 {
    height: 100%;
}

#slider2 {
    position: relative;
    height: 100%;
}

.slide-holder2 img {
    width: 100%;
} 

.slide2 {
    transition: 1000ms ease;
    position: absolute;
}

.slide2 img {
    width: 100%;
}

.arrows img {
    width: 22px;
}

.right-arrow {
    position: absolute;
    z-index: 30;
    width: 50px;
    height: 50px;
    background-color: #2c5b91;
    top: 50%;
    right: 0;
    margin-top: -25px;
    cursor: pointer;
}

#slider2 .right-arrow img {
    width: 30px;
    margin-top: 9px;
    margin-left: 9px;
}

.left-arrow {
    position: absolute;
    z-index: 30;
    width: 50px;
    height: 50px;
    background-color: #2c5b91;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
}

#slider2 .left-arrow img {
    width: 30px;
    margin-top: 9px;
    margin-left: 7px;
}

.left-arrow:hover {
    background-color: #0a0a0a;
}

.right-arrow:hover {
    background-color: #0a0a0a;
}

.titlearea {
    width: 975px;
    margin: auto;
    text-align: center;
    margin-top: 187px;
    margin-bottom: 171px;
}

.titlearea h3 {
    font-family: 'Lora', serif;
    color: #2c5b91;
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: normal;
}

.titlearea p {
    margin-bottom: 16px;
    font-size: 19px;
    color: #585858;
    line-height: 26px;
}

.items-area {
    width: 1200px;
    margin: auto;
    overflow: hidden;
}

.thirds {
    width: 384px;
    display: inline-block;
    position: relative;
}

.two-thirds {
    width: 780px;
    display: inline-block;
    position: relative;
}

.item-area img {
    width: 100%;
}

.infoarea {
    height: 178px;
    position: absolute;
    top: 50%; 
    margin-top: -356px;
    padding-right: 28px;
    padding-left: 0px;
}

p.item-title {
    font-family: 'Lora', serif;
    color: #2c5b91;
    font-size: 38px;
}

p.item-p {
    margin-bottom: 16px;
    font-size: 19px;
    color: #585858;
    line-height: 26px;
}

.rsep {
    height: 100px;
    display: block;
    width: 100%;
}

.infoarea.r {
    padding-left: 28px;
    padding-right: 0px;
}

.bluebtn {
    margin-top: 93px;
}

.bluebtn a.fancybtn {
    background-color: #2c5b91;
    color: white;
}

.bluebtn .stroke {
    border: 2px solid #2c5b91;
}


.sidebar-logo {
    width: 190px;
    margin: auto;
    margin-top:200px;
    margin-bottom: 167px;
}

.sidebar-logo img {
    width: 100%;
}

.title-sep {

}

h1.devT {
    font-size: 56px;
}

.innerTitle p.tt {
    width: 800px;
    margin: auto;
    color: white;
    text-align: center;
    font-size: 19px;
    margin-top: 16px;
    margin-bottom: 43px;
}

ul.dev-menu {
    text-align: center;
    list-style-type: none;
    background-color: #2c5b91;
    margin-top: -3px;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    animation: devSlideTxt 1800ms 300ms ease forwards;
    opacity: 0;
}

@keyframes devSlideTxt {
    0% { opacity: 0; }
    10% { opacity: 0; }
    100% { opacity: 1; }
}

ul.dev-menu li {
    display: inline-block;
}

ul.dev-menu li a {
    padding: 15px 0px 15px 0px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: 300ms ease;
    width: 103px;
    color: white;
}

ul.dev-menu li a:hover {
    background-color: #1b416d;
}

p.deats {
    font-size: 16px;
    color: #757575;
    margin-top: -28px;
    margin-bottom: 60px;
}

.titlearea h3.d {
    font-size: 58px;
}

.titlearea.devA {
    margin-top: 99px;
    margin-bottom: 43px;
}

.items-area.develop {
    margin-top: 105px;
}

.titlearea.devA.bsep {
    margin-top: 78px;
    padding-top:58px;
    margin-bottom: 0px;
    padding-bottom: 99px;
}

.locBG {
    background-color: #f2f8ff;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #233b6e;
}

.title-sep {
    width: 331px;
    margin: auto;
    height: 1px;
    background-color: #919db7;
    margin-top: 12px;
    margin-bottom: 10px;

}

.dev-title p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #233b6e;
    line-height: 19px;
    padding: 0px 70px;
}

.slider-image {
    display: inline-block;
    height: calc(100vh - 10px);
    overflow: hidden;
    position: relative;
    width:100%;
}

.slider-image img {
    width: 100%;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    z-index: 30;
}

.slider-controls img {
    width: inherit;
}

.right {
    height: 20px;
    width: 20px;
    background-color: #2b5b90;
    cursor: pointer;
    display: inline-block;
    padding: 13px 14px 12px 12px;
    transition: 500ms ease;
}

.left {
    height: 20px;
    width: 20px;
    background-color: #2b5b90;
    cursor: pointer;
    display: inline-block;
    padding: 13px 14px 12px 12px;
    transition: 500ms ease;
}

.right:hover, .left:hover {
    background-color: #113c6b;
}

.view-slider {
    border: 1px solid #2b5b90;
    width: 98%;
    position: absolute;
    bottom: 64px;
}

.view-slider a {
    padding: 14px;
    box-sizing: border-box;
    display: block;
    color: #2b5b90;
    transition: 500ms ease;
}

.view-slider a:hover {
    color: white;
    background-color: #2b5b90;
}

.about-bg {
    background-image: url(../img/about-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-title {
    text-align: center;
    padding-top: 75px;
    padding-bottom: 0px;
}

h1 {
    color: #2b5a8f;
    font-weight: 300;
    font-size: 48px;
    width: 1200px;
    margin: auto;
}

p.sub-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    color: #2b5a8f;
}

.home-about {
    text-align: center;
    padding-top: 137px;
    padding-bottom: 140px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2b5a8f;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 16px;
}

.home-about p {
    width: 1000px;
    margin: auto;
    color: #273d56;
    font-size: 22px;
    font-weight: lighter;
    margin-bottom: 18px;
    line-height: 29px;
}

.container.darkblue h1 {
    color: #eff7ff;
    margin-bottom: 28px;
}

.container.darkblue p.sub-title {
    color: #eff7ff;
    font-size: 14px;
}

.small-container {
    width: 1400px;
    margin: auto;
}

.third {
    width: 30.5%;
    display: inline-block;
    margin-right: 56px;
}

.third:nth-child(3n) {
    margin-right: 0px;
}

.third img {
    width: 100%;
}

.current-dev-thumb img {
    width: 100%;
}

.current-devs {
    padding-top: 97px;
    padding-bottom: 151px;
}

.current-devs h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #eff7ff;
    margin-bottom: 3px;
    font-size: 20px;
}

.current-devs p {
    text-align: center;
    color: #eff7ff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.current-dev-title {
    padding-top: 23px;
    padding-bottom: 23px;
}

.current-dev-thumb {
    padding: 10px 10px 10px 10px;
    transition: 500ms ease;
}

.current-dev-thumb:hover {
    background-color: #47709c;
}

.devs-rel {
    position: relative;
}

.devs-rel .right {
    position: absolute;
    top: 31%;
    right: -60px;
    height: 20px;
    width: 20px;
    background-color: #f2ebe1;
    cursor: pointer;
    display: inline-block;
    padding: 13px 14px 12px 12px;
}

.devs-rel .left {
    position: absolute;
    top: 31%;
    left: -60px;
    height: 20px;
    width: 20px;
    background-color: #f2ebe1;
    cursor: pointer;
    display: inline-block;
    padding: 13px 14px 12px 12px;
}

.devs-rel .right img, .devs-rel .left img  {
    width: 100%;
}

.slick-arrow {
    width: 44px;
    height: 44px;
    top: 40%;
    background-color: #f2ebe1;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-arrow.left-arrow {
    left: 0;
    margin-left: -10px;
}

.slick-arrow.right-arrow {
    right: 0;
    margin-right: -10px;
}

.slick-dotted.slick-slider {
    padding: 0px 44px;
}


.fade-enter {
    opacity: 0;
    height: 0;
    max-height: 0px;
}

.fade-enter.fade-enter-active {
    opacity: 1;
    height: auto;
    max-height: 2500px;
    transition: opacity 300ms ease-in 500ms, max-height 1ms ease-in 500ms;
}

.dev-load {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    background-image: url(../img/dev-loader-bg.png);
    z-index: 15;
    animation: loader-slide 1100ms 900ms forwards;
    transition-timing-function: cubic-bezier(.56,.98,.69,.97);
}

@keyframes loader-slide {
    0%{transform: translateY(0vh);}
    100%{transform: translateY(-100vh);}
}


.dev-load-holder {
    width: 190px;
    margin: auto;
    position: fixed;
    top: 44%;
    text-align: center;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    height: 190px;
    background-color: rgba(34, 59, 111, 0.85);
    border-radius: 50%;
    box-shadow: 0px 0px 19px 3px #656565;
    -webkit-box-shadow: 0px 0px 19px 3px #656565;
    animation: loader 1500ms ease 700ms infinite;
}

.dev-load-holder img {
    width: 114px;
    padding-top: 74px;
    padding-left: 6px;
}


@keyframes loader {
    0%{-webkit-box-shadow: 0px 0px 17px 4px #656565; box-shadow: 0px 0px 17px 4px #656565;}
    50%{-webkit-box-shadow: 0px 0px 17px 9px #656565; box-shadow: 0px 0px 17px 9px #656565;}
    100%{-webkit-box-shadow: 0px 0px 17px 4px #656565; box-shadow: 0px 0px 17px 4px #656565;}
}

#slider {
    position: relative;
    width: 100%;
}

#slider img {
    width: 100%;
    overflow: hidden;
}

#slider .slider-controls img {
    margin-top: 0px;
    width: 20px;
}

.slider-buttons {
    position: absolute;
    bottom: 5px;
    right: 7px;
    display: block;
    z-index: 30;
}

.slider-buttons.mobile {
    display: none;
}

.thebtn {
    color: #262e41;
    background-color: white;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 41px;
    margin-left: 4px;
    cursor: pointer;
    transition: 300ms ease;
    box-sizing: border-box;
}

.thebtn:hover {
    background-color: #31588e;
    color: white;
}

.thebtn.vid {
    background-color: #31588e;
    color: white;
    border: 2px solid white;
    
}

.thebtn.vid:hover  {
    border: 2px solid #31588e;
}

.dev-name-banner {
    position: absolute;
    background-color: white;
    text-align: center;
    width: 406px;
    padding-top: 68px;
    top: 0;
    left: 0;
    z-index: 30;
}

.dev-name-banner img {
    width: 177px;
    margin: auto;
}

.dev-name-banner p {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #233b6e;
    padding-top: 43px;
    padding-bottom: 52px;
    font-size: 20px;
}

.dev-summary {
    position: absolute;
}

.dev-summary {
    text-align: left;
    background-color: white;
    margin-top: 10px;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-200px);
    transition: 500ms ease;
}

.dev-box {
    width: 610px;
    padding: 56px 21px 70px 72px;
    box-sizing: border-box;
}

.dev-summary.active-box {
    opacity: 1;
    transform: translateX(0);
}

.dev-box h2 {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 56px;
    color: #2b5b90;
}

p.address-name {
    padding-bottom: 13px;
    margin-top: -6px;
    margin-left: 3px;
}

.dev-box p {
    margin-bottom: 20px;
    width: 380px;
    line-height: 23px;
    color: #557eab;
}

h2.contact-title {
    font-weight: 300;
    font-size: 65px;
    text-align: center;
    display: block;
    color: #eef6ff;
    font-family: 'lato';
    padding-top: 94px;
    padding-bottom: 61px;
}

.container.darkblue.contact-bg {
    background-image: url(../img/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 28px solid #f1f1f1;
}

.contact-details-area {
    width: 713px;
    margin: auto;
    padding-bottom: 131px;
}

.contact-half {
    display: inline-block;
    width: 347px;
    box-sizing: border-box;
}

.contact-half:first-child {
    border-right: 1px solid #8297b5;
    padding-left: 75px;
}

.contact-half:last-child {
    padding-left: 62px;
}

h4 {
    color: #eef6ff;
    font-size: 20px;
    font-weight: normal;
    padding-top: 39px;
    padding-bottom: 33px;
}

p.label {
    color: #eef6ff;
    font-size: 11px;
}

p.big {
    color: white;
    font-size: 36px;
    padding-bottom: 36px;
}

h2.send-message {
    color: #545454;
    text-align: center;
    font-size: 35px;
    font-family: 'lato';
    font-weight: 700;
    margin-top: 69px;
    margin-bottom: 20px;
}

form {
    width: 500px;
    margin: auto;
}

input {
    background-color: #fbfbfb;
    color: #5375a5;
    width: 100%;
    font-size: 19px;
    padding: 13px 10px 16px 17px;
    box-sizing: border-box;
    margin-bottom: 11px;
    font-family: 'lato';
}

textarea {
    background-color: #fbfbfb;
    width: 100%;
    font-size: 19px;
    color: #5d5d5d;
    padding: 13px 10px 16px 17px;
    box-sizing: border-box;
    margin-bottom: 11px;
    font-family: 'lato';
}

input[type="submit"] {
    background-color: #6e96c5;
    right: 0px;
    color: white;
    display: block;
    width: 164px;
    margin: auto;
    margin-bottom: 52px;
    margin-top: 7px;
    cursor: pointer;
}
.fade-enter {
    opacity: 0;
    height: 0;
    max-height: 0px;
    transition: 500ms ease;
    display: inline-block;
    vertical-align: top;
}

.fade-enter.fade-enter-active {
    opacity: 1;
    max-height: 2500px;
    transition: opacity 300ms ease-in 500ms, max-height 1ms ease-in 500ms;
    display: inline-block;
    vertical-align: top;
}

.fade-leave {
    opacity: 1;
    transition: 500ms ease;
    display: inline-block;
    vertical-align: top;
}

.fade-leave.fade-leave-active {
    opacity: 0;
    transition: opacity 500ms ease-in;
    display: inline-block;
    vertical-align: top;
}

.slider-image span {
    height: 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.dev-load {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    background-image: url(../img/dev-loader-bg.png);
    z-index: 15;
    animation: loader-slide 700ms ease 900ms forwards;
}

@keyframes loader-slide {
    0% { transform: translateY(0vh); }
    99.9999% { transform: translateY(-100vh); opacity: 1; visibility: visible;  }
    100% { transform: translateY(-100vh); opacity: 0; visibility: hidden; }
}

.dev-load-holder {
    width: 190px;
    margin: auto;
    position: fixed;
    top: 44%;
    text-align: center;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    height: 190px;
    background-color: rgba(34, 59, 111, 0.85);
    border-radius: 50%;
    box-shadow: 0px 0px 19px 3px #656565;
    -webkit-box-shadow: 0px 0px 19px 3px #656565;
    animation: loader 1500ms ease 700ms infinite;
}

.dev-load-holder img {
    width: 114px;
    padding-top: 74px;
    padding-left: 6px;
}

@keyframes loader {
    0%{-webkit-box-shadow: 0px 0px 17px 4px #656565; box-shadow: 0px 0px 17px 4px #656565;}
    50%{-webkit-box-shadow: 0px 0px 17px 9px #656565; box-shadow: 0px 0px 17px 9px #656565;}
    100%{-webkit-box-shadow: 0px 0px 17px 4px #656565; box-shadow: 0px 0px 17px 4px #656565;}
}

.dev-slider {
    overflow: hidden;
    position: relative;
    height: calc(100vh - 10px);
}

.dev-slider img.slider {
    width: 100%;
    height: calc(100vh - 10px);
    overflow: hidden;
}

.dev-summary {
    position: absolute;
}

.popup__overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 115, 136, 0.95);
    text-align: center;
    z-index: 100;
}

.popup__overlay:after {
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle;
    content: "";
}

.popup {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 95%;
    max-height: 93%;
    padding: 20px;
    border: 1px solid black;
    background: black;
    color: white;
    vertical-align: middle;
}

.popup-form__row {
  margin: 1em 0;
}

.popup__close {
    display: block;
    position: absolute;
    top: 8px;
    right: 13px;
    width: 12px;
    height: 12px;
    padding: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 37px;
    line-height: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: bold;
}

.popup__close:hover {
  color: #31588e;
}

iframe {
  width: 100%;
  height: 100%;
}

.header-banner {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.46);
    height: 61px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    animation: logoFade 1000ms 1400ms ease forwards;
}

.scroll-down-holder {
    width: 100%;
    position: absolute;
    bottom: 5px;
    z-index: 10;
}

.scroll-down {
    width: 60px;
    text-align: center;
    margin: auto;
    cursor: pointer;
}

.scroll-down p {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

.scroll-down img {
    width: 30px;
}

@keyframes logoFade {
    0% { opacity: 0; }
    100% { opacity: 1 }
}

.header-banner img {
    width: 169px;
    margin: auto;
    display: block;
    margin-top: 5px;
}
