/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&amp;display=swap");
/*=============== VARIABLES CSS ===============*/
:root{
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #01b5ec;
  --first-color-alt: #04c4ff;
  --first-color-light: #22c8fa;
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: #04c4ff;
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;
  --black-color: #141313;
  --dark-grey-color: #1d1c1c;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z-index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root{
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
  transition: .3s;
}
h1, h2, h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
input, button{
  font-family: var(--body-font);
  outline: none;
  border: none;
}
/*=============== THEME ===============*/
.change-theme{
  font-size: 1.25rem;
  color: var(--first-color);
  cursor: pointer;
  transition: .3s;
}
.change-theme:hover{
  color: var(--first-color);
}
/*========== Variables Dark theme ==========*/
body.dark-theme{
  --first-color: hsl(228, 66%, 62%);
  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 70%);
  --border-color: hsl(228, 16%, 14%);
  --body-color: hsl(228, 12%, 8%);
  --container-color:  hsl(228, 16%, 12%);
}
.black{
  color: var(--black-color)
}
.first-color{
  color: var(--first-color);
}
.white{
  color: var(--body-color);
}
/*===================== 
  Color changes in some parts of 
  the website, in dark theme 
=======================*/
.dark-theme .home-search,
.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev{
  border: 3px solid var(--border-color);
}
.dark-theme .nav-menu,
.dark-theme .home-img,
.dark-theme .popular-card:hover,
.dark-theme .popular-card-home:hover,
.dark-theme .value-img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value-accordion-icon,
.dark-theme .accordion-open .value-accordion-arrow,
.dark-theme .contact-img,
.dark-theme .contact-card-box:hover,
.dark-theme .scrollup{
  box-shadow: none;
}
.dark-theme .value-orbe,
.dark-theme .value-accordion-icon,
.dark-theme .value-accordion-arrow,
.dark-theme .contact-orbe,
.dark-theme .contact-card i,
.dark-theme .contact-card-button,
.dark-theme .subscribe-container{
  background-color: var(--container-color);
}

.dark-theme .subscribe-container{
  border: 6px solid var(--border-color);
}
.dark-theme::-webkit-scrollbar{
  background-color: hsl(228, 4%, 25%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.grid {
  display: grid;
}
.section {
  padding: 4.5rem 0 2rem;
}
.section-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}
.section-title span {
  color: var(--second-color);
}
.section-subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}
.main {
  overflow: hidden; /* For the animations ScrollReveal*/
}
/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: .4s;
}
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo{
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-medium);
  transition: .3s;
}
.nav-logo i{
  font-size: 1rem;
}
.nav-logo:hover{
  color: var(--first-color);
}
@media screen and (max-width: 1023px){
  .nav-menu{
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
    width: 90%;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 1.30rem 3rem;
    border-radius: 1.25rem;
    transition: .4s;
  }
  .nav-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-link{
    color: var(--text-color);
    display: flex;
    padding: .5rem;
    border-radius: 50%;
  }
  .nav-link i{
    font-size: 1.25rem;
  }
  .nav-link span{
    display: none;
  }
}
/* Change background header */
.scroll-header{
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(228, 4%, 15%, .1);
}
.scroll-header .nav-logo{
  color: var(--first-color);
}
.scroll-header .change-theme{
  color: var(--title-color);
}
/* Active link */
a:is(:link, :active, :visited).active-link{
  background: linear-gradient(101deg,#04c4ff, #028fb9);
  color: #fff;            
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  padding: .5rem;
  border-radius: .5rem;
}
.header nav .nav-logo{
  background: transparent;
  box-shadow:none;
  padding: 0;
  border-radius: 0;
  color: var(--first-color);
}
/*=============== HOME ===============*/
.home{
  background: linear-gradient(170deg, hsl(0, 0%, 22%) 0%, hsl(0, 0%, 6%) 30%);
  padding-bottom: 0;   
  position: relative;                
}
.dark-overlay{
  background: rgba(1, 17, 39, 0.788);
  width: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
}
.home-container{
  padding-top: 4rem;
  row-gap: 3.5rem;
  z-index: 2;
}
.home-title,
.home-value-number{
  color: #fff;
}
.home-title{
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
  z-index: 2;
}
.home-description{
  color: var(--container-color);
  margin-bottom: 2rem;
}
.home-search{
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .75rem;
  display: flex;
  align-items: center;
  border-radius: .75rem;
  border: 3px solid var(--text-color-light);
  margin-bottom: 2rem;
}
.home-search i{
  font-size: 1.25rem;
  color: var(--first-color);
}
.home-search-input{
  width: 90%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 .5rem;
}
.home-search-input::placeholder{
  color: var(--text-color-light);
}
.home-value{
  display: flex;
  column-gap: 2.5rem;
}
.home-value-number{
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}
.home-value-number span{
  color: var(--second-color);
}
.home-value-description{
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}
.home-images{
  position: relative;
  display: flex;
  justify-content: center;
}
.home-orbe{
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg,
  hsl(0, 0%, 16%) 93%,
  hsl(0, 0%, 67%) 100%);
  border-radius: 135px 135px 0 0;
}
.home-img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsl(228, 66%, 25%, .25);
}
/*=============== BUTTON ===============*/
.del-button{
  background-color: #c90909;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  color: var(--body-color); 
  padding: 10px;
  cursor: pointer;
}
.button{
  display: inline-block;
  background: linear-gradient(101deg,#04c4ff,#04c4ff);
  color: #fff;
  padding: 14px 28px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .45);
  transition: .3s;
  cursor: pointer;
}
.button:hover{
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}
.submit-button{
  display: inline-block;
  background: linear-gradient(101deg,#04c4ff,#04c4ff);
  color: #fff;
  padding: 14px 28px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .45);
  transition: .3s;
  cursor: pointer;
  width: 100%;
}
.submit-button:hover{
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}
.button3{
  display: inline-block;
  background: var(--black-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .45);
  transition: .3s;
  cursor: pointer;
  width: 100%;
}
.button2{
  display: inline-block;
  background: var(--black-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .45);
  transition: .3s;
  cursor: pointer;
  width: 100%;
}
.button2:hover, .button3:hover{
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}
.button2 i{
  font-size: 1em;
  color: var(--body-color);
}
.nav-button{
  display: none;
}
#user-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px dashed var(--first-color);
  padding: 5px;
  cursor: pointer;
  display: block;
  margin: 0px auto;
}
/*=============== LOGOS ===============*/
.logos-container{
  padding-top: 2rem;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem 2rem;
  justify-content: center;
}
.logos-img img{
  height: 60px;
  opacity: .2;
  transition: .3s;
}
.logos-img img:hover{
  opacity: .6;
}
/*=============== POPULAR ===============*/
.center{
  text-align: center;
}
.popular-container{
  padding: 1rem 0 5rem;
}
.popular-card{
  width: 290px;
  background-color: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
}
.popular-card-home{
  width: 290px;
  background-color: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
  text-align: center;
}
.popular-card-home i{
  color: var(--first-color);
  font-size: 2em;
  text-align: center;
}
.popular-img{
  border-radius: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.popular-card img{
  height: 250px;
  object-fit: cover;
}
.popular-data{
  padding: 0 1rem 0 .5rem;
}
.popular-price{
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: .25rem;
  text-align: center;
}
.popular-price span{
  color: var(--second-color);
}
.popular-title{
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
  text-align: center;
}
.popular-description{
  padding: 30px 5px;
  font-size: var(--small-font-size);
  text-align: center;
}
.popular-card:hover{
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}
/* Swiper class */
.swiper-button-prev::after,
.swiper-button-next::after{
  content: '';
}
.swiper-button-prev,
.swiper-button-next{
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}
.swiper-button-prev{
  left: calc(50% - 3rem)
}
.swiper-button-next{
  right: calc(50% - 3rem)
}

/*=============== VALUE ===============*/
.value-container{
  row-gap: 3rem;
}
.section-title{
  padding: .5rem 0;
}
.value-images{
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.value-orbe{
  width: 266px;
  height: 316px;background-color: hsl(228, 24%, 97%);
  border-radius: 10px;
}
.value-img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}
.value-description{
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}
.value span{
  color: var(--second-color);
}
.value-accordion{
  display: grid;
  row-gap: 1.5rem;
}
.value-accordion-item{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}
.value-accordion-header{
  display: flex;
  align-items: center;
  cursor: pointer;
}
.value-accordion-icon{
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: .25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}
.value-accordion-title{
  font-size: var(--small-font-size);
}
.value-accordion-arrow{
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}
.value-accordion-arrow i{
  transition: .4s;
}
.value-accordion-description{
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}
.value-accordion-content{
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}
/*Rotate icon and add shadows*/
.accordion-open{
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);
}
.accordion-open .value-accordion-icon{
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}
.accordion-open .value-accordion-arrow{
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, .1);
}
.accordion-open .value-accordion-arrow i{
  transform: rotate(-180deg);
}
/*=============== TESTIMONIAL ===============*/
.container-box{
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonies{
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  row-gap: 30px;
  background-color: var(--container-color);
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);
  padding-bottom: 70px;
}
.testimonies .image{
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonies .slide{
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
  flex-direction: column;
}
.slide p{
  padding: 0 100px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.slide .quote-icon{
  font-size: 30px;
  color: var(--first-color);
}
.slide .details{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name{
  font-size: 14px;
  font-weight: 600;
  color: var(--title-color);
}
.details .job{
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color-light);
}
.testimonies .bit{
  margin: 10px 0;
}
/*=============== CONTACT ===============*/
.contact span{
  color: var(--second-color);
}
.contact-container{
  row-gap: 2rem;
}
.contact-images{
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-orbe{
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}
.contact-img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}
.contact-description{
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}
.contact-card{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem .75rem;
}
.contact-card-box{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem .75rem;
  border-radius: .5rem;
  transition: .3s;
}
.contact-card-info{
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-card i{
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--first-color);
}
.contact-card-title{
  font-size: var(--normal-font-size);
}
.contact-card-description{
  font-size: var(--smaller-font-size);
}
.contact-card-button{
  font-size: var(--small-font-size);
  padding: 14px 0;
  width: 100%;
  border-radius: .25rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
}
.contact-card-button a{
  color: inherit;
}
.contact-card-button:hover{
  background-color: var(--first-color);
  color: #fff;
}
.contact-card-box:hover{
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}
/*=============== SUBSCRIBE ===============*/
.subscribe{
  padding: 2.5rem 0;
}
.subscribe-container{
  background-color: var(--first-color);
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-lighten);
  text-align: center;
}
.subscribe-title{
  font-size: var(--h2-font-size);
  color: #fff;
  margin-bottom: 1rem;
}
.subscribe-description{
  color: hsl(228, 90%, 92%);
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}
.subscribe-button{
  border: 2px solid #fff;
  background: var(--first-color-light);
  font-size: var(--small-font-size);
}
.subscribe-button:hover{
  background-color: var(--first-color);
}
/*=============== FOOTER ===============*/
.footer-container{
  row-gap: 2.5rem;
}
.footer-logo{
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}
.footer-logo i{
  font-size: 1.25rem;
}
.footer-description,
.footer-link{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}
.footer-content,
.footer-links{
  display: grid;
}
.footer-content{
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}
.footer-title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}
.footer-links{
  row-gap: .5rem;
}
.footer-link{
  color: var(--text-color);
  transition: .3s;
}
.footer-link:hover{
  color: var(--title-color);
}
.footer-socials{
  display: flex;
  column-gap: 1rem;
}
.footer-social-links{
  font-size: 1.25rem;
  color: var(--text-color);
  transition: .3s;
}
.footer-social-links:hover{
  color: var(--title-color);
}
.footer-info,
.footer-privacy{
  display: flex;
}
.footer-info{
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}
.footer-copy,
.footer-attribution,
.footer-privacy a {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}
.footer-attribution a{
  color: var(--text-color); /* i addedd this code because it only works when i repeat it. so, that's the reason for the repetition*/
}
.footer-privacy{
  justify-content: center;
  column-gap: 1.25rem;
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  /* border-radius: .2rem; */
  background-color: hsl(228, 8%, 64%);
}
::-webkit-scrollbar-thumb{
  background-color: hsl(228, 57%, 28%);
}
/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  transition: 0.3s;
}
.scrollup:hover{
  transform: translateY(-.30rem);
  color: var(--first-color);
}
/* Show Scroll Up*/
.show-scroll{
  bottom: 8rem;
}
/*============================ ABOUT US PAGE ==========================*/
.our-story-images{
  order: 1;
}
/*============================ PROPERTIES PAGE ==========================*/ 
.properties-container article{
  margin-bottom: 1.5rem;
}
/* Gallery */
.slider{
  display: grid;
  place-items: center;
  height: 250px;
  margin: auto;
  position: relative;
  overflow: hidden;
} 
.slidetrack{
  display: flex;
  width: calc(250px * 20);
  animation: scroll 100s infinite linear;
}
.slidetrack:hover{
  animation-play-state: paused;
}
@keyframes scroll {
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-250px * 20));
  }
}
.slidee{
  height: 250px;width: 250px;
  display: flex;
  align-items: center;
  padding: .5rem;
  perspective: 100px;
}
.slidee img{
  width: 100%;
  transition: all 2s;
}
.slidee img:hover{
  transform: translateZ(20px);
}
/*============================ CONTACT PAGE ==========================*/ 
.map-form section{
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-container{
  display: grid;
  align-items: center;
  justify-content: center;
  height: 75%;
  width: 90%;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 2rem;
  /* box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1); */
}
/************************************************
****************** Welcome Page******************
**************************************************/
.highlights{
    margin: 5px auto;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}
.highlights i{
    font-size: 1.2em;
    margin-right: 8px;
    color: var(--black-color);
}
.highlights .right{
    flex: 2 1;
}
/*********************************************/
.map{
  padding-top: .5rem;
  width: 100%;
  height: 100%; 
  justify-content: center;
}
.map-form iframe{
  width: 100%;
  height: 100%;
  justify-content: center;
}
.form{
  width: 100%;
  height: 100%;
}
.form h2{
  padding-bottom: .5rem;
}
.map-form input,textarea{
  width: 100%;
  margin: .5rem 0;
  background-color: unset;
  border: 1px solid var(--first-color) !important;
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: .1rem .2rem;
}
.map-form textarea{
  height: 150px;
  resize: none;
}
.map-form select{
  width: 100%;
  margin: .5rem 0;
  background-color: unset;
  border: 1px solid var(--first-color);
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: .1rem .2rem;
}
section{
  margin:10%  auto;
  padding: 0 60px;
  max-width: 1300px;
  position: relative;
}
.text-container{
  padding: 30px;
  background-color: var(--body-color);
  border-radius: 20px;
  text-align: left;
  margin: 0 auto;
  color: var(--black-color);
}
.align-center{
  text-align: center;
}
.align-right{
  text-align: right;
}
fieldset{
  box-shadow: 0px 0px 5px 5px var(--border-color);
  margin: 0 auto;
  border-radius: 10px;
  padding: 5px
}
legend{
  text-align: center;
  margin: 5px;
}
.login-cont{
  height: 100vh;
  width: 100%;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.login-cont .left{
  flex: 1 350px;
  align-self: stretch;
  background: url('../img/ceo_pic_1.jpg') 0% 0% no-repeat;
  background-size: cover;
}
.login-cont .lefty {
  flex: 1 200px;
  max-width: 400px;
  align-self: stretch;
  /* background: linear-gradient(90deg, var(--first-color) 40%, var(--first-color-light) 80% ); */
  background: url('../img/black-man-posing.jpg') 0% 0% no-repeat;
  background-size: cover;
  padding: 20px;
  position: relative;
} 
.login-cont .lefty h2{
  text-align: center;
  top: 40%;
  left: 0;
  right: 0;
  font-size: 1.6em;
  color: var(--body-color);
  display: block;
  position: absolute;
  text-transform: capitalize;
}
.login-cont .right{
  flex: 2 400px;
  max-width: 100%;
  align-self: center;
  background: var(--body-color);
  padding: 20px;
  margin: 0 auto;
  position: relative;
}
.login-cont .right .container{
  margin: 10% auto;
  padding: 20px;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 5px var(--border-color);
}
 .container2{
  margin: 10px auto;
  padding: 20px;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 5px var(--border-color);
}
.login-cont .right .reg-container{
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  box-shadow: 0px 0px 5px 5px var(--border-color);
}
.reg-container2{/**For Internal forms**/
  margin: 10px auto;
  max-width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 5px var(--border-color);
  color: var(--black-color);
}
.reg-container2 input,select,textarea{
  margin: 5px auto; 
  background-color: transparent;
  border: 1px solid var(--first-color);
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: 5px 15px;
}
.reg-container2 input:focus,select:focus,textarea:focus{
 outline: 2px solid var(--first-color-alt);
}
.login-cont .right .reg-container input,select{
  flex: 1;
  max-width: 375px;
  /* width: 100%; */
  margin: 5px auto; 
  background-color: unset;
  border: 1px solid var(--black-color);
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: .1rem .2rem;
}
/* .login-cont .right .container img.logo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px auto;
} */
.login-cont .right img.logo{
  width: 80px;
  height: 80px; 
  border-radius: 50%;
  margin: 10px auto;
}
.login-cont .right .container .login{
  border: 1px solid var(--dark-grey);
  border-radius: 10px;
  padding: 20px;
}
.login-cont .right .container input, textarea{
  width: 100%;
  margin: .5rem 0;
  background-color: unset;
  border: 1px solid var(--black-color);
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: .1rem .2rem;
}
.login-cont a{
  text-decoration: none;
  font-size: 0.8em;
  color: var(--first-color);
  margin: 10px auto;
}
.login-cont a:hover{
  color: var(--first-color-alt);
}
.login-cont p{
  font-size: 0.8em;
  text-align: right;
  margin: 10px auto;
}
.login-cont h2{
  text-align: center;
}
.input-container{
  margin: 0;
  position: relative;
}
.input-container .eye{
  position: absolute;
  right: 10px;
  top: 2px;
  color: var(--black-color);
  size: 1.5em;
  cursor: pointer;
}
/* .input-container i.details{
  position: absolute;
  left: 15px;
  top: 5px;
  cursor: pointer;
  size: 1.5em;
  color: var(--black-color);
} */
.input-container i.details2{
  position: absolute;
  left: 15px;
  top: 5px;
  cursor: pointer;
  size: 1.5em;
  color: var(--black-color);
}
#password{
  padding-right: 33px;
  padding-left: 35px;
}
#email{
  padding-left: 35px;
}
.header2{
  position: fixed;
  width: 100%;
  top: 0px;
  padding: 10px;
  background: var(--first-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.header2 .left{
  align-self: center;
  display: flex;
  justify-content: center;
  width: auto;
}
.header2 .left .logo{
  width: 40px;
  height: 40px;
  margin: 0 10px;
}
.header2 .center a{
  align-self: center;
  color: var(--body-color);
  font-weight: bold;
  margin: 0 10px;
} 
.header2 .center a:hover{
  text-decoration: underline;
  font-style: normal;
}
.header2 p{
  align-self: center;
  color: var(--body-color);
  margin: 0 5px;
  font-weight: none;
  font-size: 1em;
}
.header2 .center{
  align-self: center;
  margin: 0 20px;
}
.header2 .right{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-self: center;
  margin: 5px;
  margin-left: 15px;
  position: relative;
}
.header2 .right a{
  color: var(--body-color);
  align-self: center;
  margin: 0 5px;
  width: 100%;
}
.header2 .reg-tool{
  display: none;
  position: absolute;
  top: 70px;
  right: 10px;
  background-color: var(--first-color);
  color: var(--body-color);
  padding: 15px;
  border-radius: 5px;
  width: 400px;
  color: var(--body-color);
}
.header2 .reg-tool a{
  margin: 10px auto;
  display: block;
  color: var(--body-color);
}
.header2 i{
  font-size: 1em;
  color: var(--body-color);
}
.nav-cont{
  display: none;
}
.footer2{
  padding: 5px 80px;
  color: var(--body-color);
  background: var(--black-color);
  width: 100%;
  bottom: 0px;
  z-index: 3;
}
.footer2 p{
  font-size: 0.9em;
  line-height: 130%;
}
input, textarea, select{
  /* border: 1px solid var(--black-color); */
  width: 100%;
  margin: .5rem 0;
  background-color: unset;
  border-radius: .3rem;
  height: 3rem;
  color: var(--text-color);
  padding: .2rem .2rem;
}
/****************Input within dashboard****************/
/* .reg-container{
  padding: 20px;
  max-width: 100%;
  height: 100vh; 
}
.pin{
  max-width: 100%;
  height: auto;
  border-radius: 5px !important;
  margin: 5% auto;
  padding: 20px; 
  background-color: transparent;
  outline: 1px solid var(--body-color);
} */
.ref-container{
  display: inline-block;
  margin: 10px auto;
  width: 100%;
}
.ref-input{
  border: 1px solid var(--first-color);
  background: transparent;
  padding: 10px;
  border-radius: 5px 0px 0px 5px;
  font-size: 0.9em;
  color: var(--text-color);
  width: 70%
}
.ref-input:focus{
  outline: none;
  border: 0.8px solid var(--first-color-alt);
  background: transparent;
  color: var(--black);
}
.ref-button{
  background: var(--first-color);
  /* border: 0.8px solid var(--body-color); */
  border: 0.8px solid var(--first-color);
  padding: 10px;
  border-radius: 0px 5px 5px 0px;
  font-size: 0.9em;
  color: var(--body-color);
  cursor: pointer;
}
.ref-button:hover{
  background: var(--first-color-alt);
  border: 0.8px solid var(--first-color-alt);
}
.ref-button:hover .ref-input{
  border: 0.8px solid var(--first-color-alt);
}
/***********************************************
******************** Cards *********************
************************************************/
.card-container{
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.card-container .card-details{
  flex: 1 1 400px;
  margin: 5px auto;
}
.card-details .content{
  width: 100%;
  background: var(--body-color);
  border-radius: 10px; 
  /* display: flex;
  justify-content: center;
  flex-flow: row nowrap; */
  color: var(--black-color);
  padding: 5px 20px;
  text-align: left;
  margin: 0px auto;
}
.card-details .withdraw{
  width: 100%;
  background: var(--body-color);
  border-radius: 10px; 
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  color: var(--black-color);
  padding: 10px 5px;
  text-align: left;
  margin: 5px auto;
}
.withdraw a{
  text-decoration: none;
  font-size: 1em;
  color: var(--first-color);
}
.withdraw a:hover{
  text-decoration: none;
  font-style: normal;
  color: var(--first-color-alt);
  font-size: 1em;
}
.withdraw i{
  color: var(--first-color);
  font-size: 1.2em;
}
.withdraw .left{
  padding: 5px;  
}
.withdraw .right{
  flex: 2;
  text-align: left;
  align-self: center;
  margin: 0 auto;
}
.withdraw p{
  font-size: 1em;
  color: var(--text-color);
  margin: 0 3px;
}
.bank-diff{
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  background: transparent;
  margin: 20px auto;
}
.bank-diff .items img{
  height: 40px;
  width: 40px;
  
  margin: 10px auto;
}
.bank-diff .items{
  flex: 1 1 280px;
  margin: 10px;
  align-self:stretch;
  background-color: var(--body-color);
  color: var(--black-color);
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
}
.bank-diff .items p{
  font-size: 0.8em;
  text-align: right;
}
.bank-diff .items:hover{
  box-shadow: -2px 2px 5px var(--text-color-light );
  transform: scale(1.05);
}
.bank-diff .items hr{
  height: 2px;
  width: 98%;
  display: block;
  margin: 20px auto;
  border: none;
  background: var(--text-color-light);
}
/* ###################################*/
/********* Admin Nav  ***********/
.header2 .left #mobile-icon{
    display: none;
}
#admin-margin{
  background: var(--dark-black);
  margin-top: 7%;
}
.admin-cont{
  display: block;
  position: fixed;
  background-color: var(--black-color);
  left: 0px;
  top: 65px;
  color: #fff;
  width: 20%;
  height: 100vh;
  z-index: 1;
  padding: 20px;
}
.admin-cont hr{
  height: 2px;
  width: 98%;
  display: block;
  margin: 20px auto;
  border: none;
  background: var(--dark-grey-color);
}
.admin-cont a{
  color: var(--body-color);
  margin: 10px auto;
  display: block;
}
.admin-section{
  margin: 7% auto 10% 21%;
  padding: 0 20px;
  max-width: 950px;
}
/************Admin Components**********/
.balance{
  width: 100%;
  background: var(--first-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  color: var(--body-color);
  padding: 20px 10px;
  text-align: center;
}
.balance i{
  font-size: 1.2em;
  color: var(--body-color);
}
.balance p{
  font-size: 0.8em;
  color: var(--body-color);
}
.balance a{
  font-size: 0.8em;
  color: var(--body-color);
  margin: 5px auto;
  border-radius: 15px;
  background: var(--first-color);
  padding: 5px 10px;
}
.balance .left{
  flex: 1;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
}
.balance .right{
  flex: 1;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
}
.bold-amount{
  font-size: 2em;
  font-weight: bold;
}
.acct-details{
  width: 100%;
  background: var(--body-color);
  border-radius: 20px; /*Continue from here*/
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  color: var(--body-color);
  margin: 10px auto;
  padding: 20px 10px;
  text-align: center;
}
.acct-details .item{
  flex: 1; 
  align-self: stretch;
  text-align: center;
  margin: 0 5px;
}
.acct-details .item h4{
  font-size: 0.9em;
  color: var(--dark-grey);
  margin: 5px auto;
  text-transform: uppercase;
}
.acct-details .item p{
  font-size: 0.9em;
  font-weight: bolder;
  color: var(--body-color);
  margin: 5px auto;
  line-height: 100%;
}
.acct-services{
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  color: var(--first-color);
  margin: 5px auto;
  padding: 5px 10px;
}
.acct-services .items{
  max-width: 200px;
  flex: 1 1 100px; 
  align-self: stretch;
  text-align: left;
  margin: 5px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-flow: column wrap;
  border-radius: 10px;
  background: var(--first-color);
  color: var(--body-color);
  transition: 1s;
}
.acct-services .items:hover{
  background: transparent;
  border: 1px solid var(--first-color-alt);
  color: var(--black-color);
  font-style: normal;
}
.acct-services .items i, .numb{
  text-align: left;
  font-size: 1.3em;
  border-radius: 5px;
  align-self: center;
}
.acct-services .items>p{
  text-align: center;
  font-size: 1.2em;
  font-weight: normal;

}

/* ##################################### */
.service{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  background: transparent;
  margin: 20px auto;
}
.items{
  flex: 1 1 300px;
  margin: 10px;
  align-self:stretch;
  color: var(--body-color);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.video{
  border-radius: 10px;
  padding: 10px;
  margin: 0 auto;
  border: 2px solid var(--first-color-alt);
}
.slanted{
  padding: 50px;
  position: relative;
  background: var(--first-color);
  color: var(--body-color);
  background: url('../img/modern-suburban.jpg') center center/cover no-repeat;
  /*clip-path: polygon(0% 15%, 100% 0%, 100% 80%, 0% 100%);  Define the slant shape */
  text-align: center;
}
.slanted h1{
  color: var(--body-color);
  margin: 30px auto;
}
.slanted p{
  color: var(--body-color);
  margin: 30px auto;
}
/* ##################################### */
.history{
  width: 100%;
  background: transparent;
  border-radius: 10px; 
  border: 1px solid var(--first-color);
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  color: var(--black-color);
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}
.history .left{
  flex: 1;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
}
.history .right{
  flex: 1;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
}
.history p{
  font-size: 0.7em;
  color: var(--black-color);
}
.bold-history{
  font-size: 1.2em;
  font-weight: bold;
  color: var(--black-color);
}
#confirmation {
  /* position: absolute;
  top: 20px;
  right: 0px; */
  border: 1px solid rgb(1, 243, 102);
  color: var(--black-color);
  padding: 5px 10px;
  margin-top: 10px;
  background: rgb(1, 243, 102);
  font-weight: normal;
  display: none;
  width: fit-content;
  /* animation: confirmation 2s alternate ease-in-out; */
}
.social-cont{
  margin: 10px auto;
}
.social-icons{
  display: flex;
  width: fit-content;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
}
.social-icons i{
  flex: 1;
  font-size: 1.3em;
  color: var(--first-color-alt);
  margin: 0 10px;
}
.social-icons i:hover{
  color: var(--black-color-);
}
.social-icons a{
  color: var(--first-color-alt);
}
.social-icons a:hover{
  color: var(--black-color);
}
/* @keyframes confirmation{
  0%{right: -500px}
  100%{right: 0px }
} */
.close{
  position:absolute;
  width: 40px;
  height: 30px;
  top: 0;
  right: 5px;
  color: rgb(31, 26, 26);
  padding:auto auto;
  text-align:center;
  font-size: 1.5em ;
  cursor: pointer;
}
.error{
  width: 100%;
  background: rgb(230, 1, 1);
  border: 1px solid rgb(230, 1, 1);
  color: var(--black-color);
  font-weight: bold;
  padding: 5px 10px;
  margin: 5px auto;
  text-align: center;
}
.success{
  max-width: 100%x;
  background: rgb(1, 243, 102);
  border: 1px solid rgb(1, 243, 102);
  color: var(--black-color);
  font-weight: bold;
  padding: 5px 10px;
  margin: 5px auto;
  text-align: center;
  position: relative;
}
.fa-copy{
  color: var(--text-color);
  background: var(--text-color-light);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}
.quotes{
  width: 100%;
  background: transparent;
}
.quotes .item{
  width: 100%;
  border-radius: 10px; 
  border: 1px solid var(--first-color);
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  color: var(--black-color);
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}
.quotes .left{
  flex: 1 250px;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column wrap;
  padding: 10px;
}
.quotes .left .section{
  flex: 1;
  border-bottom: 1px solid var(--first-color);
  margin: 5px auto;
}
.quotes .left h4{
  font-size: 1em;
}
.quotes .left p{
  font-size: 0.7em;
  color: var(--black-color);
}
.quotes .right{
  flex: 2 500px;
  text-align: center;
  align-self: stretch;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  padding: 10px;
}

.quotes .right .section{
  flex: 2 300px;
  font-size: 0.7em;
  color: var(--black-color);
  margin: 5px; 
  border-radius: 5px;
}
.quotes .right a{
  flex: 1 150px;
}
/************************************/
/************** History Table *****************/
.table-container{
  overflow-x: auto;
}
table{ 
  border-collapse: separate;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--first-color);
  margin: 15px auto;
  padding: 5px 10px;
  color: var(--black-color)
}
tr:nth-of-type(odd){
 background: #e2e2e2;
}
/* tr:nth-of-type(even){
  background: var(--bg-grey);
} */
.bg-white{
  background: var(--body-color)
}
th{
  font-weight: bold;
  font-size: 0.8em;
  background: var(--first-color);
  color: var(--body-color);
  padding: 5px;
  text-align: center;
}
tr{
  border: 1px solid var(--body-color);
  border-radius: 5px;
}
td{
  text-align: center;
  padding: 15px;
  font-size: 0.8em
}
td i{
  color: var(--first-color);
  text-align: center;
  font-size: 1em
}
#section{
  margin: 10px auto;
  padding: 0 60px;
  max-width: 1400px;
  position: relative;
}
@media screen and (max-width: 1024px){
  .header2 .left #mobile-icon{
    display: block;
    color: var(--body-color);
    align-self: center;
    font-size: 1.6em;
  }
  .login-cont{
    flex-flow: column wrap;
  }
  .login-cont .left{
    display: none;
  }
  .login-cont .lefty{
    display: none;
  }
  .login-cont .right{
    padding: 0;
    width: 100%;
  }
  .login-cont .right .container{
    margin: 20% auto;
    padding: 10px;
    max-width: 100%;
  }
  .login-cont .right .reg-container{
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    flex-flow: row wrap;
    box-shadow: 0px 0px 5px 5px var(--border-color);
  }
  .login-cont .right .reg-container input,select{
    flex: 1 400px;
    max-width: 100%;
    margin: 5px auto;
  }
  .admin-section{
    margin: 15% auto;
    padding: 0px 20px;
    max-width: 100%;
    position: relative;
  }
  /*********** Admin Nav  ***********/
  .admin-cont{
    display: block;
    position: fixed;
    background-color: var(--black-color);
    left: -2000px;
    top: 65px;
    color: #fff;
    width: 30%;
    height: 100vh;
    z-index: 1;
    padding: 20px;
    transition: all 0.5s ease;
  }
  .admin-cont a{
    color: var(--body-color);
    margin: 10px auto;
    display: block;
  }
  .admin-cont i{
    color: var(--body-color);
    margin: 5px auto;
    font-size: 1em;
  }
  .admin-cont.show-nav{
    left: 0;
    transition: all 0.5s ease;
  }
  #admin-margin{
    background: var(--first-color-light);
    margin-top: 5%;
  }
  .footer2 .flex-item{
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    margin: 10px auto;
  }
}
@media screen and (max-width: 500px){
  #section{
    margin: 20px auto;
    padding: 0 20px;
    max-width: 100%;
    position: relative;
  }
  section{
    margin: 20px auto;
    padding: 0 20px;
    max-width: 100%;
    position: relative;
  }
  .header2 .left #mobile-icon{
    color: var(--body-color);
    display: block;
    align-self: center;
  }
  .nav-menu{
    padding: 1.3rem 1.5rem;
  }
  .table-container{
    overflow-x: scroll;
  }
  .home-value{
    column-gap: 1rem;
  }
  
  .home-img{
    width: 220px;
    height: 280px;
  }

  .home-orbe{
    width: 240px;
    height: 264px;
  }
  
  .logos-container{
    gap: 2rem 1rem;
  }

  .popular-card{
    width: 230px;
    padding: .5rem .5rem .75rem;
  }
  .popular-card-home{
    width: 100%;
    padding: .5rem .5rem .75rem;
  }
  .value-img,
  .contact-img{
    width: 220px;
    height: 260px;
  }
  .value-orbe,
  .contact-orbe{
    width: 236px;
    height: 280px;
  }
  .login-cont .right .container{
    margin: 20px auto;
    padding: 10px;
    max-width: 95%;
  }
  .admin-section{
    margin: 22% auto;
    padding: 0px 20px;
    max-width: 100%; 
  }
  .login-cont .right .reg-container{
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-flow: column wrap;
    box-shadow: 0px 0px 5px 5px var(--border-color);
    margin: 40% auto 0 auto;
  }
  .login-cont .right .reg-container input, textarea, select {
    max-width: 100%;
    flex: 1;
    margin: 5px auto;
    border: 1px solid var(--black-color);
    border-radius: .3rem;
    height: 3rem;
    color: var(--text-color);
    padding: .1rem .2rem;
  }
  /*********** Admin Nav  ***********/
  .admin-cont{
    display: block;
    position: fixed;
    background-color: var(--black-color);
    left: -2000px;
    top: 65px;
    color: var(--body-color);
    width: 40%;
    height: 100vh;
    z-index: 1;
    padding: 20px;
    transition: all 0.5s ease;
  }
  .admin-cont a{
    color: var(--body-color);
    margin: 10px auto;
    display: block;
  }
  .admin-cont.show-nav{
    left: 0;
    transition: all 0.5s ease;
  }
  #admin-margin{
    background: var(--dark-black);
    margin-top: 22%;
  }
  .footer2 p{
    font-size: 0.8em;
    line-height: 130%;
    padding: 10px;
  }
  .ref-input{
    border: 1.3px solid var(--first-color);
    font-size: 0.6em;
    width: 80%;
  }
  .ref-button{
    font-size: 0.6em;
  }
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px){
  .container{
    margin: 0 auto;
  }
  .section{
    padding: 3.5rem 0 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .contact_card{
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }
  .login-cont .right .reg-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
  }
  .login-cont .right .reg-container input, textarea{
    width: 100%;
    display: block;
  }
}
/* For large devices */
@media screen and (min-width: 1023px){
  .section{
    padding: 7.5rem 0 1rem;
  }
  
  .section-title{
    font-size: 2.25rem;
  }
  .section__subtitle{
    font-size: var(--normal-font-size);
  }
  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav-menu{
    width: initial;
    margin-left: auto;
  }

  .nav-list{
    display: flex;
    column-gap: 3rem;
  }

  .nav-link{
    color: var(--text-color-light);
  }

  .nav-link i{
    display: none;
  }
  .nav-button{
    display: inline-block;
  }

  .active-link{
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }

  .change-theme{
    margin: 0 3rem;
    color: var(--text-color-light);
  }

  .scroll-header .nav-link,
  .scroll-header .change-theme{
    color: var(--text-color);
  }

  .scroll-header .active-link{
    color: var(--first-color);
  }

  .home{
    padding-bottom: 0;
  }

  .home-container{
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home-data{
    padding-bottom: 4rem;
  }

  .home-title{
    margin-bottom: 2rem;
  }

  .home-description,
  .home-search{
    margin-bottom: 3rem;
  }

  .home-value{
    column-gap: 3.5rem;
  }

  .home-orbe{
    width: 504px;
    height: 611px;
    border-radius: 256px 256px 0 0;
  }

  .home-img{
    width: 472px;
    height: 634px;
    border-radius: 236px 236px 12px 12px;
    bottom: -2.5rem;
  }

  .logos-img img{
    height: 100px;
  }

  .popular-container{
    padding-top: 3rem;
  }
  .popular-container{
    padding-top: 3rem;
  }
  .popular-card{
    width: 320px;
    padding: .75rem .75rem 2rem;
  }
  .popular-card-home{
    width: 320px;
    padding: .75rem .75rem 2rem;
  }
  .popular-data{
    padding: 0 .25rem 0 .75rem;
  }

  .value-container,
  .contact-container{
    align-items: flex-start;
    column-gap: 5rem;
  }
  .value-orbe,
  .contact-orbe{
    width: 501px;
    height: 541px;
    border-radius: 10px
  }
  .value-img,
  .contact-img{
    width: 461px;
    height: 501px;
    border-radius: 10px
  }
  .value-img img,
  .contact-img img{
    max-width: initial;
    width: 490px;
  }
  .value-description,
  .contact-description{
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }
  .value-accordion-title{
    font-size: var(--normal-font-size);
  }
  .value-accordion-item{
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }
  .value-accordion-description{
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .footer-content{
    grid-template-columns: repeat(4, max-content);
  }
  .footer-title{
    margin-bottom: 1.5rem;
  }
  .footer-links{
    row-gap: 1rem;
  }
  .footer-info{
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }

  .show-scroll{
    bottom: 3rem;
    right: 3rem;
  }

  .properties-container{
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-container{
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    height: 75vh;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .nav-menu{
    width: 342px;
  }

  .home-search{
    width: 412px;
  }

  .contact-card{
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }

  .footer-content{
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 767px){
  .home-container{
    grid-template-columns: repeat(2,1fr);
    padding-top: 2rem;
  }
  
  .home-orbe{
    align-self: flex-end;
  }

  .home-data{
    padding-bottom: 2rem;
  }

  .logos-container{
    grid-template-columns: repeat(4,max-content);
  }

  .value-container,
  .contact-container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  

  .contact-images{
    order: 1;
  }
  
  .contact-card{
    justify-content: initial;
  }

  .subscribe-container{
    padding: 3rem 10rem;
  }
  .footer-container{
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}


/* For large devices */
@media screen and (min-width: 1023px){
  .section{
    padding: 7.5rem 0 1rem;
  }
  
  .section-title{
    font-size: 2.25rem;
  }
  .section__subtitle{
    font-size: var(--normal-font-size);
  }
  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav-menu{
    width: initial;
    margin-left: auto;
  }

  .nav-list{
    display: flex;
    column-gap: 3rem;
  }

  .nav-link{
    color: var(--text-color-light);
  }

  .nav-link i{
    display: none;
  }
  .nav-button{
    display: inline-block;
  }

  .active-link{
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }

  .change-theme{
    margin: 0 3rem;
    color: var(--text-color-light);
  }

  .scroll-header .nav-link,
  .scroll-header .change-theme{
    color: var(--text-color);
  }

  .scroll-header .active-link{
    color: var(--first-color);
  }

  .home{
    padding-bottom: 0;
  }

  .home-container{
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home-data{
    padding-bottom: 4rem;
  }

  .home-title{
    margin-bottom: 2rem;
  }

  .home-description,
  .home-search{
    margin-bottom: 3rem;
  }

  .home-value{
    column-gap: 3.5rem;
  }

  .home-orbe{
    width: 504px;
    height: 611px;
    border-radius: 256px 256px 0 0;
  }

  .home-img{
    width: 472px;
    height: 634px;
    border-radius: 236px 236px 12px 12px;
    bottom: -2.5rem;
  }

  .logos-img img{
    height: 100px;
  }

  .popular-container{
    padding-top: 3rem;
  }
  .popular-container{
    padding-top: 3rem;
  }
  .popular-card{
    width: 320px;
    padding: .75rem .75rem 2rem;
  }
  .popular-data{
    padding: 0 .25rem 0 .75rem;
  }

  .value-container,
  .contact-container{
    align-items: flex-start;
    column-gap: 5rem;
  }
  .value-orbe,
  .contact-orbe{
    width: 501px;
    height: 641px;
    border-radius: 16px;
  }
  .value-img,
  .contact-img{
    width: 461px;
    height: 501px;
    border-radius: 10px;
  }
  .value-img img,
  .contact-img img{
    max-width: initial;
    width: 490px;
  }
  .value-description,
  .contact-description{
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }
  .value-accordion-title{
    font-size: var(--normal-font-size);
  }
  .value-accordion-item{
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }
  .value-accordion-description{
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .footer-content{
    grid-template-columns: repeat(4, max-content);
  }
  .footer-title{
    margin-bottom: 1.5rem;
  }
  .footer-links{
    row-gap: 1rem;
  }
  .footer-info{
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }

  .show-scroll{
    bottom: 3rem;
    right: 3rem;
  }

  .properties-container{
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-container{
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    height: 75vh;
  }
}

@media screen and (min-width: 1040px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .home-container{
    column-gap: 4rem;
  }
}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px){
  body{
    zoom: 1.5;
  }
}

@media screen and (min-width: 3840px){
  body{
    zoom: 2;
  }
}
