/*COMMON*/
:root {
    --greycolor: #9B9682;
    --redcolor: #C22821;
    --whitecolor: #fff;
    --maroon: #721205;
    --black: #000;
    --greylight: #AFAA96;
    --greylighter: #E6E6DC;
    --darkgrey: #323228;
}

@media(min-width:1300px) {
    .container {
        max-width: 1315px;
    }
}

body {
    font-family: 'Source Sans Pro', sans-serif;
}

a:hover {
    text-decoration: none;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 25px;
}

h3 {
    color: #323228;
    font-size: 30px;
    line-height: 38px;
}

p.lead {
    color: var(--greycolor);
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
}

p {
    color: var(--darkgrey);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
}

hr.dash {
    border: 2px dashed #AFAA96;
}


img {
    max-width: 100%;
}

.btn-grey {
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    background-color: var(--greycolor);
    padding: 15px;
    color: var(--whitecolor);
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;

}

.btn-grey:hover {
    background-color: var(--redcolor);
    color: var(--whitecolor);
}

/*HEADER*/
header {
    border-bottom: 1px solid #dcdad2;
    z-index: 10;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--whitecolor);
}

.sticky+.content {
    padding-top: 102px;
}

header .navbar {
    padding: 5px 0;
}

header .navbar .navbar-brand img {
    max-width: 145px;
}

header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--greycolor);
    font-family: "Source Sans Pro";
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    text-transform: uppercase;
    padding: 0 12px;
    display: inline-block;
}

header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--redcolor);
}

header .navbar-expand-lg .navbar-collapse {
    position: relative;
}

header .navbar-expand-lg .navbar-nav .searchico .nav-link {
    padding-left: 50px;
}


/*
#menu{
  position: absolute;
  max-width: 1315px;
  width: 100%;
  top: 50px;
  left: 0;
  right: 0;
}
*/

#menu {
    display: none;
}

#sidr #menu {
    display: block;
}

#sidr #menu a {
    color: var(--greycolor) !important;
    font-size: 25px;
    text-transform: uppercase;
    padding: 15px 15px 15px 0;
    background: none;
    box-shadow: none;
}

#sidr #menu {
    height: 100vh;
    -webkit-box-shadow: -15px 0px 34px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -15px 0px 34px 0px rgba(0, 0, 0, 0.75);
    box-shadow: -15px 0px 34px 0px rgba(0, 0, 0, 0.75);
    position: relative;
    z-index: 10;
}

#sidr #menu li {
    border-bottom: 1px solid #ACAA95;
    margin-left: 20px;
}

.clsMenu {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    float: right;
    margin: 20px;
}

#menu ul {
    margin: 0;
    padding: 0;
}

#menu .main-menu {
    display: none;
}


#sidr #menu .main-menu {
    display: block;
    clear: both;
}

#tm:checked+.main-menu {
    display: block;
}

#menu input[type="checkbox"],
#menu ul span.drop-icon {
    display: none;
}

#menu li,
#toggle-menu,
#menu .sub-menu {
    border-style: solid;
    border-color: rgba(0, 0, 0, .05);
}

#menu li,
#toggle-menu {
    border-width: 0 0 1px;
}

#menu .sub-menu {
    margin: 0 1em;
}

#sidr #menu .sub-menu {
    margin: 0 0 30px 0;
    border: 0;
    list-style-type: disc;
}

#sidr #menu li .sub-menu li {
    margin-left: 0;
    border: none;
    position: relative;
}

#sidr #menu li .sub-menu li a {
    padding: 5px 30px 5px !important;
}

#sidr #menu li .sub-menu li:before {
    content: "";
    height: 5px;
    width: 5px;
    background: var(--greycolor) !important;
    position: absolute;
    top: 23px;
    left: 0;
}

#menu .sub-menu li:last-child {
    border-width: 0;
}

#menu li,
#toggle-menu,
#menu a {
    position: relative;
    display: block;
}

/*
#menu, 
#toggle-menu {
background-color: #09c;
}
*/

#toggle-menu,
#menu a {
    padding: 0 12px;
}

.sub-menu a {
    padding: 15px 12px 15px 0 !important;
    background: #721205;
    border: none !important;
    color: #fff !important;
    text-transform: capitalize !important;
}

#menu a {
    transition: all .125s ease-in-out;
    -webkit-transition: all .125s ease-in-out;
}

#menu a:hover {
    background-color: white;
    color: #09c;
}

#menu .sub-menu {
    display: none;
}

#menu input[type="checkbox"]:checked+.sub-menu {
    display: block;
}

#menu .sub-menu a:hover {
    color: #444;
}

#toggle-menu .drop-icon,
#menu li label.drop-icon {
    position: absolute;
    right: 1.5em;
    top: 30px;
    height: 20px;
    width: 20px;
    background: url(../images/plus-symbol.svg) no-repeat 0 0;
}

#menu li label.drop-icon-close {
    background: url(../images/close.svg) no-repeat 0 0;
}

#menu label.drop-icon,
#toggle-menu span.drop-icon {
    text-align: center;
}

#menu .drop-icon {
    line-height: 1;
}


/*
@media only screen and (max-width: 64em) and (min-width: 52.01em) {
#menu li {
  width: 33.333%;
}

#menu .sub-menu li {
  width: auto;
}
}
*/

@media only screen and (min-width: 992px) {
    #menu {
        width: 100%;
        display: block;
    }

    #simple-menu {
        display: none;
    }

    #menu .main-menu {
        display: block;
        float: right;
    }

    #toggle-menu,
    #menu label.drop-icon {
        display: none;
    }

    #menu ul span.drop-icon {
        display: inline-block;
    }

    #menu li {
        float: left;
        border-width: 0;
    }

    #menu .sub-menu li {
        float: none;
    }

    #menu .sub-menu {
        border-width: 0;
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 12em;
        z-index: 3000;
        padding-top: 30px;
    }

    #menu .sub-menu,
    #menu input[type="checkbox"]:checked+.sub-menu {
        display: none;
    }

    #menu .sub-menu li {
        /*    border-width: 0 0 1px;*/
    }

    #menu .sub-menu .sub-menu {
        top: 0;
        left: 100%;
    }

    #menu li:hover>input[type="checkbox"]+.sub-menu {
        display: block;
    }
}

.banner {
    position: relative;
    margin-bottom: 70px;
}

.banner .bannerCont {
    max-width: 643px;
    border-radius: 6px;
    background: rgba(50, 50, 50, 0.8);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    padding: 30px 50px;
}

.banner .bannerCont h2 {
    color: var(--whitecolor);
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 13px;
}

.banner .bannerCont .bannerSmall {
    color: var(--whitecolor);
    font-family: "Source Sans Pro";
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
}

.btn-red {
    border: 1px solid var(--whitecolor);
    border-radius: 3px;
    background-color: var(--redcolor);
    color: var(--whitecolor);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 5px 41px;
    transition: 300ms all linear;
}


/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--maroon);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
    color: var(--whitecolor);
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/*SEARCH*/
.searchico {
    position: relative;
    margin-left: 50px;
    margin-top: 30px;
}

.navbar-expand-lg .navbar-nav {
    position: relative;
    top: 10px;
}

.search-box input[type="text"] {
    border: none;
    background: none;
    z-index: 1;
    width: 25px;
    height: 40px;
    transition: all .25s ease-in .25s;
    color: transparent;
    font-size: .75rem;
    line-height: 25px;
    color: transparent;
    top: -10px;
    position: relative;
}

.search-box input[type="text"]:hover {
    cursor: pointer;
}

.search-box input[type="text"]:hover:focus {
    cursor: text;
}

.search-box input[type="text"]:hover+span {
    background: rgba(0, 0, 0, 0.2);
}

.search-box input[type="text"]:focus {
    width: 200px;
    padding: 0 10px;
    outline: none;
    color: black;
    background: none;
    color: var(--greycolor) !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;

}


.search-box input[type="text"]:focus+span {
    width: 200px;
    height: 40px;
    top: -10px;
}

.search-box input[type="text"]:focus+span::before {
    width: 2px;
    opacity: 0;
    transition: all .25s ease-in;
}

.search-box input[type="text"]+span {
    z-index: -1;
    position: absolute;
    border: 4px solid var(--greycolor);
    top: 0;
    width: 20px;
    height: 20px;
    transition: all .25s ease-in .25s;
    border-radius: 25px;
    left: 0;
}

.search-box input[type="text"]+span::before {
    transition: all .25s ease-in .5s;
    transform-origin: left top;
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    border-radius: 5px;
    background: var(--greycolor);
    transform: rotate(45deg) translate(18px, -2px);
}

/*LATEST NEWS*/
.latestnews {
    margin-bottom: 70px;
}


.latestnews .newsimage {
    margin-bottom: 15px;
    overflow: hidden;
}

.latestnews h2 {
    margin-bottom: 30px;
}

.widget {
    margin-bottom: 50px;
}

aside .widget p {
    font-size: 16px;
    line-height: 20px;
}

.latestnews ul {
    padding: 0 0 0 15px;
    margin: 0;
    font-size: 16px;
}

.latestnews h3 {
    color: var(--darkgrey);
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
}

small.newsdate {
    color: var(--greycolor);
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
}

.latestnews p {
    color: var(--black);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
}

.latestnews a.btn-red {
    position: absolute !important;
    bottom: -30px;
    left: 15px;
}

.newsbg {
    background: var(--greylighter);
    padding: 50px 30px;
    border-radius: 37px;
}

.latestnews .col .newsimage img {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;

    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

.latestnews .col:hover .newsimage img {
    -webkit-filter: contrast(120%) brightness(120%);
    /* Safari 6.0 - 9.0 */
    filter: contrast(120%) brightness(120%);
    -webkit-transform: scale(1.2) rotate(5deg);
    transform: scale(1.3) rotate(5deg);


}

.inner-banner .bannerText {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
}

.inner-banner .bannerText h2 {
    color: var(--whitecolor);
    font-size: 70px;
    font-weight: 600;
    line-height: 46px;
    text-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

/*FOOTER*/
footer {
    background: var(--greylight);
    padding: 25px;
}

.footerLogo {
    margin-bottom: 30px;
}

footer address {
    color: var(--whitecolor);
    font-size: 14px;
    line-height: 20px;
}

footer address a {
    color: var(--whitecolor);
}

footer .footerborder {
    border-right: 1px solid #A09682;
    padding-right: 20px;
}

footer .footersection {
    padding-top: 50px;
}


footer .footersection h3 {
    color: var(--whitecolor);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

footer .footersection p {
    color: var(--whitecolor);
    font-size: 14px;
    line-height: 20px;
}

footer .footersection ul {
    padding: 0;
    margin: 0;
}

footer .footersection ul li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .footersection ul li a {
    color: var(--whitecolor);
    font-size: 14px;
    line-height: 20px;
}

footer .socialmedia {
    padding: 50px 0 0 0;
    margin: 0;
    float: right;
}

footer .socialmedia li {
    padding: 0;
    margin: 0 0 15px;
    list-style-type: none;
}

footer .socialmedia li a {
    display: block;
    width: 34px;
    height: 34px;
    background: #a09682;
    border-radius: 100%;
    transition: 300ms linear all;
}

footer .socialmedia li a:hover {
    background: var(--redcolor);
}

footer .footersection .footeremail {
    position: relative;
}


footer .footersection .footeremail input[type="email"] {
    height: 40px;
    width: 100%;
    border: 1px solid #A09682;
    border-radius: 3px;
    background-color: var(--whitecolor);
    padding-left: 5px;
    color: #AFAA96;
    font-size: 16px;
}

footer .footersection .footeremail input[type="submit"] {
    height: 30.07px;
    width: 97px;
    border-radius: 2px;
    background-color: #A09682;
    color: var(--whitecolor);
    border: none;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: 300ms linear all;
}

footer .footersection .footeremail input[type="submit"]:hover {
    background: var(--redcolor);
}

input:focus {
    outline: none;
}

footer .footersection.copyright {
    color: #666666;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #666666;
    padding-top: 100px;
    padding-right: 50px;
}

footer .footersection.copyright p,
footer .footersection.copyright a {
    color: #666666;
    margin-bottom: 0;
}

footer .footersection.copyright a {
    padding: 0 10px;
    border-right: 1px solid #666;
}

footer .footersection.copyright nav {
    margin-top: 5px;
}

footer .footersection.copyright a:last-child {
    border-right: 0;
    padding-right: 0;
    line-height: 18px;
    display: inline-block;
}


/*VISION*/
.visionwrap {
    -webkit-border-top-right-radius: 37px;
    -webkit-border-bottom-right-radius: 37px;
    -moz-border-radius-topright: 37px;
    -moz-border-radius-bottomright: 37px;
    border-top-right-radius: 37px;
    border-bottom-right-radius: 37px;
    background-color: #E6E6DC;
    max-width: 85%;
    margin-bottom: 100px;
}

.amenities {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.amenities h5 {
    color: #C22821;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.col5 {
    max-width: 20%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.numbers {
    background-color: #E6E6DC;
    -webkit-border-radius: 37px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 37px;
    -moz-border-radius-topleft: 0;
    border-radius: 37px;
    border-top-left-radius: 0;
    margin-bottom: 100px;
}

.cont-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-fill: balance;
    column-fill: balance;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.numberwrap {
    max-width: 1089px;
    border-radius: 15px;
    background-color: #FFFFFF;
    margin: 100px auto;
    width: 100%;
}

.numberwrap .col {
    width: 33.33%;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.numberwrap .col h5 {
    color: #C22821;
    font-size: 24px;
    font-weight: bold;
    line-height: 31px;
    text-align: center;
    margin-bottom: 0;
}

.numberwrap .col .numscroller {
    color: #323228;
    font-size: 80px;
    line-height: 101px;
    text-align: center;
    display: block;
}

.numberwrap .col p {
    color: #323228;
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    text-align: center;
    margin-bottom: 0;
}

/*BUSINESS LOGO*/
.businesslogos .blogo {
    background: #F1F2ED;
    text-align: center;
    padding: 0px 30px;
    margin-bottom: 20px;
    height: 150px;
    position: relative;
}

.businesslogos .blogo img {
    height: auto;
    width: auto;
    margin: auto;
    max-height: 125px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.businesslogos .blogocont h5 {
    color: #C22821;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.businesslogos .blogocont p {
    color: #323228;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

/*CONTACT*/
.contactform {
    margin-bottom: 100px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    color: #9B9682;
    font-size: 20px;
    line-height: 30px;
}

.form-control,
textarea.form-control {
    height: 47px;
    width: 100%;
    border: 1px solid #AFAA96;
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
}

.contactform h2 {
    color: #C22821;
    font-size: 36px;
    font-weight: 600;
    line-height: 30px;
}

.contactform .form-control,
.contactform textarea.form-control {
    max-width: 80%;
}

.contactform address {
    -webkit-border-radius: 37px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 37px;
    -moz-border-radius-topleft: 0;
    border-radius: 37px;
    border-top-left-radius: 0;
    background-color: #E6E6DC;
}

.contactform address .location {
    position: relative;
}

.contactform address .location img {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    bottom: 0;
    margin: auto;
}

.contactform address .location h3,
.contactform address .location p {
    margin-left: 80px;
}

.contactform address .location h3 {
    color: #87887D;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 26px;
    line-height: 34px;
}

.contactform address .location p {
    color: #323228;
    font-size: 24px;
    line-height: 34px;
}

.contactform address .location a {
    color: #000;
}

.contactform address .location h3+p a {
    word-break: break-all;
}


/*MASTERPLAN*/
.mapul {
    padding: 0;
    list-style-type: none;
}

.mapul li {
    font-weight: bold;
    margin: 0 0 25px;
    color: #323228;
    font-size: 20px;
    line-height: 25px;
}

.mapul li .markcolor {
    display: inline-block;
    height: 30px;
    width: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

/* 11-05-2021 Start */
.banner .bannerCont {
    background: rgba(50, 50, 50, 0.5);
}

.Unparallelled {
    -webkit-border-top-right-radius: 37px;
    -webkit-border-bottom-right-radius: 37px;
    -moz-border-radius-topright: 37px;
    -moz-border-radius-bottomright: 37px;
    border-bottom-left-radius: 37px;
    border-top-right-radius: 37px;
    border-bottom-right-radius: 37px;
    background-color: #E6E6DC;
    max-width: 85%;
    margin-bottom: 60px;
}

/* .corner-radius{
  -webkit-border-top-right-radius: 37px;
  -webkit-border-bottom-right-radius: 37px;
  -moz-border-radius-topright: 37px;
  -moz-border-radius-bottomright: 37px;
  border-bottom-left-radius: 37px;
  border-top-right-radius: 37px;
  border-bottom-right-radius: 37px; 
  max-width: 100%;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
} */
.mr_bt_large {
    margin-bottom: 100px;
}

.crossimg_content {
    margin-bottom: 100px;
}

/* 11-05-2021 End */

/* 12-05-2021 Start */
.Project_grid span {
    display: block;
    font-weight: bold;
    font-size: 22px;
}

.Grid_img {
    margin-bottom: 15px;
}

.Project_grid span {
    margin-top: 15px;
}

/* 12-05-2021 End */
/* 14-05-2021 */

/* 14-05-2021 */
/* 17-05-2021 Start */
.min-width-bannertext {
    max-width: 1037px;
    margin: auto;
    bottom: 35px !important;
}

.min-width-bannertext h2 {
    line-height: 74px !important;
}

.leisure-image-grid.numbers {
    background-color: white !important;
}

.lw-Restaurants-content {
    margin-top: 25px;
}

.lw-Restaurants .image-grid-inner {
    padding: 0;
}

/* 17-05-2021 End */
/* 19-05-2021 Start */

.object-fit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-mrg {
    margin-bottom: 15px;
}

/* 19-05-2021 End */
/* 20-05-2021 start */
.title-fixwidth {
    width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.officeslogo-section .blogo {
    text-align: center;
    padding: 0px 30px;
    margin-bottom: 20px;
    height: 40px;
    position: relative;
}

.officeslogo-section .logo-wrap h5 {
    color: #C22821;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 20-05-2021 End */

/* 27-05-2021 Start */
.mr_top_bt {
    margin-top: 70px;
    margin-bottom: 70px;
}

.mr_top {
    margin-top: 70px;
}

/* 27-05-2021 End */
/* 31-05-2021 Start */
.Green {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    color: #37A829 !important;
}

.redtext {
    font-size: 24px !important;
    margin-bottom: 0;
}

.greentext {
    font-size: 24px !important;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    color: #37A829 !important;
    margin-bottom: 15px;
}

.behind_SmartCityMalta p {
    margin-bottom: 15px !important;
}

.position-absolute {
    position: absolute !important;
}

.bgimg_parent .position-absolute {
    top: 0px;
    left: 50%;
    transform: translate(-50%, 10%);
    bottom: auto !important;
}

.bgimg_parent h2 {
    color: white;
}

.bgimg_parent p {
    color: white;
}

/* .worklife_balance .imagetiles{
  transform: translateY(100%);
} */

.get-in-touch-form .form-control {
    max-width: 100%;
}

.get-in-touch-form p {
    padding-left: 15px;
    padding-right: 15px;
}

.get-in-touch-form textarea.form-control {
    height: 100%;
}

.worklife_balance .bgimg_inner {
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 70px;
}

.worklife_balance .imagetiles {
    margin-top: 19vw;
    margin-bottom: 8vw;
}

.worklife-contet-block .worklife-text-block {
    max-width: 926px;
    margin-left: auto;
    margin-right: auto;
}

.worklife-contet-block .worklife-title-block {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
}

.office-img-grid .col-lg-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#main-menu li.menu-item a[aria-current]:not([aria-current="false"]) {
    color: #C22821;
}

body h2.banner-heading-medium {
    font-size: 60px !important;
}

#menu a:hover {
    color: #C22821;
}

.home .banner {
    margin-bottom: 45px;
}

/* .bgimg_inner{
  position: relative;
} */
/* 31-05-2021 End */
/* 14-06-2021 Start */
.latestnews .col .newsimage img {
    -webkit-transition: .7s ease-in-out;
    transition: .7s ease-in-out;
}

.latestnews .col:hover .newsimage img {
    -webkit-filter: contrast(110%) brightness(110%);
    filter: contrast(110%) brightness(110%);
    -webkit-transform: scale(1.2) rotate(0);
    transform: scale(1.2) rotate(0);
}


/* 14-06-2021 End */
/* 22-06-2021 Start */
.page-template-template-offices .banimg,
.page-template-template-leisure .banimg {
    position: relative;
    display: inline-block;
}

.page-template-template-offices .banimg::after,
.page-template-template-leisure .banimg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    background: -webkit-(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    background: -webkit-linear-gradient(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    background: -o-linear-gradient(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    background: -ms-linear-gradient(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    background: linear-gradient(0deg, rgb(112 112 112) -5%, rgba(255, 255, 255, 0) 25%);
    mix-blend-mode: multiply;
}

.page-template-template-offices img,
.page-template-template-leisure img {
    display: block;
}

.page-template-template-offices .bannerText h2,
.page-template-template-leisure .bannerText h2 {
    text-shadow: 0px 2px 4px rgb(0 0 0 / 50%);
}

/* 22-06-2021 End */

/* 24-06-2021 Start */

/* 24-06-2021 End */



/*-------------------------------------- Footer and banner design start------------------------------------------*/
.logo-wrap .blogo img {
    margin: 0 auto;
}

footer .socialmedia {
    display: flex;
    padding-left: 0px;
    gap: 10px;
    padding-top: 20px;
    float: left;
    justify-content: center;
}

.video-container {
    position: relative;
    padding-bottom: 38%;
    overflow: hidden;
}

.video-container iframe {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    left: -100%;
    height: 200%;
    top: -50%;
}

/* .footerborder{
  display: none;
} */

footer .footersection.widget_media_image {
    margin-bottom: 30px;
}

footer .widget_text.footersection.widget_custom_html {
    text-align: right !important;
    color: var(--whitecolor);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 1rem;
    font-style: normal;
}

footer .col-12.d-lg-block {
    border-right: 1px solid #A09682;
    padding-right: 20px;
    height: max-content;
}

footer .col-12.d-lg-block .footersection {
    padding-top: 0px;
    height: max-content;
}

footer .footersection ul li a {
    line-height: 24px;
}

footer .footersection ul li a.nav-link {
    padding: 0px;
}

footer .col:nth-child(4) section.widget_text {
    padding-top: 20px !important;
}

footer .col:nth-child(4) section.widget_text li {
    list-style-type: none;
}

footer .col:nth-child(4) section.widget_text li a img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

footer .col:nth-child(4) .textwidget.custom-html-widget {
    display: flex;
    gap: 10px;
    justify-content: center;
    float: left;
}

.footersection.copyright nav .widget_nav_menu {
    padding-top: 0px;
}

.footersection.copyright nav ul.menu {
    display: flex;
    justify-content: center;
}

.footersection.copyright nav ul.menu li {
    padding: 0 10px;
    border-right: 1px solid #666;
}

.footersection.copyright nav ul.menu li:last-child {
    border-right: none;
}

footer .col:nth-child(4) section.widget_text li a img:hover {
    background: var(--redcolor);
}

.leisure_content_area .title-fixwidth {
    max-width: 790px;
    width: auto;
}
section.inner-banner
{
    overflow: hidden;
}

@media (max-width: 991px) {
    .video-container iframe {
        width: 200%;
        left: -50%;
    }

    .video-container {
        padding-bottom: 110%;
    }

    footer .col:nth-child(4) section.widget_text li a img {
        width: 34px;
        height: 34px;
    }

    footer .col:nth-child(4) .widget_custom_html {
        border-bottom: none;
    }

    footer .col:nth-child(4) .textwidget.custom-html-widget {
        float: unset;
    }

    .video-container+.inner-banner .bannerText {
        position: absolute;
        margin-top: 20px;
    }

    body .inner-banner .bannerText h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
        padding: 0 !important;
    }

}

/* Hide the footer elements on small devices */
@media (max-width: 767px) {

    /* .footerLogo,
    .text-center {
        display: none;
    } */

    .page-id-272 .text-center {
        display: block;
    }

    .page-id-272 .banner-heading-medium {
        font-size: 30px !important;
        line-height: 40px !important;
        padding: 0 20px !important;
    }

    .page-id-272 .bannerText.text-center {
        padding: 0 20px !important;
    }
}


/*-------------------------------------- Footer and banner design end------------------------------------------*/








/* responsive */
@media (min-width: 992px) {
    .crossimg_content .col-lg-6 {
        padding: 0px;
    }

    .crossimg_content .content_inner {
        padding: 20px 0px 20px 20px;
    }

    .crossimg_content .Qualitylife_content.content_inner {
        padding: 0px 20px 20px 0px;
    }

    .Unparallelled img,
    .crossimg_content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lw-Restaurants-content .row>.col:first-child {
        padding-left: 0;
    }

    .lw-Restaurants-content .row>.col:last-child {
        padding-right: 0;
    }

    .Environmental_content {
        padding-left: 40px !important;
    }

    .latestnews .newsimage {
        height: 303px;
    }

    .latestnews .newsimage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .crossimg_content .content_inner {
        padding: 20px 0px;
    }

    .Unparallelled {
        max-width: 100%;
    }

    .Unparallelled .col-lg-4 {
        padding: 30px;
    }
}

/* footer .col-12.d-lg-block .footersection {
    text-align: right;
    line-height: 0;
} */

footer .d-lg-block address.text-right {
    margin-bottom: 0px;
}

footer .col:nth-child(4) .widget_block {
    padding-top: 20px;
}

footer .col:nth-child(4) .wp-block-social-links {
    align-items: baseline;
    float: left;
}

footer .col:nth-child(4) .wp-block-social-link-anchor {
    width: 30px;
    height: 30px;
}

footer .col:nth-child(4) .wp-block-social-link-anchor svg {
    width: 30px;
    height: 30px;
}

footer .col:nth-child(4) .wp-block-social-link:hover {
    transform: none;
    background: var(--redcolor) !important;
}

footer .wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    background-color: transparent !important;
    color: #fff;
    border: 3px solid;
}

.officesfirstsection_content .leed-logo img {
    margin: 0 auto;
}

footer .col-12.d-lg-block .footersection {
    text-align: right;
}

footer .col-12.d-lg-block .footersection br {
    display: none;
}

@media (max-width: 991px) {
    footer .col:nth-child(4) .wp-block-social-links {
        float: unset;
    }

    footer .col-12.d-lg-block {
        display: block !important;
        border-right: none;
    }

    footer .col-12.d-lg-block .footersection {
        padding-bottom: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    footer .col-12.d-lg-block .text-right,
    footer .widget_text.footersection.widget_custom_html {
        text-align: center !important;
    }

    .footersection img {
        margin: 0 auto;
    }

    footer section.footersection {
        padding-top: 20px;
        text-align: center;
        padding-bottom: 10px;
    }

    footer .col:nth-child(4) section.widget_text {
        margin-bottom: 0;
    }

    footer .footersection p {
        margin-bottom: 20px;
    }

    footer .col-12.d-lg-block .footersection:first-child {
        margin-bottom: 20px;
    }

    footer .footersection p:last-child:last-child {
        margin-bottom: 0;
    }
}