@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300&display=swap');
:root {
    box-sizing: border-box;
    --primary: #fff;
    --secondary: black;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(#ebdfdf, #6d7197);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
}

/* Preloader */
.ctn-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.ctn-preloader .loader-section {
    background-color: #000;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
    left: 0;
}

.ctn-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.animation-preloader img {
   width: 600px;
   height: auto;
}

@media only screen and (max-width: 616px) {
    .animation-preloader img {
        width: 500px;
        height: auto;
     }
}

@media only screen and (max-width: 510px) {
    .animation-preloader img {
        width: 400px;
        height: auto;
     }
}

@media only screen and (max-width: 403px) {
    .animation-preloader img {
        width: 350px;
        height: auto;
     }
}

@media only screen and (max-width: 356px) {
    .animation-preloader img {
        width: 300px;
        height: auto;
     }
}


@media only screen and (max-width: 300px) {
    .animation-preloader img {
        width: 270px;
        height: auto;
     }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}





/* Background */

#container {
    position: fixed;
    height: 100%;
    width: 100%;
}

#output {
    width: 100%;
    height: 100%;
}


/* LANGUAGE */

.change-language>div {
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.6), 0 0 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.change-language>div:hover {
    color: #fff;
    background: rgb(87, 85, 85);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.5);
}

.change-language {
    position: fixed;
    bottom: 7vw;
    right: 2vw;
    z-index: 9;
}

@media only screen and (max-width: 1430px) {
    .change-language {
        bottom: 13vw;
    }
}

@media only screen and (max-width: 630px) {
    .change-language {
        bottom: 25vw;
    }
}

.act34 {
    animation: adr33 1.2s infinite alternate-reverse;
}

@keyframes adr33 {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}


/* TOP */

.ceing {
    box-shadow: 5px 5px 10px rgb(163 177 198 / 60%), -5px -5px 10px rgb(255 255 255 / 50%);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    font-weight: 600;
}


/* Navigation */

/* Navigation */

header {
    display: -webkit-flex;
    justify-content:flex-end;
    padding: 2em 1em;
    height: 100vh;
}

.hamburger {
    --hm-width: 2em;
    --hm-height: 0.2em;
    --spacing: calc(var(--hm-width) / 4);
    width: var(--hm-width);
    height: var(--hm-height);
    background-color: var(--primary);
    position: fixed;
    transition: transform 0.8s ease-in-out;
    z-index: 3;
}

.hamburger::after,
.hamburger::before {
    content: "";
    width: 50%;
    height: inherit;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease-in-out;
}

.hamburger::after {
    top: calc(-1 * var(--spacing));
}

.hamburger::before {
    top: var(--spacing);
    left: 50%;
}

.close.hamburger::before,
.close.hamburger::after {
    left: 50%;
    transform: translate(-50%) rotate(-450deg);
    background-color: white;
}

.close.hamburger {
    transform: rotate(45deg);
    background-color: white;
}

.nav2 {
    position:fixed;
    left: 5rem;
    z-index: 1;
}

@media only screen and (max-width: 1440px) {
    .nav2 {
        left: 1rem;
    }
}


.nav2 h1 {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .nav2 {
        display: none;
    }
}

.menu2 li {
    margin: 1rem;
    list-style: none;
    transition: all 0.3s ease;
}

.menu2 li a {
    font-size: 1.2rem;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media only screen and (max-width: 1440px) {
    .menu2 li a{
        font-size: 0.7rem;
    }
}


.menu2 li a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.menu-item2 {
    color: #fff;
}

.nav1 {
    position: absolute;
    background-color: var(--secondary);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
}

.reveal-nav {
    transform: scaleX(1);
    opacity: 1;
}

.menu {
    list-style: none;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-size: calc(0.5rem + 2vw);
    text-align: center;
    opacity: 0;
    transform: translate(-20em);
    display: block;
    transition: transform 0.8s ease-in-out, opacity 0.3s ease-in;
}

.menu li+li {
    margin-top: 2em;
}

.reveal-items .menu-item {
    transform: translate(0);
    opacity: 1;
}

.reveal-items li:nth-child(1) .menu-item {
    transition-delay: 0.1s;
}

.reveal-items li:nth-child(2) .menu-item {
    transition-delay: 0.2s;
}

.reveal-items li:nth-child(3) .menu-item {
    transition-delay: 0.3s;
}

.reveal-items li:nth-child(4) .menu-item {
    transition-delay: 0.4s;
}

.reveal-items li:nth-child(5) .menu-item {
    transition-delay: 0.5s;
}

.reveal-items li:nth-child(6) .menu-item {
    transition-delay: 0.6s;
}

.reveal-items li:nth-child(7) .menu-item {
    transition-delay: 0.7s;
}



/* Backgroun image */

.zhao {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    background: url("../img/earth.jpg") 0px 0px no-repeat;
    background-size: 200% 100%;
}


.zhao-text {
    color: #fff;
    font-size: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1000px;
}

@media only screen and (max-width: 1032px) {
    .zhao-text {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 980px) {
    .zhao-text {
        font-size: 5rem;
        margin-top: -9.5rem;
    }
}

@media only screen and (max-width: 724px) {
    .zhao-text {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 578px) {
    .zhao-text {
        font-size: 10.5vw;
    }
}


/* COOPERATE */

.active::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.active::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.active::after,
.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #000;
    opacity: 0.15;
    box-sizing: border-box;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }
    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}





/* Estate 1 */
.Estate {
    position: relative;
}

.Estate .EstateText {
  max-width: 800px;
  font-size: 22px;
  line-height: 3em;
  position: relative;
  margin: 5rem auto;
}


@media only screen and (max-width: 768px) {
    .Estate .EstateText {
        max-width: 500px;
        font-size: 18px;
      }
}

@media only screen and (max-width: 518px) {
    .Estate .EstateText {
        max-width: 400px;
      }
}
@media only screen and (max-width: 425px) {
    .Estate .EstateText {
        max-width: 360px;
        font-size: 15px;
      }
}

@media only screen and (max-width: 370px) {
    .Estate .EstateText {
        max-width: 300px;
       
      }
}

@media only screen and (max-width: 310px) {
    .Estate .EstateText {
        max-width: 270px;
       
      }
}

.mySlides {display: none}
img {vertical-align: middle;}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

@media only screen and (max-width: 768px) {
    .slideshow-container {
        max-width: 700px;
      }
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);
}

@media only screen and (max-width: 425px) {
    .prev, .next {
        padding: 5px;
      }
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activ, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}




/* Estate Row */

.EstateRow {
    position: relative;
    margin-top: 10rem;
}
.row {
    margin: 8px 16px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .column {
    float: left;
    width: 25%;
    
  }



  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .content {
    background-color: white;
    padding: 1rem;
    border: 1.5px solid rgb(160, 151, 151);
    cursor: pointer;
    transition: 1.5s;
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
  }

  .content:hover{
    background-color: #e0e0e0;
  }


  .content .ContentBottom {
    display: flex;
    padding: 1rem;  
  }

  .content .ContentBottom h3 {
    font-size: 1.2rem;
    color: #000;
    letter-spacing: 0.09em;
  }
  .content .ContentBottom i {
    font-size: 1.8rem;
    margin-left: 1.6rem;
    position: relative;
    
  }

  .ac::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
     animation: inner-ripple 2000ms linear infinite;
}

.ac::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.ac::after,
.ac::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #000;
    opacity: 0.15;
    box-sizing: border-box;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }
    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

  
  @media screen and (max-width: 425px) {
    .content .ContentBottom h3 {
        font-size: 1.2rem;
      }
      .content .ContentBottom i {
        font-size: 1.2rem;
        margin-left: 1rem;
        margin-top: 0.5rem;
      }
  }
  .content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
  }



  @media screen and (max-width: 1024px) {
    .column {
      width: 50%;
    }
  }
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }


/* Estate Row2 */

.EstateRow2 {
    position: relative;
    margin-top: 10rem;
}

.EstateRow2 h1 {
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
}

.row2 {
    margin: 8px 16px;
    justify-content: center;
    display: flex;
    padding-bottom: 1%;
  }

  .row2,
.row2 > .column2 {
  padding: 8px;  

}
.EstateRow2, .row2 > .content2 {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); 
}
.row-container,.grid {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); 
}


.EstateRowPics,.EstateRowPicsColumn{
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0); 
}

  .column2 {
    width: 21%;
  }

  .content2 {
    background-color: #EFEFEF;
    padding: 1rem;
    height: 420px;
    border-radius: 25px;
    padding: 8px;  
  }
  .content2 .ContentTop2 {
    padding: 1rem;
    cursor: pointer;
  }
  .content2 .ContentTop2 h3 {
    font-size: 1.2rem;
    color: #000;
    justify-content: center;
    display: flex;
    letter-spacing: 0.09em;
  }

  .content2 img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 280px;
    margin-top: 3rem;
    object-fit: contain;
    cursor: pointer;
  }

.contentBottomText2{
    text-align: center;
     font-size: 28px;
     margin-top: 10rem;
  }
  @media screen and (max-width: 1024px) {

    .EstateRow2 h1 {
        text-align: center;
        color: #000;
        font-size: 2rem;
        font-weight: 700;
    }
    
    .row2 {
        margin: 18px 1px;
        justify-content: center;
        display: flex;
        padding-bottom: 1%;
      }
    
      .row2,
    .row2 > .column2 {
      padding: 8px;
    }
    
      .column2 {
        width: 35%;
      }
      .content2 {
        padding: 1rem;
        height: 340px;
        border-radius: 25px;
      }
      .content2 .ContentTop2 {
        padding: 1rem;
        cursor: pointer;
      }
      .content2 .ContentTop2 h3 {
        font-size: 1rem;
      }
      .content2 img {
        width: 60%;
        height: auto;
      }
  }


  @media screen and (max-width: 677px) {
    .EstateRow2 h1 {
        font-size: 2rem;
    }
    .row2 {
        margin: 18px 1px;
        justify-content: center;
        display: flex;
        padding-bottom: 1%;
      }
    
      .row2,
    .row2 > .column2 {
      padding: 8px;
    }
      .column2 {
        width: 35%;
      }
      .content2 {
        padding: 1rem;
        height: 250px;
        border-radius: 25px;
      }
      .content2 .ContentTop2 {
        padding: 1rem;
        cursor: pointer;
      }
      .content2 .ContentTop2 h3 {
        font-size: 1rem;
      }
      .content2 img {
        width: 100px;
        height: auto;
      }
    
    .contentBottomText2{
         font-size: 20px;
      }
  }

  @media screen and (max-width: 535px) {

    .row2 {
        margin: 1px 1px;
      }
      .row2 .row2 > .column2 {
      padding: 3px;
    }
      .content2 {
        padding: 1rem;
        height: 170px;
        border-radius: 5px;
      }
      .content2 .ContentTop2 {
        padding: 1rem;
      }
      .content2 .ContentTop2 h3 {
        font-size: 0.8rem;
      }
      .content2 img {
        width: 50px;
        height: auto;
        margin: 10px;
      }
    
    .contentBottomText2{
         font-size: 18px;
      }
  }

  @media screen and (max-width: 425px) {
    .EstateRow2 h1 {
        font-size: 1.7rem;
    }
      .row2 .row2 > .column2 {
      padding: 3px;
    }
      div.content2 {
        padding: 0;
        height: 130px;
        border-radius: 5px;
      }
       div.ContentTop2 {
        padding: 0;
      }
      .content2 img {
        width: 40px;
        margin: 19px;
      }
  }

  @media screen and (max-width: 350px) {
    .content2 .ContentTop2 h3 {
        font-size: 0.2rem;
      }
      div.content2 {
        padding: 0;
        height: 110px;
        border-radius: 5px;
      }
      .content2 img {
        margin: 10px;
      }
  }

  

    /* Estate Row2 */
    .EstateRow3 {
    position: relative;
    margin-top: 10rem;
    }
    .container{
    max-width: 1200px;
    margin: auto;
    }
    .row-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 3%;
    grid-row-gap: 1%;
    padding-bottom: 1%;                                                          
    }

    @media screen and (max-width: 1024px){
        .row-container{
            grid-template-columns: 1fr 1fr;  
            margin: 5rem;                                                  
            }
    }

    @media screen and (max-width: 768px){
        .row-container{
            grid-template-columns: 1fr; 
            margin: 20px;                                                   
            }
    }
    .grid {
    position: relative;
    width: 100%;
    }

    .grid-text {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 40px 40px 0 0;
    font-size: 12px;
    }

    @media screen and (max-width: 1225px){
        .grid-text {
            background-color: #ffffff;
            font-size: 10px;
            }
    }

    .grid img{
    display: block;
    width: 100%;
    height: auto;
    }

    .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 92px;
    overflow: hidden;
    width: 0;
    height: 100;
    transition: .5s ease;
    }

    .grid:hover .overlay {
    width: 100%;
    }
    .text {
    color: #fff;
    font-size: 17px;
    position: absolute;
    top: 80%;
    left: 50%;
    width: 300px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    }

    .partner-logo img{
        width: 80%;
        margin-top: 5rem;
        margin-bottom: 15rem;
        display: block;
        margin-left: auto;
        object-fit: initial;
        margin-right: auto;
        height: auto;
    }
    .EstateRowBottom {
        max-width: 1000px;
        margin: 5rem auto;
    }
    .EstateRowBottomText {
        text-align: center;
        margin-bottom: 5rem;
        font-size: 17.5px;
        line-height: 3em;
    }
    @media screen and (max-width: 1225px){
        .EstateRowBottomText {
           margin: 3rem;
        }
    }

    @media screen and (max-width: 425px){
        .EstateRowBottomText {
            font-size: 16px;
            margin: 1rem;
        }
    }

    .EstateBottomButton {
         display: flex;
         justify-content: center;
    }
    .EstateBottomButton button{
      background-color: #ffffff;  
      border: 2px solid #000;
      color: #000;
      padding: 8px 30px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 22px;
      cursor: pointer;
    }

    .EstateRowPictextTitle {

        font-size: 25px;
        max-width: 1200px;
        margin: 8rem auto;
    }

    @media screen and (max-width: 1024px){
 
        .EstateRowPictextTitle {
          margin: 3rem;
          margin-top: 10rem;
        }
    
    
    }

    @media screen and (max-width: 425px){
        .EstateRowPictextTitle {
          font-size: 20px;
        }
    
    
    }

    .EstateRowPics {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 3%;
        grid-row-gap: 1%;
        max-width: 1200px;
        margin: auto;
        padding-bottom: 1%;  
    }


    @media screen and (max-width: 1200px){
        .EstateRowPics {
            grid-column-gap: 1%;
            grid-row-gap: 1%;
            max-width: 1100px;
        }
    
    }

    
    @media screen and (max-width: 1024px){
        .EstateRowPics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 1%;
            grid-row-gap: 1%;
            max-width: 800px;
        }
    }

    @media screen and (max-width: 800px){
        .EstateRowPics {
            display: grid;
            grid-template-columns: 1fr;
            margin: 1rem;
        }
    }

    .EstateRowPicsColumn {
        max-width: 400px;
        margin: auto;
    }

    .EstateRowPicsColumn img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .EstateRowContent h1{
        color: #000;
        margin: 1rem;
        font-size: 20px;
    }


    .EstateRowBottomText2 {
        margin-top: 15rem;
        margin-bottom: 5rem;
        font-size: 18px;
        line-height: 3em;
    }

    .EstateRowBottomText .Estate24{
        font-size: 26px;
    }

    @media screen and (max-width: 1024px){
        .EstateRowBottomText2 {
            margin: 3rem;
            margin-top: 15rem;
            font-size: 16px;
    }
    .EstateRowContent h1{
        font-size: 15px;
     }
 }

 @media screen and (max-width: 425px){
    .EstateRowBottomText2 {
        margin: 1rem;
}
}


.MailText{
  margin-top: 15rem;
  font-size: 22px;
  line-height: 3rem;
  font-weight: 600;
}

@media screen and (max-width: 1024px){
    .MailText{
        margin-top: 5rem;
        margin: 3rem;
      }   
}

@media screen and (max-width: 768px){
    .MailText{
        font-size: 18px;
      }   
}

@media screen and (max-width: 425px){
    .MailText{
        margin: 1rem;
        margin-top: 8rem;
      }   
}

/* Footer */

.footer {
    position: relative;
    margin-top: 3rem;
    background-color: #808393;
    padding: 70px 0;
}

.topmenus {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    max-width: 800px;
    margin: auto;
    padding-top: 2vw;
    border-bottom: 0.8px solid white;
    padding-bottom: 1.5rem;
    color: aliceblue;
}


.topmenus a {
    text-decoration: none;
}


 .topmenus h1 {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all .5s;
}

.topmenus h1:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 2px;
}



.logoaddress {
    position: relative;
    padding-top: 2vw;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 200px 200px;
    color: aliceblue;
    margin-bottom: 3rem;
}



.logoaddress img {
    width: 105px;
}

.adresss {
    font-size: 0.9rem;
    text-align: left;
    color: aliceblue;
}
/* For Tablet View */

@media screen and (max-width: 700px) {
    .topmenus {
        display: grid;
        gap: 1.5rem;
        text-align: center;
        border-bottom: none;
    }
}

@media screen and (max-width: 486px) {
    .logoaddress {
        padding-top: 1vw;
        justify-content: center;
        align-items: center;
        display: grid;
        grid-template-columns: 140px 140px;
        color: aliceblue;
    }
    .logoaddress img {
        width: 85px;
    }
    .adresss {
        font-size: 0.7rem;
    }
}





/* 
.footer {
    position: relative;
    margin-top: 8rem;
    background-color: #808393;
    padding: 70px 0;
    cursor: pointer;
}

.footer-flex {
    display: flex;
    color: #000;
    justify-content: space-evenly;
}

.footer-flex1 {
    font-size: 4.5rem;
}

.footer-flex2 {
    font-size: 3.5rem;
}

footer p {
    width: 700px;
    margin: 1rem auto auto auto;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 6rem;
}

@media screen and (min-width:200px) and (max-width:1130px) {
    .footer-flex {
        flex-direction: column;
        padding: 30px;
    }
    .footer p {
        width: 80%;
    }
}

@media screen and (max-width:555px) {
    .footer-flex1 {
        font-size: 3.5rem;
    }
    .footer-flex2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:395px) {
    .footer-flex1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:350px) {
    .footer-flex1 {
        font-size: 2rem;
    }
    .footer-flex2 {
        font-size: 1rem;
    }
    .footer p {
        font-size: 1rem;
        width: 80%;
    }
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

@media screen and (max-width:1024px) {
    .footer-container {
        max-width: 1000px;
    }
}

.footer-img {
    display: flex;
    justify-content: center;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

}

ul {
    list-style: none;
}

.footer-col {
    cursor: pointer;
}



.footer-col h4 {
    font-size: 1rem;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #8b8986;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #fff;
}

.footer-col ul li a {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size:0.9rem;
    text-decoration: none;
    transition: all .5s;
}

.footer-col ul li a:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 8px;
}


@media screen and (max-width:1270px){
      .footer-col{
        padding: 0 35px;
      }
}


@media screen and (min-width:280px) and (max-width:768px) {

  .row {
    display: list-item;
  }

    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-text {
        display: flex;
        flex-direction: column;
        line-height: 20px;
    }
} */