body {
    font-family: "Poppins";
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.bg-hover-dark:hover {
    background: #000000!important;
    border-color: #000000!important;
}

.bg-hover-dark:hover a,
a.bg-hover-dark:hover {
    color: #FFFFFF!important;
}

.text-dark-hover-white {
    color: #343a40!important;
}

.text-dark-hover-white:hover {
    color: #FFF!important;
}


/* HAMBURGER ICON ANIMATION */

.icon-bar {
    width: 22px;
    height: 2px;
    background-color: #B6B6B6;
    display: block;
    transition: all 0.2s;
    margin-top: 4px
}

.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}


/* HAMBURGER ICON ANIMATION */

.ml-min-15 {
    margin-left: -15px!important;
}

.mr-min-15 {
    margin-right: -15px!important;
}

.mb-none {
    margin-bottom: 0px!important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.border-10 {
    border-width: 10px !important;
}

.border-hover-1:hover {
    border-width: 1px !important;
}

.border-hover-2:hover {
    border-width: 2px !important;
}

.border-hover-3:hover {
    border-width: 3px !important;
}

.border-hover-4:hover {
    border-width: 4px !important;
}

.border-hover-5:hover {
    border-width: 5px !important;
}

.border-hover-10:hover {
    border-width: 10px !important;
}

.border-radius-top-left-05 {
    border-top-left-radius: 0.5rem!important;
}

.border-radius-top-right-05 {
    border-top-right-radius: 0.5rem!important;
}

.border-radius-bottom-left-05 {
    border-bottom-left-radius: 0.5rem!important;
}

.border-radius-bottom-right-05 {
    border-bottom-right-radius: 0.5rem!important;
}

.fs-3 {
    font-size: 3rem!important;
}

.fs-4 {
    font-size: 4rem!important;
}

.rotate {
    transform: rotate(90deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(90deg);
    /* Firefox */
    -moz-transform: rotate(90deg);
    /* IE */
    -ms-transform: rotate(90deg);
    /* Opera */
    -o-transform: rotate(90deg);
    /* Internet Explorer */
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.bg-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}


/*.bg-shop-online {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
  transition: background 1s ease-in-out;
}
.bg-shop-online:hover {
  background: linear-gradient(rgba(25, 25, 5, 0.6), rgba(255, 255, 255, 0.9));
}*/

.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bg-zoom-hover {
    transition: transform 0.5s;
}

.bg-zoom-hover:hover {
    transform: scale(1.03);
}

.bg-shop-online {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    z-index: 1;
}

.bg-shop-online::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(25, 25, 5, 0.2), rgba(23, 25, 5, 0.1));
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

.bg-shop-online:hover::before {
    opacity: 1;
}


/* START OF SUBMENU */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #555;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


/* END OF SUBMENU*/


/* PROJECTS BRANDS*/

.brands-box {
    position: relative;
    height: auto;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.brands-box:hover .image {
    opacity: 0.3;
}

.brands-box:hover .middle {
    opacity: 1;
}

.text {
    color: black;
    font-family: "Poppins";
}

.text:hover {
    color: black;
    text-decoration: none;
}


/* PROJECTS MODELS s*/

.models-box {
    position: relative;
    height: 220px;
}

.models-box:hover .image {
    opacity: 0.3;
}

.models-box:hover .middle {
    opacity: 1;
}


/* CONTACTFORM */

#ccms_form_contact label {
    display: none;
}


/* #ccms_form_contact textarea {
    height: 8em;
} */


/* END OF CONTACTFORM*/

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .pt-lg-4-dokmeer {
        padding-top: 2rem !important;
    }
}

@media (min-width: 1200px) {}


/* *-----------------------------------------------------
/////////////////////////////////////////////////////////
---------------custom css starts below-------------------
/////////////////////////////////////////////////////////
---------------------------------------------------------* */

:root {
    --teal: #3a4e56;
    --teal-light: #65808F;
}

body {
    font-family: "Gotham A", "Gotham B", Gotham, sans-serif;
}

.navbar {
    padding: 1.8rem 1rem;
}

.hompagenavigation {
    position: sticky;
    top: 0;
    background: var(--teal);
    /* rgba(93,130,142,1) */
    z-index: 100;
}

.hompagenavigation nav .logo-header {
    height: 35px;
    object-fit: contain;
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 1.2vw;
    letter-spacing: 0;
}

.navbar-expand-lg .navbar-nav .nav-link::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

.heroBanner {
    overflow: hidden;
}
.arrow-down{
    color: #fff;
    font-size: 2rem;
    position: absolute;
    bottom: 2rem;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    cursor: pointer;
}
.arrow-down i {
    pointer-events: none;
}
@keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(15px);
    }
    40% {
        transform: translate(0);
    }
}
@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(15px);
    }
    40% {
        transform: translate(0);
    }
}
.splide{
    object-fit: cover;
    position: absolute !important;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.kenburnsslide{
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: translate3d(0,0,0) scale(1.25);
}
.kenburnsslideanimated {
    transform: scale(1);
    transition: 8.5s transform linear;
}

.heroBanner video.bannervid {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.heroBanner .jumbotron {
    background: none;
    height: 100vh;
}

.heroBanner .jumbotron .content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heroBanner .jumbotron .content .herologo {
    max-width: 50%;
}

.headlineContainer {
    padding: 7rem 0;
}

.leadheading {
    font-size: 3.1vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: var(--teal);
}

.pre-title {
    font-size: 1.5vw;
    font-weight: 700;
    color: var(--teal);
}

.project-title {
    font-size: 2.59vw;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: var(--teal);
}

.property-title {
    font-size: 1.5vw;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--teal);
}

.activity-title {
    font-size: 1.35vw;
    font-weight: 500;
    color: var(--teal);
}
.activity-title-sub{
    font-size: 1.15vw;
    font-weight: 500;
    color: var(--teal);
}

.fs-250 {
    font-size: 2.50rem;
}

.fs-114vw {
    font-size: .85rem;
}

.fs-150vw {
    font-size: 1.20rem;
}

.fs-4145 {
    font-size: 4.145rem;
}

.fs-1295 {
    font-size: 1.2rem;
}

.fs-100 {
    font-size: .8rem;
}

.contact-title {
    font-size: 2vw;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--teal);
}

.btn-link {
    background-color: var(--teal);
    background-color: rgba(93, 130, 142, 1);
    color: #FFF;
    border-radius: 0;
    padding: 0 1rem;
    font-size: 1.295vw;
}

.btn-link:hover {
    background-color: var(--teal);
    color: #FFF;
    text-decoration: none;
}

.responsivecontainer {
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
}


/* map */

#map {
    min-height: 500px;
}

a[href^="http://maps.google.com/maps"] {
    display: none !important
}

a[href^="https://maps.google.com/maps"] {
    display: none !important
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gmnoprint div {
    background: none !important;
}

/* UNITS */
thead tr th {
    vertical-align: middle !important;
   /* -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;*/
    font-size: .9rem;
    font-weight: 600;
}
/* END OF UNITS */

/* form */

.container-fluid.py-5 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.formheading {
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.formheading+p {
    color: var(--teal);
    letter-spacing: 2px;
    font-weight: 400;
}

.ankor {
    color: inherit;
    text-decoration: none;
}
.ankor:hover,
.ankor:focus{
    color: inherit;
    text-decoration: none;
}

.contact-form {
    width: 100%;
}

#ccms_form_contact label {
    display: block;
    color: var(--teal);
    font-size: 1.14vw;
    letter-spacing: 0.05em;
}

#ccms_form_contact input::-ms-input-placeholder,
#ccms_form_contact textarea::-ms-input-placeholder {
    display: block;
    color: var(--teal);
    font-size: 1.14vw;
    letter-spacing: 0.05em;
}

#ccms_form_contact input::-webkit-input-placeholder,
#ccms_form_contact input::placeholder,
#ccms_form_contact textarea::-webkit-input-placeholder,
#ccms_form_contact textarea::placeholder {
    display: block;
    color: var(--teal);
    font-size: 1.14vw;
    letter-spacing: 0.05em;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid var(--teal);
    border-radius: 0;
    margin-bottom: 1rem;
    /*font-size: 1.14vw;*/
    letter-spacing: 0.05em;
}

.contact-form #contact_privacy {
    margin: 0 5px 0 0;
    font-size: 1.14vw;
    letter-spacing: 0.05em;
}

.contact-form .formcheckstatement {
    color: var(--teal);
    /* font-weight: 600; */
    font-size: 1rem;
}

.contact-form .form-control:hover,
.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-form .btn[type="submit"]:disabled {
    cursor: not-allowed;
}

.contact-form .btn[type="submit"] {
    float: right;
    background-color: var(--teal);
    color: #FFF;
    border-radius: 0;
}

.contact-form .btn[type="submit"]:hover,
.contact-form .btn[type="submit"]:focus {
    outline: none;
    box-shadow: none;
}

/* client logos */

.clientContainer {
    background-color: var(--teal);
}

.clientContainer .row {
    justify-content: center;
}

.clientlogos {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}


/* footer */

.bg-teal {
    background-color: var(--teal);
}

.bg-teal-light {
    background-color: var(--teal-light);
}

footer .socialArea {
    align-items: flex-start;
}

footer .socialArea a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 12px;
    border: none;
    color: #fff;
    width: 3vw;
    height: 2vw;
    font-size: 1.4rem;
    background: var(--teal-light);
    
}

footer .socialArea a.btn-social:hover,
footer .socialArea a.btn-social:focus {
    color: #fff;
    box-shadow: none;
    outline: none;
}


/* footer .socialArea a.btn-social.facebook,
footer .socialArea a.btn-social.facebook:hover,
footer .socialArea a.btn-social.facebook:focus {
    color: white;
    background: white;
    font-size: 24px;
} */

.footerCopyright {
    text-align: right;
    font-size: 1vw;
}

footer .policies a {
    color: var(--teal);
    font-size: 1vw;
    padding: 0 0 0 6px;
}

footer .policies a:hover,
footer .policies a:focus {
    color: var(--teal);
}

@media (max-width: 767px) {
    .heroBanner .jumbotron .content .herologo {
        max-width: 65%;
    }
    /* .leadheading {
        font-size: 1.65rem;
        letter-spacing: 2px;
    } */
    .formheading {
        letter-spacing: 10px;
    }
    .formheading+p {
        letter-spacing: normal;
    }
    .navbar-brand {
        max-width: 250px;
    }
    .navbar-brand .logo-header {
        left: -30px;
        position: relative;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1.2rem;
    }
    .pre-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--teal);
    }
    .project-title {
        font-size: 1.5rem;
    }
    .fs-150vw,
    .fs-114vw,
    .btn-link,
    .activity-title,
    .fs-1295,
    .fs-100,
    #ccms_form_contact label {
        font-size: 1rem;
    }
    #ccms_form_contact input::-webkit-input-placeholder,
    #ccms_form_contact input::placeholder,
    #ccms_form_contact textarea::-webkit-input-placeholder,
    #ccms_form_contact textarea::placeholder,
    .contact-form .form-control {
        font-size: 0.85rem;
    }
    .leadheading {
        font-size: 1.5rem;
    }
    .property-title {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: var(--teal);
    }
    .contact-title {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.3em;
        color: var(--teal);
    }
    .minheight {
        min-height: calc(100vh - 275px);
    }
    footer .socialArea a {
        font-size: 1rem;
    }
    .footerCopyright {
        font-size: 1rem;
    }
    .hompagenavigation nav .logo-header {
    height: 24px;
    padding-left: 1.6rem;
}
}

@media (min-width: 991px) {
    .maponrightrow .location {
        height: 500px;
        padding: 2.5rem;
    }
    .maponrightrow .map-position {
        position: absolute;
        right: 0;
    }
    .minheight {
        min-height: calc(100vh - 258px);
    }
}

@media (max-width: 991px) {
    .removepaddingonmobile {
        padding-left: 0;
        padding-right: 0;
    }
    .maponrightrow .location {
        padding: 0px 30px 30px 30px;
    }
    .headlineContainer {
        padding: 7vh 0;
    }
    .reverse-resposive {
        flex-direction: column-reverse;
    }
    .mobilepadding {
        padding: 3rem 1rem;
    }
    .property-title {
        font-size: 1.1rem;
    }
    .pre-title,
    .fs-114vw,
    .fs-100 {
        font-size: 0.85rem;
    }
    .fs-114vw,
    .btn-link,
    footer .socialArea a,
    .footerCopyright,
    .navbar-expand-lg .navbar-nav .nav-link,
    .fs-1295,
    .activity-title,
    #ccms_form_contact label {
        font-size: 1rem;
    }
    .minheight {
        min-height: calc(100vh - 250px);
    }
}
