@font-face {
    font-family: 'Medium';
    src: url('../fonts/MonaSans_Expanded-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Bold';
    src: url('../fonts/MonaSans_Expanded-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Regular';
    src: url('../fonts/MonaSans_Expanded-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Semibold';
    src: url('../fonts/MonaSans_Expanded-SemiBold.ttf') format('truetype');
}



* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/*---root---*/
:root {
    --redColor: #DB2727;
    --whiteColor: #FFFFFF;
    --blackColor: #323233;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/*---MyContainer---*/
.myContainerM {
    margin: 0 240px;
}

.myContainerP {
    padding: 0 240px;
}

/*---Header---*/
header {
    position: absolute;
    width: 100vw;
    height: 75px;
    margin: 65px 0;
    background: transparent;
    z-index: 900;
    top: 0;
    left: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.header-logo a img {
    max-width: 350px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.header-right .header-social ul,
.header-right .header-nav ul {
    display: flex;
    align-items: center;
}

.header-right .header-social {
    margin-bottom: 15px;
}

.header-right .header-social ul {
    gap: 3px;
}

.header-right .header-social ul li a {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--whiteColor);
    color: #325e83;
    font-size: 13px;
}

.header-right .header-nav ul {
    gap: 35px;
}

.header-right .header-nav ul li a {
    color: var(--whiteColor);
    font-family: 'Medium';
    transition: all ease 0.5s;
}

.header-right .header-nav ul li a:hover {
    color: var(--redColor);
    border-bottom: 3px solid var(--whiteColor);
}

header .header-right .header-nav ul li.active a {
    color: var(--redColor);
    border-bottom: 3px solid var(--whiteColor);
}

header.active {
    position: relative;
}

header.active .header-right .header-nav ul li a {
    color: var(--blackColor);
}

header.active .header-right .header-nav ul li a:hover {
    color: var(--redColor);
    border-color: #E1E2E3;
}

header.active .header-right .header-nav ul li.active a {
    color: var(--redColor);
    border-bottom: 3px solid #E1E2E3;
}
header.active .header-right .header-social ul li a {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #B5B5B5;
    color: #FFF;
    font-size: 13px;
}

/*---HomeSlider---*/
.home-slider {
    min-height: 1700px;
}

.home-slider .carousel-caption {
    bottom: 45%;
    right: 240px;
    left: 240px;
}

.home-slider .home-slider-link {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.home-slider .home-slider-link a {
    color: var(--whiteColor);
    font-size: 20px;
    font-family: "Bold";
    padding-right: 25px;
    position: relative;
    overflow: hidden;
}

.home-slider .home-slider-link a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--whiteColor);
    bottom: 0;
    left: 0;
    z-index: 5;
}

.home-slider .home-slider-link a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--redColor);
    bottom: 0;
    left: -100%;
    z-index: 6;
    transition: all ease 0.5s;
}

.home-slider .home-slider-link a:hover::after {
    left: 0;
}

.home-slider .carousel-caption h5 {
    color: var(--redColor);
    font-size: 45px;
    font-family: "Regular";
    text-align: start;
}

.home-slider .carousel-caption p {
    color: var(--whiteColor);
    font-size: 18px;
    font-family: "Regular";
    text-align: start;
}

.home-slider .home-slider-right {
    display: flex;
    justify-content: end;
    align-items: end;
    height: 100%;
    gap: 35px;
}

.home-slider .home-slider-application {
    display: flex;
    position: relative;
}

.home-slider .home-slider-application button {
    width: 43px;
    height: 43px;
    border-radius: 100%;
    background: var(--redColor);
    color: var(--whiteColor);
    border: none;
    font-size: 18px;
    margin-right: 8px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition: all ease 0.5s;
}

.home-slider .home-slider-application button.active {
    transform: rotate(-90deg);
}

.home-slider .home-slider-application span {
    font-size: 16px;
    font-family: "Medium";
    color: var(--whiteColor);
    background-color: #ffffff30;
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DBD4D4;
    border-radius: 11px;
    cursor: pointer;
}

.home-slider .home-slider-application span:hover {
    background: var(--redColor);
}

.home-slider-project-value p {
    font-size: 20px;
    color: var(--whiteColor);
    font-family: "Medium" !important;
    margin-bottom: 10px;
}

.home-slider-project-value span {
    position: relative;
    background-color: #ffffff30;
    width: 100%;
    height: 10px;
    display: flex;
}

.home-slider-project-value span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width:var(--valueW);
    height: 100%;
    background: var(--redColor);
    z-index: 15;
}
.home-slider-project-value div {
    position: relative;
    background-color: #ffffff30;
    width: 100%;
    height: 10px;
    display: flex;
}

.home-slider-project-value div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width:var(--valueW);
    height: 100%;
    background: var(--redColor);
    z-index: 15;
}


.home-slider-down-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*---HomeApplication---*/
.home-application {
    position: absolute;
    width: 510px;
    height: 550px;
    background: var(--whiteColor);
    border-radius: 25px;
    overflow: hidden;
    right: 240px;
    bottom: 20%;
    z-index: 55;
    padding: 25px 40px;
    display: none;
}

.home-application.active {
    display: block;
}

.home-application-close {
    display: none;
    position: absolute;
    right: 15px;
    top: 25px;
    z-index: 999;
}

.home-application-form h5 {
    font-size: 15px;
    font-family: "Semibold";
    color: var(--redColor);
    margin-bottom: 5px;
}

.home-application-form p {
    font-size: 10px;
    font-family: "Regular";
    color: var(--blackColor);
    margin-bottom: 15px;
}

.input-group {
    width: 100%;
    margin-bottom: 13px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    height: 50px;
    border-radius: 11px;
    background: #EDEDED;
    border: none;
    padding-left: 20px;
    font-size: 15px;
    font-family: "Regular";
    color: #9A9A9A;
    outline: none;
}

.input-group textarea {
    padding-top: 15px;
}

.home-application-form .form-check {
    margin-bottom: 50px;
}

.home-application-form .form-check input {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #EDEDED;
    outline: none;
    border: none;
    box-shadow: none;
    margin-right: 8px;
}

.home-application-form .form-check input:checked {
    background-color: var(--redColor);
}

.home-application-form .form-check label {
    font-size: 15px;
    font-family: "Medium";
    color: var(--redColor);
}

.home-application-form-span {
    font-size: 10px;
    font-family: "Regular";
    color: var(--redColor);
    margin-bottom: 40px;
}

.home-application-form-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-application-form-button button {
    width: 160px;
    height: 50px;
    background: var(--redColor);
    border: none;
    outline: none;
    color: var(--whiteColor);
    font-size: 15px;
    font-family: "Semibold";
    border-radius: 11px;
}
.home-application-form-button button:hover{
    background:var(--blackColor);
    color:var(--redColor);
}

.error{
    border:1px solid var(--redColor) !important;
}
/*---HomeCorporate---*/
.home-corporate {
    position: absolute;
    top: 115vh;
    left: 0;
}

.home-corporate-logo {
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.home-corporate-logo img {
    max-width: 135px;
    margin-right: 30px;
}

.home-corporate-logo h5 {
    font-size: 45px;
    font-family: "Bold";
    color: var(--whiteColor);
}

.home-corporate-box {
    height: auto;
    border-radius: 25px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: start;
    background-color: #ffffff30;
    backdrop-filter: blur(30px);
    transition: all ease 0.5s;
}

.home-corporate-box-icon {
    margin-right: 20px;
}

.home-corporate-box-text h5 {
    font-size: 35px;
    font-family: "Semibold";
    color: #E1E2E3;
}

.home-corporate-box-text p {
    font-size: 20px;
    font-family: "Regular";
    color: #E0D2C2;
    transition: all ease 0.5s;
}

.home-corporate .row .col-lg-4:hover .home-corporate-box {
    min-height: 340px;
    position: relative;
    z-index: 100;
    height: 100%;
}

.home-corporate .row .col-lg-4:hover .home-corporate-box p {
    font-size: 28px;
}

.home-corporate .row .col-lg-4:nth-child(1):hover .home-corporate-box {
    background: var(--redColor);
}

.home-corporate .row .col-lg-4:nth-child(2):hover .home-corporate-box {
    background: #E1E2E3;
}

.home-corporate .row .col-lg-4:nth-child(3):hover .home-corporate-box {
    background: var(--blackColor);
}

.home-corporate .row .col-lg-4:nth-child(1):hover .home-corporate-box img {
    filter: brightness(999);
}

.home-corporate .row .col-lg-4:nth-child(2):hover .home-corporate-box h5 {
    color: var(--redColor);
}

.home-corporate .row .col-lg-4:nth-child(2):hover .home-corporate-box p {
    color: var(--blackColor);
}

/*---HomeContact---*/
.home-contact {
    position: relative;
    z-index: 55;
    height: 380px;
    margin-top: -115px;
}

.home-contact .row,
.home-contact .col-lg-7,
.home-contact .col-lg-5 {
    margin: 0;
    padding: 0;
}

.home-contact .row {
    background: #E1E2E3;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    overflow: hidden;
}

.home-contact .col-lg-5 {
    margin-left: -20px;
}

.home-contact-map,
.home-contact-map iframe {
    width: 100%;
    height: 380px;
    position: relative;
}

.home-contact-icon {
    width: 125px;
    height: 140px;
    position: absolute;
    top: calc(50% - 70px);
    left: calc(50% - 62.5px);
    background-color: #ffffffbf;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}


.home-contact-icon::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 20px;
    height: 15px;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background-color: #ffffffbf;
    z-index: 55;
}

.home-contact-icon img {
    max-width: 100%;
}

.home-contact-text {
    background-color: #E1E2E3;
    background-image: url(../images/home-contactBg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    height: 380px;
    padding: 30px 60px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 55;
}

.home-contact-text h5 {
    font-size: 45px;
    font-family: "Medium";
    color: var(--blackColor);
    margin-bottom: 10px;
}

.home-contact-text p {
    font-size: 18px;
    font-family: "Regular";
    color: var(--blackColor);
    margin-bottom: 20px;
}

.home-contact-text a {
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--redColor);
    color: var(--whiteColor);
    font-size: 15px;
    font-family: "Medium";
    border-radius: 11px;
    transition: all ease 0.5s;
}

.home-contact-text a:hover {
    background: var(--blackColor);
}

/*---HomeService---*/
.home-service {
    margin: 90px 0;
    overflow:hidden !important;
}

.home-service-box {
    position: relative;
}

.home-service-box-image {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    display: flex;
}

.home-service-box-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(35deg, #323233 0%, transparent 100%);
}

.home-service-box-text {
    position: absolute;
    z-index: 55;
    bottom: 55px;
    left: 55px;
    right:55px;
    text-align: end;
}

.home-service-box-text h5 {
    font-size: 24px;
    font-family: "Medium";
    color: var(--whiteColor);
}

.home-service-text {
    margin-right: 240px;
    height: 100%;
    display: flex;
    align-items: center;
}

.home-service-text h5 {
    font-size: 45px;
    font-family: "Regular";
    color: var(--blackColor);
    transition: all ease 0.5s;
}

.home-service-text h5:hover {
    color: var(--redColor);
}

/*---HomeProjectInfo---*/
.home-project-info {
    margin: 90px 0;
}

.home-project-info-title {
    text-align: center;
    margin-bottom: 90px;
    padding: 0 90px;
}

.home-project-info-title h3 {
    font-size: 45px;
    font-family: "Medium";
    color: var(--blackColor);
    margin-bottom: 20px;
}

.home-project-info-title p {
    font-size: 18px;
    font-family: "Regular";
    color: var(--blackColor);
}

.home-project-info-content {
    height: 390px;
    background-image: url(../images/home-project-info-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 55px 0;
}

.home-project-info-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #70707090;
    z-index: 5;
}

.home-project-info-content .myContainerM {
    position: relative;
    z-index: 15;
}

.home-project-info-box {
    padding: 20px 25px;
    border-radius: 25px;
    overflow: hidden;
    height: 210px;
    transition: all ease 0.5s;
}

.home-project-info-box-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.home-project-info-box-icon {
    width: 40px;
}

.home-project-info-box-icon img {
    max-width: 100%;
}

.home-project-info-box-title {
    width: calc(100% - 60px);
}

.home-project-info-box-title h5 {
    font-size: 18px;
    font-family: "Medium";
    color: var(--whiteColor);
}

.home-project-info-box-bottom {
    padding-left: 60px;
    transition: all ease 0.5s;
}

.home-project-info-box-bottom p {
    font-size: 15px;
    font-family: "Regular";
    color: var(--whiteColor);
    transition: all ease 0.5s;
}

.home-project-info-content .row .col-lg-3:nth-child(2n) .home-project-info-box-title h5,
.home-project-info-content .row .col-lg-3:nth-child(2n) .home-project-info-box-bottom p {
    color: var(--blackColor);
}

.home-project-info-content .row .col-lg-3:nth-child(1) .home-project-info-box {
    background: var(--redColor);
    box-shadow: 1px 1px 30px 1px var(--redColor);
}

.home-project-info-content .row .col-lg-3:nth-child(2) .home-project-info-box {
    background: #E0D2C2;
    box-shadow: 1px 1px 30px 1px #E0D2C2;
}

.home-project-info-content .row .col-lg-3:nth-child(3) .home-project-info-box {
    background: var(--blackColor);
    box-shadow: 1px 1px 30px 1px var(--blackColor);
}

.home-project-info-content .row .col-lg-3:nth-child(4) .home-project-info-box {
    background: #E1E2E3;
    box-shadow: 1px 1px 30px 1px #E1E2E3;
}

.home-project-info-content .row .col-lg-3:hover .home-project-info-box {
    height: 250px;
}

.home-project-info-content .row .col-lg-3:hover .home-project-info-box-bottom {
    padding-left: 0;
}

.home-project-info-content .row .col-lg-3:hover .home-project-info-box-bottom p {
    font-size: 18px;
}

/*---HomeContact2---*/
.home-contact2,
.home-social-facility,
.home-corporate2 {
    background-image: url(../images/home-contact2Bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    overflow: hidden;
}

.home-contact2-title {
    text-align: center;
    margin-bottom: 75px;
    padding: 0 120px;
}

.home-contact2-title h3 {
    font-size: 45px;
    font-family: "Medium";
    color: var(--blackColor);
    margin-bottom: 20px;
}

.home-contact2-title p {
    font-size: 18px;
    font-family: "Regular";
    color: var(--blackColor);
}

.home-contact2-center {
    position: relative;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-contact2-center a {
    position: absolute;
    width: 70%;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 25px;
    left: calc(50% - 35%);
    padding: 35px 45px;
    background: var(--redColor);
    color: var(--whiteColor);
    font-size: 27px;
    font-family: "Medium";
    border-radius: 25px;
    z-index: 55;
    transition: all ease 0.5s;
}

.home-contact2-center a:hover {
    background: #000;
}

.home-contact2-center .home-contact2-center-image1 {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: all ease 0.5s;
}

.home-contact2-center .home-contact2-center-image1 img,
.home-contact2-center .home-contact2-center-image2 img {
    max-width: 100%;
}

.home-contact2-slider .carousel-indicators {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 0 !important;
    height: 100%;
    border-right: 4px solid #E9E9E9;
}

.home-contact2-slider .carousel-indicators button {
    text-indent: 0;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    font-size: 18px;
    font-family: "Semibold";
    color: var(--blackColor);
    transition: all ease 0.5s;
    height: 55px;
}

.home-contact2-slider .carousel-indicators button span {
    width: 0;
    height: 0;
    display: flex;
    transition: all ease 0.5s;
}

.home-contact2-slider .carousel-indicators button.active {
    color: var(--redColor);
}

.home-contact2-slider .carousel-indicators button.active span {
    width: 14px;
    height: 100%;
    background: var(--redColor);
    margin-right: 15px;
    border-radius: 5px;
}

.home-contact2-slider-text h3 {
    font-size: 36px;
    font-family: "Bold";
    color: var(--redColor);
    margin-bottom: 65px;
}

.home-contact2-slider-text h5 {
    font-size: 18px;
    font-family: "Bold";
    margin-bottom: 45px;
}

.home-contact2-slider-text p {
    font-size: 14px;
    font-family: "Regular";
    margin-bottom: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.home-contact2-slider-text a {
    font-size: 18px;
    font-family: "Medium";
    list-style: circle;
    display: flex;
    align-items: center;
    color: #000;
}

.home-contact2-slider-text a small {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--redColor);
    margin-right: 8px;
    display: flex;
}

.home-contact2-box {
    padding-top: 90px;
    transition: all ease 0.5s;
}

.home-contact2-box-text {
    height: 270px;
    background: #E0D2C2;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 25px 35px;
    color: var(--blackColor);
    transition: all ease 0.5s;
}

.home-contact2-box-text .home-contact2-box-icon {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background: var(--redColor);
    margin-bottom: 15px;
}

.home-contact2-box-text .home-contact2-box-icon img {
    max-width: 50px;
}

.home-contact2-box-text h5 {
    font-size: 18px;
    font-family: "Medium";
    margin-bottom: 15px;
}

.home-contact2-box-text p {
    font-size: 15px;
    font-family: "Regular";
    transition:all ease 0.5s;
}

.home-contact2-box-image {
    height: 235px;
    display: flex;
    justify-content: center;
    align-items: end;
    background: #E0D2C2;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    overflow: hidden;
}

/* 
.home-contact2-box-image img {
    width: 100%;
} */

.home-contact2-box:hover {
    padding-top: 0;
}

.home-contact2-box:hover .home-contact2-box-text {
    height: 360px;
    background: var(--redColor);
    color: var(--whiteColor);
}
.home-contact2-box:hover .home-contact2-box-text p{
    font-size:18px;
}

/*---HomeCorporate2---*/
.home-corporate2 {
    padding-top: 285px;
    padding-bottom: 125px;
}

.home-corporate2-wrapper {
    width: 100%;
    background: var(--redColor);
    border-radius: 25px;
    position: relative;
    padding: 60px 30px;
    min-height: 330px;
}

.home-corporate2-image {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 55;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-corporate2-image img {
    max-width: 100%;
}

.home-corporate2-content {
    position: relative;
    z-index: 65;
}

.home-corporate2-content h5 {
    font-size: 39px;
    font-family: "Medium";
    color: var(--whiteColor);
    margin-bottom: 15px;
    padding-left: 35px;
}

.home-corporate2-box {
    padding: 0 35px;
    background: #FFFFFF30;
    backdrop-filter: blur(30px);
    border-radius: 25px;
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
}

.home-corporate2-box .col-md-4 {
    color: var(--whiteColor);
    font-size: 21px;
    font-family: "Medium";
    line-height: 25px;
    height: 100%;
    transition: all ease 0.5s;
}

.home-corporate2-box .col-md-4:hover {
    font-size: 25px;
    font-family: "Semibold";
}

/*---HomeSocialFacility---*/
.home-social-facility-title {
    text-align: center;
    color: var(--blackColor);
    margin-bottom: 100px;
}

.home-social-facility-title h5 {
    font-size: 45px;
    font-family: "Medium";
    margin-bottom: 15px;
}

.home-social-facility-title p {
    font-size: 18px;
    font-family: "Regular";
}

.home-social-facility-slider-area {
    position: relative;
    padding-left: 60px;
    height: 470px;
}

.home-social-facility-slider-area-bg {
    position: absolute;
    top: -35px;
    left: 0;
    width: 60%;
    height: 470px;
    background: var(--blackColor);
    border-radius: 25px;
}

.social-facility-box {
    height: 388px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
}

.social-facility-box img {
    border-radius: 25px;
    overflow: hidden;
}

/*---Footer---*/
footer {
    margin-top: -200px;
    padding: 350px 0 50px 0;
    background-color: #E1E2E3;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 450px;
}

.footer-top-box {
    position: relative;
    min-height: 110px;
    background: var(--blackColor);
    padding: 25px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: start;
    height: 100%;
}

.footer-top-box-icon {
    margin-right: 25px;
}

.footer-top-box-icon img {
    max-width: 100%;
}

.footer-form {
    width: calc(100% - 100px);
}

.footer-top-box-text h5,
.footer-form h5 {
    font-size: 18px;
    font-family: "Semibold";
    color: #E1E2E3;
    text-align: center;
    margin-bottom: 5px;
}

.footer-top-box-text p {
    font-size: 13px;
    font-family: "Regular";
    color: #E1E2E3;
}

.footer-form h5 {
    text-align: start;
}

.footer-form-input-group input {
    width: 100%;
    height: 25px;
    background: transparent;
    background: transparent;
    outline: none;
    font-size: 13px;
    font-family: "Regular";
    border: none;
    border-bottom: 1px solid var(--whiteColor);
    color: #E1E2E3;
    margin-bottom: 10px;
}

.footer-form-input-group input::placeholder {
    color: #E1E2E3;
}

.footer-form .form-check {
    display: flex;
    align-items: center;
}

.footer-form .form-check-input {
    width: 14px;
    height: 14px;
    border: 1px solid #E1E2E3;
    background: transparent;
    outline: none;
    box-shadow: none;
    margin-right: 5px;
}

.footer-form .form-check-label {
    font-size: 8px;
    font-family: "Regular";
    color: #E1E2E3;
}

.footer-form button {
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: var(--redColor);
    color: #E1E2E3;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 25px;
    z-index: 99;
}

.footer-bottom {
    margin-bottom: 50px;
}

.footer-company-logos img {
    width: 100%;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
}

.footer-menu ul li {
    text-align: start;
}

.footer-menu ul li a {
    color: var(--blackColor);
    font-family: "Regular";
    text-align: start;
}

.footer-contact-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.footer-contact-top .footer-phone {
    font-size: 30px;
    font-family: "Semibold";
    color: var(--blackColor);
    transition: all ease 0.5s;
}

.footer-contact-top .footer-phone:hover {
    color: var(--redColor);
}

.footer-contact-top ul {
    display: flex;
    align-items: center;
}

.footer-contact-top ul li {
    margin-right: 4px;
}

.footer-contact-top ul li:last-child {
    margin-right: 0;
}

.footer-contact-top ul li a {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #B5B5B5;
    color: #E1E2E3;
    font-size: 13px;
}

.footer-contact p {
    font-size: 15px;
    font-family: "Regular";
    color: var(--blackColor);
}

.footer-contact2 p {
    font-family: "Regular";
    color: var(--blackColor);
    margin-bottom: 5px;
}

.footer-contact2 a {
    font-family: "Semibold";
    color: var(--blackColor);
}

.footer-producer {
    text-align: center;
}

.footer-producer a {
    font-size: 17px;
    font-family: "Regular";
    color: var(--blackColor);
}

/*---SampleOffices---*/
.sample-office-banner {
    margin-bottom: 60px;
}

.sample-office-banner-wrapper {
    height: 550px;
    background-image: url(../images/sample-office-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.sample-office-banner-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000043;
    z-index: 1;
}

.sample-office-banner-wrapper .sample-office-banner-bottom,
.sample-office-banner-wrapper .sample-office-banner-top {
    position: relative;
    z-index: 50;
}

.sample-office-banner-top {
    padding: 0 100px;
    margin-bottom: 40px;
}

.sample-office-banner-content form {
    margin-bottom: 25px;
}

.sample-office-banner-content form input {
    width: 200px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid var(--whiteColor);
    outline: none;
    background: transparent;
    color: var(--whiteColor);
    background: #FFFFFF30;
    backdrop-filter: blur(30px);
    padding-left: 15px;
    font-size: 11px;
    font-family: "Regular";
}

.sample-office-banner-content form input::placeholder {
    color: var(--whiteColor);
}

.sample-office-banner-content h5 {
    font-size: 45px;
    font-family: "Regular";
    color: var(--whiteColor);
}

.sample-office-banner-content p {
    font-size: 18px;
    font-family: "Regular";
    color: var(--whiteColor);
}

.sample-office-banner-box {
    width: 100%;
    height: 135px;
    color: var(--whiteColor);
    background: #FFFFFF30;
    backdrop-filter: blur(30px);
    padding: 25px 30px;
    border-radius: 25px;
    overflow: hidden;
}

.sample-office-banner-box h5 {
    font-size: 41px;
    font-family: "Semibold";
}

.sample-office-banner-box p {
    font-size: 23px;
    font-family: "Regular";
    margin-bottom:0;
}

.sample-office-gallery {
    background-image: url(../images/home-contact2Bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-bottom: 120px;
}

.sample-office-gallery-title {
    text-align: center;
    color: var(--blackColor);
    margin-bottom: 80px;
}

.sample-office-gallery-title h5 {
    font-size: 45px;
    font-family: "Medium";
    margin-bottom: 20px;
}

.sample-office-gallery-title p {
    font-size: 18px;
    font-family: "Regular";
}

.sample-office-gallery-image {
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .sample-office-gallery-image img {
    width: 100%;
} */

.sample-office-gallery-image2 {
    margin-bottom: 15px;
}

.sample-office-contact {
    position: relative;
    background-image: url(../images/home-contact2Bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.sample-office-contact .myContainerM {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 1px 1px 16px 1px #00000016;
}

.sample-office-contact .row,
.sample-office-contact .col-lg-7,
.sample-office-contact .col-lg-5 {
    margin: 0;
    padding: 0;
}

.sample-office-contact-left,
.sample-office-contact-right {
    padding: 50px;
    height: 100%;
}

.sample-office-contact-left {
    background: #E1E2E3;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.sample-office-contact-left p {
    font-size: 25px;
    font-family: "Regular";
    color: var(--redColor);
    margin-bottom: 60px;
}

.sample-office-contact-left h5 {
    font-size: 45px;
    font-family: "Semibold";
    color: var(--blackColor);
    margin-bottom: 60px;
}

.sample-office-contact-left span {
    font-size: 18px;
    font-family: "Regular";
    color: var(--blackColor);
    margin-bottom: 15px;
    display: block;
}

.sample-office-contact-left a {
    font-size: 30px;
    font-family: "Semibold";
    color: var(--blackColor);
    transition: all ease 0.5s;
}

.sample-office-contact-left a:hover {
    color: var(--redColor);
}

.sample-office-contact-right {
    background: #E1E2E3;
    padding: 0;
}

.sample-office-contact-right form {
    background: var(--blackColor);
    padding: 50px;
    border-radius: 25px;
    overflow: hidden;
}

.sample-office-contact-right form h5 {
    font-size: 18px;
    font-family: "Semibold";
    color: var(--redColor);
}

.sample-office-contact-right form p {
    font-size: 12px;
    font-family: "Regular";
    color: var(--whiteColor);
}

.sample-office-contact-right form .form-check {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.sample-office-contact-right form .form-check-input {
    width: 30px;
    height: 25px;
    box-shadow: none;
    background-color: #EDEDED;
    border: none;
    border-radius: 0;
    margin-right: 5px;
    margin-top: 0;
}

.sample-office-contact-right form .form-check-input:checked {
    background-color: var(--redColor);
}

.sample-office-contact-right form .form-check-label {
    font-size: 15px;
    font-family: "Medium";
    color: var(--whiteColor);
}

.sample-office-contact-right form .home-application-form-span {
    color: var(--whiteColor);
}

.sample-office-contact-right form .home-application-form-button button {
    width: 100%;
}
.sample-office-contact-right form .home-application-form-button button:hover{
    background:var(--redColor);
    color:var(--whiteColor);
}

/*---FloorPlan---*/
.floor-plan-banner {
    background-image: url(../images/kat-plani-bg.png);
    background-repeat: no-repeat;
    min-height: 1200px;
    display: flex;
    position: relative;
    z-index: 25;
}

.floor-plan-banner-title,
.floor-plan-content {
    position: relative;
    z-index: 55;
}

.floor-plan-banner-title {
    margin-top: 250px;
    text-align: center;
    color: var(--whiteColor);
    padding: 0 120px;
}

.floor-plan-banner-title h5 {
    font-size: 45px;
    font-family: "Medium";
    margin-bottom: 70px;
}

.floor-plan-banner-title p {
    font-size: 18px;
    font-family: "Regular";
}

.floor-plan-box {
    position: relative;
    margin-bottom: 75px;
}

.floor-plan-box-image {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.floor-plan-box-image img {
    max-width: 100%;
}

.floor-plan-box-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 190px;
    min-height: 240px;
    background: #db2727c4;
    backdrop-filter: blur(30px);
    padding: 25px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    color: var(--whiteColor) !important;
}

.floor-plan-box-text h5 {
    font-size: 30px;
    font-family: "Bold";
    margin-bottom: 20px;
}

.floor-plan-box-text .floor-plan-box-detail {
    display: flex;
    align-items: center;
}

.floor-plan-box-text .floor-plan-box-detail img {
    max-width: 100%;
    margin-right: 5px;
}

.floor-plan-box-text .floor-plan-box-detail p {
    font-size: 15px;
    font-family: "Regular";
    margin: 0;
    padding: 0;
}

/*---FloorPlanDetail---*/
.floor-plan-detail-banner-wrapper {
    height: 550px;
    background-image: url(../images/kat-plani-detay.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 50px 100px;
}

.floor-plan-detail-banner-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000043;
    z-index: 1;
}

.floor-plan-detail-banner-title {
    position: relative;
    z-index: 50;
    text-align: center;
    color: var(--whiteColor);
}

.floor-plan-detail-banner-title h5 {
    font-size: 45px;
    font-family: "Medium";
    margin-bottom: 70px;
}

.floor-plan-detail-banner-title p {
    font-size: 18px;
    font-family: "Regular";
}

.floor-plan-detail {
    margin-top: -170px;
    position: relative;
    z-index: 55;
}

.floor-plan-detail .myContainerM {
    position: relative;
}

.floor-plan-detail-image {
    margin-top: 100px;
}

.floor-plan-detail-image img {
    width: 100%;
}

.floor-plan-detail-table-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.floor-plan-detail-table {
    padding: 35px;
    background: #FFFFFF50;
    backdrop-filter: blur(50px);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 1px 1px 10px 1px #00000009;
}

.floor-plan-detail-table h5 {
    font-size: 46px;
    font-family: "Bold";
    color: var(--whiteColor);
    margin-bottom: 30px;
}

.floor-plan-detail-table table thead th {
    min-width: 125px;
    font-size: 20px;
    font-family: "Semibold";
    color: var(--blackColor);
    text-align: center;
}

.floor-plan-detail-table table tbody tr {
    border-bottom: 2px solid #D8D8D8;
}

.floor-plan-detail-table table tbody tr td {
    font-size: 20px;
    font-family: "Regular";
    color: var(--blackColor);
    padding: 10px 0;
    text-align: center;
}
.floor-plan-detail-table table tbody tr td img{
    width:30px;
}
.floor-plan-detail-application {
    display: flex;
    align-items: center;
}

.floor-plan-detail-application button {
    width: 43px;
    height: 43px;
    border-radius: 100%;
    background: var(--redColor);
    color: var(--whiteColor);
    border: none;
    font-size: 18px;
    margin-right: 8px;
    transition: all ease 0.5s
}

.floor-plan-detail-application button.active {
    transform: rotate(-90deg);
}

.floor-plan-detail-application span {
    font-size: 16px;
    font-family: "Medium";
    color: var(--whiteColor);
    background-color: var(--blackColor);
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DBD4D4;
    border-radius: 11px;
    cursor: pointer;
    transition: all ease 0.5s;
}

.floor-plan-detail-application span:hover,
.floor-plan-detail-application span.active {
    background-color: var(--redColor);
}

.floor-plan-detail-application-form {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--whiteColor);
    padding: 30px 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 1px 1px 26px 1px #00000026;
    display: none;
}

.floor-plan-detail-application-form.active {
    display: block;
}

.floor-plan-detail-application-form form h5 {
    font-size: 25px;
    font-family: "Semibold";
    color: var(--redColor);
    margin-bottom: 15px;
}

.floor-plan-detail-application-form form p {
    font-size: 15px;
    font-family: "Regular";
    color: var(--blackColor);
    margin-bottom: 30px;
}

.floor-plan-detail-application-form form .form-check {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.floor-plan-detail-application-form form .form-check-input {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #EDEDED;
    outline: none;
    border: none;
    box-shadow: none;
    margin-right: 5px;
    margin-top: 0;
}
.floor-plan-detail-application-form form .form-check-input:checked{
    background-color:var(--redColor);
}

.floor-plan-detail-application-form form .form-check-label {
    font-size: 15px;
    font-family: "Medium";
    color: var(--redColor);
}

.floor-plan-detail-application-form form .home-application-form-span {
    margin-bottom: 10px;
}

.floor-plan-detail-application-form-close {
    display: flex;
    justify-content: end;
}

.floor-plan-detail-application-form-close span {
    cursor: pointer;
    font-size: 16px;
}

/*---Contact---*/
.contact-banner {
    margin-bottom: 40px;
}

.contact-banner-wrapper {
    height: 415px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.contact-banner-wrapper .row,
.contact-banner-wrapper .col-lg-8,
.contact-banner-wrapper .col-lg-4 {
    margin: 0;
    padding: 0;
}

.contact-banner-map {
    position: relative;
}

.contact-banner-map iframe {
    width: 100%;
    min-height: 415px;
    display: block;
}

.contact-banner-map-buttons {
    position: absolute;
    top: calc(50% - 90px);
    left: calc(47%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 15;
}

.contact-banner-map-buttons span {
    width: 130px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--whiteColor);
    position: relative;
    border-radius: 12px;
}

.contact-banner-map-buttons span i {
    position: absolute;
    bottom: -18px;
    left: 10%;
    color: var(--whiteColor);
    font-size: 40px;
    transform: rotate(-5deg);
}

.contact-banner-map-buttons a {
    width: 160px;
    height: 60px;
    background: var(--redColor);
    color: var(--whiteColor);
    border-radius: 11px;
    font-size: 15px;
    font-family: "Medium";
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
}

.contact-banner-map-buttons a:hover {
    background: var(--blackColor);
}

.contact-banner-text {
    background: #E1E2E3;
    height: 100%;
    padding: 35px 70px;
    display: flex;
    flex-direction: column;
}

.contact-banner-text h5 {
    font-size: 30px;
    font-family: "Semibold";
    color: #000;
}

.contact-banner-text p {
    font-size: 18px;
    font-family: "Regular";
    color: #000;
    margin-bottom: 40px;
}

.contact-banner-text a {
    position: relative;
    z-index: 55;
    font-size: 18px;
    font-family: "Regular";
    color: #000;
    margin-bottom: 10px;
}

.contact-banner-text .contact-banner-text-phone {
    font-size: 29px;
    font-family: "Bold";
    margin-bottom: 0 !important;
}

.contact-banner-image {
    position: absolute;
    left: 47%;
    bottom: 0;
}

.contact-banner-image img {
    max-width: 100%;
    filter: grayscale(1);
}

body.bg {
    background-image: url(../images/home-contact2Bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact {
    position: relative;
    z-index: 55;
}

.contact-form-wraper {
    background: var(--whiteColor);
    border-radius: 25px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 1px 1px 12px 1px #00000012;
}

.contact-form h5 {
    font-size: 30px;
    font-family: "Semibold";
    color: #000;
}

.contact-form p {
    font-size: 18px;
    font-family: "Regular";
    color: #000;
    margin-bottom: 40px;
}

.contact-form .form-check {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
}

.contact-form .form-check-input {
    width: 25px;
    height: 25px;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #EDEDED;
    margin-right: 5px;
    border-radius: 0;
    margin-top: 0;
}
.contact-form .form-check-input:checked{
    background-color:var(--redColor);
}

.contact-form .form-check-label {
    font-size: 15px;
    font-family: "Medium";
    color: var(--redColor);
    width: calc(100% - 30px);
}

/*---SocialFacility---*/
.social-facility-banner {
    background-image: url(../images/social-facility-bg.png);
    min-height: 1050px;
}

.social-facility-banner .home-contact2-box .home-contact2-box-text {
    background-color: #FFFFFF50;
    backdrop-filter: blur(50px);
    color: var(--whiteColor);
}

.social-facility-banner .home-contact2-box:hover .home-contact2-box-text {
    background-color: var(--redColor);
}

/*---Gallery---*/
.gallery-banner {
    background-image: url(../images/gallery-bg.png);
    min-height: 1300px;
}

.gallery-banner .floor-plan-banner-title {
    margin-bottom: 250px;
}

.gallery-content .nav-tabs {
    border: none;
    margin-bottom: 60px;
}

.gallery-content .nav-link {
    background-color: #FFFFFF50;
    backdrop-filter: blur(50px);
    color: var(--whiteColor);
    border: none;
    width: 195px;
    height: 85px;
    margin-right: 15px;
    font-size: 25px;
    font-family: "Medium";
    border-radius: 25px;
    overflow: hidden;
}

.gallery-content .nav-link.active {
    background-color: #FFFFFF50;
    backdrop-filter: blur(50px);
    color: var(--whiteColor);
    border: none;
}

.gallery-content .nav-link:hover {
    border: none;
    background-color: var(--redColor);
}

.gallery-box {
    margin-bottom: 25px;
}

.gallery-box a {
    max-height: 465px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
}

.gallery-box img {
    width: 100%;
}

/*---MiniMenu---*/
.header-mini-menu-btn {
    display: none;
    flex-direction: column;
    align-items: end;
}

.header-mini-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--whiteColor);
    margin-bottom: 3px;
    transition: all ease 0.5s;
}

.header-mini-menu-btn span:nth-child(3) {
    width: 20px;
}

.header-mini-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg);
}

.header-mini-menu-btn.active span:nth-child(2) {
    transform: rotate(45deg);
    margin-top: -5px;
}

.header-mini-menu-btn.active span:nth-child(3) {
    display: none;
}

.mini-menu {
    position: absolute;
    top: -100%;
    left: 0;
    background: #ffffff30;
    backdrop-filter: blur(30px);
    z-index: 999;
    width: 100vw;
    padding: 15px;
    display: none;
    transition: all ease 0.5s;
}

.mini-menu.active {
    top: 105px;
}

.mini-menu ul li {
    margin-bottom: 5px;
}

.mini-menu ul li:last-child {
    margin-bottom: 0;
}

.mini-menu ul li a {
    color: var(--whiteColor);
    font-family: "Regular";
    font-size: 18px;
}

header.active .header-mini-menu-btn span {
    background: var(--blackColor);
}
.swal2-container{
    font-family:"Medium";
}
/*---Responsive---*/
@media only screen and (max-width:1750px) {
    .header-logo a img {
        max-width: 300px;
    }
}

@media only screen and (max-width:1700px) {
    .myContainerM {
        margin: 0 120px;
    }

    .home-slider .carousel-caption {
        left: 120px;
        right: 120px;
    }

    .home-service-text {
        margin-right: 120px;
    }

    .home-application {
        right: 120px;
    }
}

@media only screen and (max-width:1550px) {
    .home-slider .carousel-caption {
        bottom: 50%;
    }

    .header-logo a img {
        max-width: 250px;
    }

    .myContainerM {
        margin: 0 60px;
    }

    .home-slider .carousel-caption {
        left: 60px;
        right: 60px;
    }

    .home-service-text {
        margin-right: 60px;
    }

    .home-application {
        right: 60px;
    }
}

@media only screen and (max-width:1450px) {
    .header-right .header-nav ul {
        gap: 20px;
    }

    .footer-logo img {
        max-width: 300px;
    }

    /*---FontSize---*/
    .home-slider .carousel-caption h5,
    .home-corporate-logo h5,
    .home-corporate-box-text h5,
    .home-contact-text h5,
    .home-service-text h5,
    .home-project-info-title h3,
    .home-contact2-title h3,
    .home-social-facility-title h5,
    .sample-office-banner-content h5,
    .sample-office-banner-box h5,
    .sample-office-gallery-title h5,
    .sample-office-contact-left h5,
    .floor-plan-banner-title h5,
    .floor-plan-detail-banner-title h5,
    .floor-plan-detail-table h5 {
        font-size: 30px;
    }

    .contact-banner-text .contact-banner-text-phone,
    .contact-form h5 {
        font-size: 25px;
    }

    .home-corporate .row .col-lg-4:hover .home-corporate-box p,
    .home-contact2-center a,
    .home-corporate2-box .col-4:hover,
    .sample-office-contact-left p,
    .floor-plan-box-text h5,
    .floor-plan-detail-application-form form h5,
    .contact-banner-text h5 {
        font-size: 22px;
    }

    .home-slider .carousel-caption p,
    .sample-office-banner-box p {
        font-size: 18px;
    }

    .home-contact-text p,
    .home-project-info-title p,
    .home-contact2-title p,
    .home-corporate2-box .col-4,
    .home-social-facility-title p,
    .sample-office-banner-content p,
    .sample-office-gallery-title p,
    .sample-office-contact-right form h5,
    .floor-plan-banner-title p,
    .floor-plan-detail-banner-title p,
    .contact-banner-text p,
    .contact-banner-text a,
    .home-corporate-box-text p,
    .contact-form p {
        font-size: 16px;
    }

    .home-project-info-box-bottom p,
    .home-contact2-box-text p,
    .sample-office-contact-right form .form-check-label {
        font-size: 13px;
    }

    .footer-contact2 a {
        overflow-wrap: break-word;
        word-break: break-all;
    }
}

@media only screen and (max-width:1250px) {
    .header-right .header-nav ul li a {
        font-size: 13px;
    }

    .header-logo a img {
        max-width: 200px;
    }

    .home-project-info-box-bottom {
        padding-left: 0;
    }

    .myContainerM {
        margin: 0 15px;
    }

    .home-slider .carousel-caption {
        left: 15px;
        right: 15px;
    }

    .home-service-text {
        margin-right: 15px;
    }

    .home-application {
        right: 15px;
    }

    .home-project-info-box {
        height: 250px;
    }

    .home-project-info-content .row .col-lg-3:hover .home-project-info-box {
        height: 350px;
    }

    .contact-banner-image {
        display: none;
    }
}

@media only screen and (max-width:991px) {
    header {
        margin: 30px 0;
        height: 45px;
    }

    .header-right {
        display: none;
    }

    .header-mini-menu-btn {
        display: flex;
    }

    .mini-menu {
        display: block;
    }
    .header-content{
        align-items:center;
    }
    .home-slider .home-slider-right {
        justify-content: start;
    }

    .home-slider-down-icon {
        margin-top: 15px;
    }

    .home-corporate-box {
        margin-bottom: 50px;
    }

    .home-corporate .row .col-lg-4:hover .home-corporate-box {
        min-height: auto;
        height: auto;
    }

    .home-contact {
        height: auto;
        margin: 90px 0;
    }

    .home-contact .row {
        border-radius: 25px;
        overflow: hidden;
    }

    .home-contact-text {
        height: auto;
    }

    .home-project-info-title {
        padding: 0;
    }

    .home-project-info-content {
        height: auto;
    }

    .home-project-info-box {
        margin-bottom: 50px;
    }

    .home-contact2-title {
        padding: 0;
    }

    .home-contact2-slider .carousel-indicators {
        flex-direction: column;
        margin-bottom: 50px !important;
        gap: 30px;
    }

    .home-contact2-center {
        min-height: auto;
    }

    .home-contact2-center .home-contact2-center-image1,
    .home-contact2-center .home-contact2-center-image2 {
        display: none;
    }

    .home-contact2-center a {
        position: relative;
        left: 0;
        height: 20px;
        width: calc(100% - 30px);
        bottom: 0;
        margin-bottom: 50px;
    }

    .home-contact2-box {
        margin-bottom: 50px;
    }

    .home-contact2-box-image img {
        width: 100%;
    }

    .home-corporate2 {
        padding-top: 250px;
    }

    .home-corporate2-box {
        margin-bottom: 50px;
    }

    .home-corporate2-image {
        top: -200px;
        bottom: auto;
    }

    .footer-logo,
    .footer-top-box,
    .footer-company-logos,
    .footer-menu,
    .footer-contact {
        margin-bottom: 25px;
    }

    .footer-top-box {
        height: auto;
    }

    .footer-company-logos img {
        width: auto;
    }

    .footer-contact-top {
        justify-content: start;
        gap: 30px;
    }

    .footer-menu ul {
        justify-content: start;
        gap: 15px;
    }

    .sample-office-banner-top {
        padding: 0 45px;
    }

    .sample-office-gallery-image {
        margin-bottom: 25px;
    }

    .sample-office-contact-left {
        border-radius: 0;
    }

    .floor-plan-banner-title {
        padding: 0 15px;
    }

    .floor-plan-detail-banner-wrapper {
        padding: 15px;
    }

    .floor-plan-detail {
        margin-top: 0;
    }

    .floor-plan-detail-image img {
        width: auto;
        max-width: 100%;
    }

    .floor-plan-detail-table-wrapper {
        position: relative;
        align-items: start;
    }

    .floor-plan-detail-table {
        background: #00000030;
        overflow-x: scroll;
        max-width: 100%;
    }

    .floor-plan-detail-application-form {
        top: 50px;
        position: fixed;
        z-index: 999;
    }

    .contact-banner-wrapper {
        height: auto;
    }

    .social-facility-banner .home-contact2-box .home-contact2-box-text {
        background: #00000050;
    }

    .home-slider {
        min-height: 2000px;
        background-color: #0a0c0a;
    }

    .home-contact2-slider .carousel-indicators {
        border: none;
    }

}

@media only screen and (max-width:768px) {
    .home-slider .home-slider-link {
        flex-direction: column;
        align-items: start;
    }

    .home-slider .home-slider-link a {
        font-size: 16px;
    }

    .home-slider .carousel-caption .row .col-lg-7 {
        display: none;
    }

    .home-slider .home-slider-right {
        flex-direction: column;
        align-items: start;
    }

    .home-application {
        position: fixed;
        width: 100vw;
        height: 100vh;
        margin: 0;
        top: 0;
        overflow-y: scroll;
        z-index: 999;
        right: 0;
        left: 0;
        border-radius: 0;
        bottom: 0;
    }

    .home-application-form .form-check label {
        width: calc(100% - 30px);
    }

    .home-application-close {
        display: block;
    }

    .home-service-box-text {
        left: 15px;
        right:15px;
    }

    .owl-carousel-home-service {
        margin-bottom: 50px;
    }

    .home-service-text {
        margin: 0 15px;
    }

    .home-corporate2-box {
        height: auto;
        padding: 35px;
    }

    .sample-office-banner-wrapper {
        height: auto;
    }

    .sample-office-banner-top {
        padding: 0 15px;
    }

    .sample-office-contact-right form,
    .sample-office-contact-left {
        padding: 15px;
    }

    .floor-plan-detail-application-form {
        top: 0;
        width: 100vw;
        height: 100vh;
        overflow: scroll;
        border-radius: 0;
    }

    .contact-banner-map-buttons {
        flex-direction: column;
        left: calc(40%);
    }

    .contact-banner-map-buttons span {
        margin-bottom: 25px;
    }

    .contact-banner-text {
        padding: 35px 15px;
    }

    .gallery-content .nav-link {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:500px) {}