/*styles*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #82828a;
}

body.active {
    overflow-y: hidden;
}

.container {
    max-width: 1200px;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1000px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}
.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
}

/*Blog*/


.block.image {
    background-attachment: fixed;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 80px;
}

.block.image .heading {
    color: white;
}

.block.image .small-heading {
    color: white;
}

.block.image p {
    font-size: 19px;
    color: white;
}

.block.image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.2);*/
    background: #07253f;
    opacity: .75;
}

.small-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.small-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.wide-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.large-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.small-block.white {
    background: white;
}

.small-block.blue {
    background: #07253f;
}

.small-block.light-blue {
    background: #4b769b;
}

.wide-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.large-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.post-hold {
    padding: 40px 0;
    border-bottom: 1px solid #07253f;
}

.small-block.post {
    min-height: unset;
    display: block;
    height: unset;
}

.blog-post-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-inner {
    position: relative;
    padding: 65px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.block-inner.post {
    padding: 40px;
}

/* Header */

.header {
	position: relative;
    z-index: 999;
}

.header .top-header {
	position: relative;
	background: #32343b;
	color: white;
    font-size: 14px;
}

.header .top-header ul {
	display: flex;
	justify-content: left;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
    height: 100%;
    align-items: center;
}

.header .top-header ul li {
    margin-right: 20px;
    padding: 10px 0;
}

.header .top-header ul.right {
	justify-content: right;
	display: inline-flex;
}

.header .top-header ul.social {
	justify-content: right;
	background: #00000036;
	display: inline-flex;
    padding: 0 20px;
}

.header .top-header ul.social li {
    padding: 5px;
    margin: 0;
}

.header .top-header ul.social li a {
    padding: 5px;
    font-size: 12px;
}

.header.stuck .bottom-header {
    position: fixed;
    top: 0;
    background: #32343b;
    padding: 10px;
}

.header .bottom-header {
	position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    color: white;
    transition: all .5s ease;
}

.header.stuck .bottom-header .logo img {
    max-height: 80px;
}

.header .bottom-header .logo img {
	max-height: 120px;
	transition: all .5s ease;
}

.header .bottom-header .menu-hold {
	position: relative;
	height: 100%;
}

.header .bottom-header .menu-hold ul.menu {
	display: flex;
	padding-left: 0;
	margin-bottom: 0;
	justify-content: center;
	list-style: none;
    height: 100%;
    align-items: center;
}

.header .bottom-header .menu-hold ul.menu li {
    position: relative;
    margin: 0 5px;
}


.header .bottom-header .menu-hold ul.menu li a {
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.header .bottom-header .call-block {
    position: relative;
    float: right;
    top: 50%;
    transform: translateY(-50%);
}

/*Home*/

.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    min-height: 700px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #27292f;
    opacity: 0.7;
}

.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.hero .overlay .tag {
    text-transform: uppercase;
    border-bottom: 1px solid white;
    font-size: 24px;
    display: inline-block;
    color: white;
    margin-bottom: 20px;
}

.hero .overlay .main {
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner {
    position: relative;
    padding: 40px 0;
    background: #1d69a0;
    color: white;
}

.banner i {
    display: inline-block;
    margin-right: 40px;
    font-size: 65px;
    float: left;
}

.banner .tag {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner .mtext {
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
}

.about {
    position: relative;
}

.about .image-holder {
    position: relative;
    height: 100%;
}

.about .image-holder .image-1 {
    position: absolute;
    height: 50%;
    width: 40%;
    left: 0;
    top: 10%;
    background-position: center;
    background-size: cover;
    z-index: 9;
}

.about .image-holder .image-2 {
    position: relative;
    height: 100%;
    width: 75%;
    left: 20%;
    min-height: 500px;
    background-position: center;
    background-size: cover;
    box-shadow: 15px 30px 86px 0px rgba(0, 0, 0, 0.1);
}


.about .image-holder .xp-block {
    position: absolute;
    top: 60%;
    left: 0;
    padding: 10px;
    background: white;
    z-index: 99;
    box-shadow: 15px 30px 86px 0px rgba(0, 0, 0, 0.1);
}

.about .image-holder .xp-block .hold {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
}

.about .image-holder .xp-block .big {
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    margin-right: 20px;
}


.about .image-holder .i-hold {
    position: absolute;
    top: -30px;
    right: 10px;
    padding: 10px 20px;
    background: #1d69a0;
    color: white;
    font-size: 45px;
    z-index: 9;
}

.about {
    position: relative;
    padding: 120px 0;
}

.about ul {
    padding-left: 0;
    list-style: none;
}

.about ul li {
    margin: 10px 0;
}

.about ul li i {
    color: #1d69a0;
    margin-right: 10px;
}

.features {
    position: relative;
    padding: 120px 0;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 9;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f6f8;
    opacity: 0.97;
}

.features .feature-block {
    position: relative;
    padding: 40px;
    background: white;
    display: block;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin: 15px;
    overflow: hidden;
    z-index: 9;
    transition: all .5s ease;
}

.features .feature-block::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #32343b;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.features .feature-block:hover::before {
    top: 0;
    opacity: 0.9;
    visibility: visible;
}

.features .feature-block.dark::before {
    top: 0;
    opacity: 0.9;
    visibility: visible;
}

.features .feature-block:hover,
.features .feature-block.dark {
    color: white;
    text-decoration: none;
}

.features .feature-block:hover .title,
.features .feature-block.dark .title {
    color: white;
}

.features .feature-block i {
    font-size: 45px;
    color: #1d69a0;
}

.features .feature-block span {
    font-size: 12px;
}

.features .feature-block span i {
    font-size: 12px;
}

.features .feature-block .title {
    font-weight: 600;
    font-size: 22px;
    margin: 10px 0;
    color: black;
    transition: all .5s ease;
}

.features ul {
    padding-left: 0;
    list-style: none;
}

.features ul li {
    margin: 10px 0;
}

.features ul li i {
    color: #1d69a0;
    margin-right: 10px;
}

.properties {
    position: relative;
    padding: 120px 0;
}

.properties .phold {
    margin: 0 15px;
}

.properties .phold .property-block {
    display: block;
    position: relative;
    background-position: center;
    background-size: cover;
    height: 500px;
    width: 100%;
    overflow: hidden;
    z-index: 9;
}

.properties .phold .property-block::before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #32343B 0%, rgba(27, 31, 46, 0) 100%);
    z-index: -1;
}

.properties .phold .property-block .info {
    position: absolute;
    bottom: -100px;
    left: 0;
    color: white;
    padding: 40px;
    transition: all .5s ease;
}

.properties .phold .property-block .info .tag {
    position: relative;
    padding: 10px;
    background: #1d69a0;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.properties .phold .property-block .info .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.properties .phold .property-block .info .arrow-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #1d69a0;
}

.properties .phold .property-block .info p,
.properties .phold .property-block .info .arrow-hold {
    opacity: 0;
    transition: all .5s ease;
    visibility: hidden;
}

.properties .phold .property-block:hover .info {
    bottom: 0;
}

.properties .phold .property-block:hover .info p,
.properties .phold .property-block:hover .info .arrow-hold {
    opacity: 1;
    visibility: visible;
}

.contact-block {
    position: relative;
    padding-bottom: 80px;
}

.contact-block .cimage {
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

/*Defaults*/

.call-block {
    display: inline-flex;
}

.call-block.mr {
    margin-right: 20px;
}

.call-block .i-hold {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #32343b;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 20px;
}

.call-block .small {
    text-transform: uppercase;
}

.call-block span {
    font-weight: 700;
}

.sub {
    position: relative;
    color: #1d69a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: black;
}

.btn {
    position: relative;
    padding: 15px 30px;
    border-radius: 0;
    border: 2px solid #1d69a0;
    background: #1d69a0;
    color: white;
    text-transform: uppercase;
}

.btn:hover {
    background: transparent;
    color: inherit;
}

.btn.rev {
    background: transparent;
}

.btn.rev:hover {
    background: #1d69a0;
}

.btn.white {
    background: white;
    border-color: white;
    color: #82828a;
}

textarea.form-control {
    height: 100px;
}

/*Footer*/
.footer {
    position: relative;
    background: #1f242c;
    color: white;
    padding: 80px 0;
    padding-bottom: 40px;
}

.footer .top-banner {
    position: absolute;
    top: -20%;
    padding: 40px;
    background: #32343b;
    color: white;
}

.footer .footer-heading {
    font-size: 22px;
    text-transform: uppercase;
    line-height: 22px;
    margin-bottom: 10px;
}

.footer a {
    color: #aeaeae;
    margin: 10px 0;
    display: block;
    font-size: 14px;
}

.footer p {
    color: #aeaeae;
    font-size: 14px;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer ul.social {
    display: flex;
}

.footer ul.social li {
    margin-right: 10px;
}

.footer ul.social li a {
    border-radius: 50%;
    padding: 10px 15px;
    background: #292f39;
    font-size: 24px;
}

.footer ul.bottom {
    justify-content: right;
    display: flex;
}


.footer ul.bottom li {
    margin-left: 10px;
}

.footer span {
    color: #aeaeae;
    font-size: 14px;
}

.footer .logo img {
    max-height: 140px;
}

/*Responsive*/

@media only screen and (min-width : 1200px) {
    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .top-header .logo {
      display: none;
    }

    .top-header {
        display: none;
    }

    .header .bottom-header {
        position: fixed;
        z-index: 99999;
        width: 100%;
        top: 0;
    }

    .header .logo {
        text-align: left !important;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: #1d69a0;   
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
        padding: 10px;
    }

    .header .bottom-header .menu-hold ul.menu {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: #32343b;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .bottom-header .menu-hold ul.menu li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .bottom-header .menu-hold ul.menu li a {
        padding: 22px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .bottom-header .menu-hold ul li ul.dropdown {
        position: relative !important;
        left: 50%;
        top: 0;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        opacity: 0;
/*        background: white;*/
        text-align: center;
        height: auto;
        visibility: hidden;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        transform: translate(-50%);
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
        text-align: center;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }

    body {
        text-align: center;
    }
    
}

@media (max-width: 991px) {
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 700px;
    }

    .hero .overlay {
        top: 60%;
    }

    .hero .overlay .main {
        font-size: 45px;
        line-height: 45px;
    }

    .about .image-holder .image-1 {
        width: 60%;
    }

    .btn {
        margin: 10px;
    }

    .about .image-holder {
        margin-bottom: 40px;
        height: auto;
    }

    .properties .phold .property-block {
        height: 400px;
        margin: 10px 0;
    }

    .properties .phold .property-block .info {
        bottom: 0;
    }

    .properties .phold .property-block .info p,
    .properties .phold .property-block .info .arrow-hold {
        opacity: 1;
        visibility: visible;
    }

    .properties .phold .property-block .info .arrow-hold {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .text-right,
    .text-left {
        text-align: center !important;
    }

    .footer ul.bottom {
        justify-content: center;
    }

}

@media (max-width: 576px) {

}

@media (max-width: 400px) {

}
