/* @general css */

#sector1 {
  background-image: url(./img/inner-pagebg.jpg), linear-gradient(#4f515275, #1e212dc0);
  height: 60vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-blend-mode:soft-light;
}

/* our mission */

.mission-title{
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-top: 5%;
}

.mission-main{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  margin-top: 3%;
}

.mission-block1{
  width: 45%;
}

.mission-block1 p{
  padding-bottom: 6%;
  font-size: 15px;
  font-weight: 300;
}

.mission-block1 .mission-p1{
  font-weight: 450;
}

.mission-img{
  height: 75vh; width: 30vw;
  border-radius: 10px;
}

.mission-block3{
  display: flex;
  column-gap: 5%;
}

.mission-ctn{
  display: flex;
  column-gap: 10px;
}

.mission-icon i{
  font-size: 50px;
  color: var(--primary);
}

.mission-reach{
  font-size: 20px;
  font-weight: 500;
}

.mission-note{
  font-size: 15px;
  font-weight: 350;
}

/* our choice */

.choice-header {
  text-align: center;
  margin-top: 5%;
}

.choice-header .title {
  font-size: 30px;
  font-weight: 500;
}

.choice-header .sub-title {
  font-size: 15px;
  font-weight: 300;
}

.choice-main {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 3%;
  justify-content: center;
  margin-top: 3%;
  width: 70%;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
}

.choice-block {
  background-color: transparent;
  height: 50vh;
  min-width: 35%;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: 300ms;
  border: 1px solid #8080802c;

}

.choice-block:hover {
  box-shadow: 0 0 30px 0 #8080804c;
  border-bottom: 5px solid var(--primary);
}

.choice-block:hover.choice-block .icon {
  background-color: var(--primary);
  color: var(--text);
}

.choice-block .icon {
  font-size: 50px;
  padding: 8%;
  background-color: #79797914;
  color: var(--primary);
  border-radius: 50%;
  transition: 1s;
  margin: auto;
  margin-top: 15%;
}

.choice-title {
  font-size: 15px;
  margin-top: 10%;
  font-weight: 400;
}

.choice-art {
  font-size: 13px;
  font-weight: 300;
  width: 90%;
  margin: auto;
  margin-top: 1%;
  font-weight: 300;
}

/* property-locations */
.prop-sector{
  background-color: #8989890c;
  padding-top: .3vh;
  height: 85vh;
}

.prop-header {
  text-align: center;
  margin-top: 5%;
}

.prop-header .title {
  font-size: 30px;
  font-weight: 500;
}

.prop-header .sub-title {
  font-size: 15px;
  font-weight: 300;
}

.prop-loc-main{
  display: flex;
  justify-content: space-evenly;
  margin-top: 5%;
  flex-wrap: wrap;
}

.prop-block img{
  height: 30vh;
  transition: 300ms;

}

.prop-block img:hover{
  filter:drop-shadow( 0px 0px 25px #443e3e7c);
  scale: 1.08;
}

.prop-block h3{
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}

.prop-block p{
  font-size: 15px;
  text-align: center;
  font-weight: 300;
}

/* testimonies */
.testimonies{
  background-color: #97979715;;
  padding-top: 3%;
  padding-bottom: 0%;
  height: 80vh;
}

.testy-header {
  text-align: center;
}

.testy-header .title {
  font-size: 30px;
  font-weight: 500;
}

.testy-header .sub-title {
  font-size: 15px;
  font-weight: 300;
}

.testy-main{
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.testy-ctn{
  display: flex;
  transition: 1s;
}

.testy-block{
  text-align: center;
  margin-top: 3%;
  min-width: 100%;
}

.testy-block img{
  border-radius: 50%;
  padding: .3%;
  background-color: #ffffff;
  margin-bottom: 1%;
  width: 8vw;
}

.testy-name{
  font-weight: 400;
  font-size: 20px;
}

.testy-posi{
  font-weight: 350;
  font-size: 14px;
}

.testy-art{
  font-weight: 400;
  font-size: 15px;
  width: 65%;
  margin: auto;
  margin-top: 2%;
}

.controls{
  margin-top: 2%;
  text-align: center;
}

.controls i{
  transition: 300ms;
  margin: 1%;
  cursor: pointer;
}

.controls i:hover{
  scale: 1.2;
  color: #5f5e67;
}


/* footer */

footer {
  background-color: #201f35;
  color: var(--text);
}

.footer-main {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-evenly;
  padding-top: 6%;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 5%;
}

.footer-list > li {
  font-size: 13px;
  list-style: none;
  font-weight: 300;
  margin-top: 10%;
  color: #f0f0f091;
  transition: 1s;
  cursor: pointer;
}

.footer-list li:hover {
  color: var(--text);
}

.footer-social {
  margin-bottom: 10%;
}

.footer-social a {
  margin: 3%;
  color: #f0f0f091;
  cursor: pointer;
  transition: 1s;
}

.footer-social a:hover {
  color: var(--text);
}

.sub-flex {
  display: flex;
  width: 100%;
}

.send-btn {
  background-color: #f0f0f022;
  padding: 2%;
  padding-left: 5%;
  padding-top: 3%;
  border-radius: 50%;
  width: 2rem;
  margin-left: 5%;
  cursor: pointer;
}

.footer-input {
  height: 6vh;
  width: 13vw;
  background-color: #f0f0f022;
  border: none;
  border-radius: 20px;
  padding-left: 8%;
  outline: none;
  color: var(--text);
}

.footer-input::placeholder {
  color: #929292;
}

.sub-footer {
  background-color: #18172d;
  display: flex;
  justify-content: space-evenly;
  height: 10vh;
  align-items: center;
  margin-top: 5%;
}

.quicklink-menu a {
  padding-left: 1vw;
  color: #f0f0f091;
  cursor: pointer;
  transition: 1s;
  font-size: 15px;
}

.quicklink-menu a:hover {
  color: var(--text);
}

.creator {
  font-size: 15px;
  padding-top: 1vh;

}

.creator a{
    color: var(--primary);
}

.sector2-block {
  display: none;
}

.up-btn {
  position: fixed;
  bottom: 15px;
  color: #716e6eb6;
  right: 15px;
  font-size: 25px;
  border-radius: 50%;
  transition: 1s;
  opacity: 0;
  cursor: auto;
}

.up-btn.slide {
  opacity: 1;
}

.up-btn:hover {
  box-shadow: 0 0 10px 0 #bc00005d;
  color: #000000;
}


/* tab  */

@media (max-width: 900px) {
 /* @general css */

/* our mission */

.mission-title{
  font-size: 20px;
}

.mission-main{
  display: flex;
  flex-wrap: wrap;
  margin-top: 3%;
}

.mission-block1{
  width: 80%;
}

.mission-block1 p{
  font-size: 13px;
  font-weight: 300;
}

.mission-img{
  height: 60vh; min-width: 75vw;
  margin-top: 5%;
}

.mission-block3{
  column-gap: 2%;
  justify-content: center;
}

.mission-ctn{
  display: flex;
  column-gap: 10px;
}

.mission-icon i{
  font-size: 40px;
  color: var(--primary);
}

.mission-reach{
  font-size: 15px;
  font-weight: 450;
}

.mission-note{
  font-size: 13px;
}


/* our choice */


.choice-header .title {
  font-size: 20px;
}

.choice-header .sub-title {
  font-size: 13px;
}

.choice-main {
  flex-wrap: wrap;
}

.choice-block {
  height: 50vh;
  margin-top: 8%;
}

.choice-block .icon {
  font-size: 40px;
}

/* property-locations */
.prop-sector{
  margin-top: 10%;
  height: 50vh;
}
.prop-header .title {
  font-size: 20px;
}

.prop-header .sub-title {
  font-size: 13px;
}

.prop-loc-main{
  margin-top: 0%;
}

.prop-block{
  margin-top: 5%;
}

.prop-block img{
  height: 20vh;
}

.prop-block h3{
  font-size: 15px;
}

.prop-block p{
  font-size: 13px;
}

/* testimonies */
.testimonies{
  padding-top: 3%;
  padding-bottom: 3%;
  height: 60vh;
}

.testy-header {
  text-align: center;
}

.testy-header .title {
  font-size: 20px;
}

.testy-header .sub-title {
  font-size: 13px;
}
.testy-block{
  min-width: 100%;
}

.testy-block img{
  border-radius: 50%;
  padding: .3%;
  width: 15vw;
}

.testy-name{
  font-size: 15px;
}

.testy-posi{
  font-size: 13px;
}

.testy-art{
  font-size: 13px;
  width: 90%;
}

.controls{
  margin-top: 3%;
}

/* footer tab */
/* @general css */

.sub-footer {
  display: block;
}

}

/* phone */

@media (max-width: 600px) {
/* @general css */

/* our mission */

.mission-title{
  font-size: 16px;
}

.mission-block1{
  width: 80%;
}

.mission-block1 p{
  font-size: 12px;
}

.mission-img{
  height: 40vh; min-width: 75vw;
  margin-top: 5%;
}

.mission-block3{
  column-gap: 10%;
  flex-wrap: wrap;
}

.mission-ctn{
  column-gap: 10px;
  margin-bottom: 3%;
}

.mission-icon i{
  font-size: 30px;
}

.mission-reach{
  font-size: 13px;
  font-weight: 450;
}

.mission-note{
  font-size: 12px;
}


/* our choice */

.choice-header .title {
  font-size: 16px;
}

.choice-header .sub-title {
  font-size: 12px;
}

.choice-block {
  height: 40vh;
  margin-top: 10%;
}

.choice-block .icon {
  font-size: 40px;
}

/* property-locations */
.prop-sector{
  margin-top: 12%;
  height: 70vh;
}
.prop-header .title {
  font-size: 15px;
}

.prop-header .sub-title {
  font-size: 12px;
}

.prop-block{
  margin-top: 6%;
}

.prop-block img{
  height: 18vh;
}

.prop-block h3{
  font-size: 14px;
}

.prop-block p{
  font-size: 12px;
}


/* testimonies phone*/

.testimonies{
  height: 40vh;
  padding-top: 3%;
  padding-bottom: 0%;
}

.testy-header .title {
  font-size: 15px;
}

.testy-header .sub-title {
  font-size: 12px;
}
.testy-block{
  min-width: 100%;
}

.testy-block img{
  padding: .5%;
  width: 15vw;
}

.testy-name{
  font-size: 15px;
}

.testy-posi{
  font-size: 12px;
}

.testy-art{
  font-size: 12px;
  width: 70%;
}

.controls{
  margin-top: 2%;
  text-align: center;
}


/* footer phone */
/* @gneral css */


}