@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #a8a7ac;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    color: white;
}

h2 {
    font-size: clamp(0.8rem, 0.74rem + 0.3vw, 1.1rem);
    color: white;
}

h3 {
    font-size: clamp(0.8rem, 0.74rem + 0.3vw, 1.1rem);
    color: white;
}

p {
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
}

.largeorange {
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    font-weight: bold;
    color: orange;
}

.contact_txt {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
    align-self: last baseline;
    line-height: 30px;
}

.banner_txt_child P {
    font-size: 12px;
    color: white;
}

.banner_txt_child .number {
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.underline_left {
    display: block;
    width: 60px;
    height: 7px;
    background: orange;
    margin: 10px 0;
}

.underline_center {
    display: block;
    width: 60px;
    height: 7px;
    background: orange;
    margin: 10px auto;
}

.horizontal_divider {
    display: block;
    width: 100px;
    height: 1px;
    background: orange;
    margin: 10px auto;
}

/* -------------------------------------------- */
/* HYPERLINK */
/* -------------------------------------------- */
/* THIS IS FOR ANCHOR LINK -START */
:target::before {
    content: "";
    display: block;
    height: 140px;
    margin: -140px 0 0 0;
}
/* THIS IS FOR ANCHOR LINK - END */

a.footerlink:link,
a.footerlink:visited {
    padding: 0 5px;
    text-decoration: none;
    color: #ffffff;
}

a.footerlink:hover {
    color: #dedede;
}

a.footerlink:active {
    color: #999;
}

/* VISION HYPERLINK START*/
.vision a:link,
.vision a:visited,
.vision a:focus {
    text-decoration: none;
    background-color: #222327;
    filter: grayscale(100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
}
.vision a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #222327;
    filter: grayscale(0%);
}
/* This is removing the underlines */
:any-link {
    text-decoration: none;
}
/* VISION HYPERLINK END*/

.responsive_img {
    width: 100%;
    height: auto;
}

.banner_txt {
    display: flex;
    flex-direction: row;
}

.banner_txt_child {
    display: flex;
    width: fit-content;
    height: 50px;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}
.banner_txt_child:nth-child(odd) {
    padding-left: 10px;
    border-left: 5px solid orange;
}
.vision img {
    margin-bottom: 10px;
}

/* ------------------- */
/* PROPERTY LIST STYLE */
/* ------------------- */
.container_propertylist {
    position: relative;
    width: 200px;
}

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

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

.container_propertylist:hover .image {
    opacity: 0.3;
}

.container_propertylist:hover .middle {
    opacity: 1;
    cursor: pointer;
}

.text {
    background-color: #000;
    color: white;
    font-size: 16px;
    padding: 16px 10px;
}

/* YOutube Section Start --------------------------------------------------------------- */
.youtube-div {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* YOutube Section Start --------------------------------------------------------------- */

/* Contact form Start ------------------------------------------------------------------ */
.form-container {
    display: flex;
    flex-wrap: wrap;
    font-size: 30px;
    box-sizing: border-box;
}

.form-halfcol {
    padding: 10px;
    flex: 50%;
    box-sizing: border-box;
}

.form-fullcol {
    padding: 10px;
    flex: 100%;
    box-sizing: border-box;
}

form div label {
    font-size: 14px;
    line-height: 48px;
    float: left;
    text-align: left;
    width: 120px;
    height: 50px;
    border-bottom: 1px solid #bbb;
}

form div .formstyle {
    /* width: calc(100% - 120px); */
    /* box-sizing: border-box; */
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    width: 100%;
    height: 50px;
    padding-left: 5px;
    border: none;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid #bbb;
    background-color: transparent;
}

form div .formbutton {
    float: left;
    padding: 15px 50px;
    border: none;
    border-radius: 3px;
    color: rgb(0, 0, 0);
    background-color: #999;
    cursor: pointer;
}

form div .formbutton:hover {
    background-color: #777;
}

form div .formbutton:active {
    background-color: #555;
}
/* Contact form end -------------------------------------------------------------------- */

/* ------------------- */
/* Mobile Menu Layout */
/* ------------------- */
@media screen and (max-width: 970px) {
    /* Contact form start ------------------------------------------------------------------ */
    .form-halfcol,
    .form-fullcol {
        flex: 100%;
    }
    /* Contact form end -------------------------------------------------------------------- */
}

@media screen and (max-width: 640px) {
    .text {
        background-color: #000;
        color: white;
        font-size: 12px;
        padding: 5px 5px;
    }
}
