@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

body,
html {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  height: 100%;
  font-family: "Karla", sans-serif;
  color: #373737;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#home-body {
  padding: 0px 80px;
  background-color: #e0e0cd;
  max-width:1350px;
  margin:auto;
}
#logos{
  width: 100px;
}

.header-container{
  box-sizing: border-box;
  position: sticky;
  top: 0px;
  z-index: 15;
  border-bottom: 0.5px solid rgba(221, 214, 214, 0.548);
}
.header {
  width: 100%;
  padding: 0px 72px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  letter-spacing: 2px;
  background-color: white;
}

.header>div:nth-of-type(1) {
  display: flex;
  align-items: center;

  h1 {
    margin: 0px;
    padding: 0px;
    padding-top:15px
  }

  i {
    display: none;
  }
}

.header-logo {
  font-size: 1.7rem;
  padding-right: 60px;
  text-decoration: none;
  color: #25262E;
  font-weight: 800;
  font-size: 1.8rem;
}

.header>nav {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 0.79rem;
  font-weight: 300;
  height: 50%;
  a{
    text-decoration: none;
  }

  a:link, a:visited, a:active, a:focus{
    text-decoration: none;
    color:inherit;
  }
}

nav>* {
  cursor: pointer;
}

nav>div>span {
  transition: color 0.3s ease-out 0s;
  padding-right: 4px;
}

nav>div>a:hover {
  color: rgba(199, 182, 159, 0.938) !important;
}

.header-home,
.header-portfolio {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.header-menu {
  display: none;
  background-color: #373737;
  color: white;
  width: 185px;
  font-weight: 200;
  font-size: 0.765rem;

  position: absolute;
  top: 100%;
  left: -55px;
}

nav>div:hover>.header-menu {
  display: block;
  animation: animation1 0.2s ease-out 0s;
}

.header-menu>div {
  text-align: center;
  padding: 10px 0px;
  transition: background-color 0.4s ease-out 0s;

  position: relative;
}

.header-menu>div:hover {
  background-color: #5e5d5d85;
}

.header-sub {
  display: none;
  position: absolute;
  top: 0px;
  left: 100%;

  text-align: center;
  background-color: #373737;
  width: 180px;
}

.header-sub>div {
  padding: 10px 0px;
  transition: background-color 0.3s ease-out 0s;
}


.header-menu>div:hover>.header-sub {
  display: block;
  animation: animation1 0.2s ease-out 0s;
}

.header-sub>div:hover {
  background-color: #5e5d5d;
}

@keyframes animation1 {
  0% {
    filter: blur(5px);
  }

  100% {
    filter: blur(0px);
  }
}

.header-search-logos-container {
  display: flex;
  align-items: center;
  width: 190px;
}

.header-logos-search {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: animation1 0.2s ease-out 0s;
}

.header-logos>* {
  padding-left: 5px;
}

.header-bag-search>* {
  padding-left: 14px;
}

.header-bag-search>i,
.header-logos a, .header-logos i  {
  cursor: pointer;
  color: #858383 !important;
  transition: color 0.2s ease-in 0s;
}

.header-bag-search>i:hover, 
.header-logos a:hover, .header-logos i:hover {
  color: black !important;
}

#search-bar {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  animation: animation1 0.2s ease-out 0s;
}

#search-bar>input {
  border: none;
  color: #373737;
  width: 170px;
}

#search-bar>input:focus {
  outline: none;
}

#close-search {
  cursor: pointer;
}

/* responsive nav */

#responsive-nav{
  display:none;
  background-color: white;
  color: #373737;

  a{
    text-decoration: none;
  }

  a:link, a:visited, a:active, a:focus{
    text-decoration: none;
    color:#373737;
  }
}

.responsive-inner-nav{
  padding: 14px 0px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 300;
}

.responsive-inner-nav > div{
  padding: 10px 0px;
}

.responsive-inner-nav > div > span{
  font-size: 1.245rem;
  transition: color 0.3s ease-out 0s;;
}
.responsive-inner-nav > div i{
  width:25px;
  height: 25px;
  border: 1px solid #99999993;
  border-radius: 50%;
  margin-bottom: 2px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.responsive-inner-nav > div > span:hover{
  color:#beb292;
}

.resp-header-menu{
  display: none;
  padding:20px 0px;
  font-size:1rem;
}

.resp-header-menu > div{
  padding:9px 0px;
}

.resp-header-sub{
  display: none;
}

.resp-header-sub{
  padding:15px 0px;
  font-size: 0.875rem;
}

.resp-header-sub > div{
  padding: 9px 0px;
}

.responsive-header-search{
  display: flex;
  flex-direction: column;
  align-items: center;

  padding:30px 0px;
}

.responsive-header-search > label{
  padding-bottom: 20px;
  font-size:medium;
  color:#999
}
.responsive-header-search > input{
 padding: 8px 44px;
    text-align: center;
    border: 1px solid #0000003d;
    font-size: 1rem;
    border-radius: 19px;
}

.responsive-header-search > input:focus{
  outline: none;
}


/* Main container with video background */
.intro {
  position: sticky;
  width: 100%;
  z-index: 0;
  top: 74px;
  height: 490px;
  background-color: white;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 0px 25px;
}

/* Background Vimeo iframe */
.intro .video {
  height:100%;
  pointer-events: none;
  object-fit: cover;
  position: relative;
  aspect-ratio: 16/9;
}

.intro-inner{
  height: 120%;
  background-color: black;
  overflow: hidden;
}

/* Content over video */

.intro-content {
  position: absolute;
  z-index: 1;
  left:15%;
  top:-15%;
  width: 70%;
  text-align: center;
  color: white;
}

.intro-content > h1 {
  font-family: "Roboto Slab", sans-serif;
  font-size: 3rem;
  font-weight: 100;
}

.intro-content>a {
  display: inline-block;
  padding: 12px 30px;
  /* background: white; */
  color: white;
  text-decoration: none;
  border: 2px solid white;

  transition: background-color 0.2s ease-out 0s;
}

.intro-content>a:hover {
  color: black;
  background-color: white;
}

.home-all-content {
  position: relative;
  z-index: 1;
}

.home-inner-content{
  padding: 0px 20px;
  background-color: white;
}

.home-inner-content>.title1 {
  font-family: "Montserrat", sans-serif;
  padding: 50px 0px;
  font-size: 0.688rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: 2px;
  line-height: 2.5rem;
  color: #6e6c6c;
}

.title1>.titlestart {
  font-size: 0.938rem;
  font-weight: 600;
  border: 3px solid black;
  padding: 10px;
  margin-right: 2px;
  color: black
}

.main1-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.main1-inner * {
  margin: 0px;
  padding: 0px;
}

.main1-inner>div {
  display: flex;
  gap: 22px;
  width: 300px;
  margin-bottom: 45px;
}

.main1-inner>div>figure>img {
  height: 54px;
}

.writing>h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  cursor: pointer;
}

.writing>p {
  line-height: 1.7rem;
  font-size: 0.95rem;
  color: #999;
}

.funfact-section {
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
  /* grid-template-columns: repeat(3, 1fr); */
  justify-content: center;
  flex-wrap: wrap;
  /* justify-content: start; */
  gap: 30px;
  text-align: center;
}

.funfact-section>div {
  /* display: flex; */
  gap: 60px;
}

.funfact-img {
  width: 150px;
}
  .funfact-img > img{
    opacity: 50%;
  }
.funfact-img>p {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #373737;
  opacity: 0.5;
  text-transform: uppercase;
  font-weight: 500;
  color: #999;
  line-height: 1.5rem;
}

.sec-3 * {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.sec-3 {
  display: grid;
  grid-template-columns: repeat(4, 150px);
  justify-content: center;
  margin-bottom: 40px;
  gap: 32px;

  figure {
    padding: 18px;
    border: 0.5px solid #eff3f5;
    text-align: center;

    img {
      display: inline;
      width: 60px;
      height: 70px;
    }
  }
}

#homepage-list-items {
  width: 60%;
  margin: auto;
}

.list-item * {
  padding: 0px;
  margin: 0px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-left: 10px;


  h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.list-item:not(.list-item:nth-last-child(2)) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #eff3f5;
}

.homepage-choose{
  margin: 0px auto;
  margin-top:70px;
  width:70%;
}

.homepage-choose > h1{
  text-align: center;
  margin-bottom: 35px;
}

.homepage-choose > ul{
  padding:0px;
  list-style-position: inside;
  line-height: 1.45rem;
}

.homepage-choose > ul > li{
  margin-bottom:25px;
}

#index-form-underline {
  border: 1px solid rgb(238, 235, 235);
  margin: 130px 0px 60px 0px;
}

.form-container2>h1 {
  width: fit-content;
  margin: auto;
  font-size: 3.5rem;
}

.form-container2>.email-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 50px;
}

.form-container2>p {
  text-align: center;
  padding: 10px 20px 20px 20px;
  font-size: 0.875rem;
}

.form-container2>.email-section>.login-text {
  padding: 10px;
  width: 300px;
  text-align: center;
  background-color: #f6f6f6;
  border: none;
  outline: transparent;
}

.form-container2>.email-section>.btn {
  background-color: transparent;
  border: 2px solid black;
  padding: 15px 30px;
  font-weight: 300;
  cursor: pointer;
  transition: background-color 0.3s ease-out 0s;
}

.form-container2>.email-section>.btn:hover {
  color: white;
  background-color: black;
}


/* responsive navbar */

@media screen and (min-width:1024px){
  #responsive-nav{
    display: none !important;
  }
}

@media screen and (max-width: 1150px) {
  .header {
    padding: 0px 25px;
  }

  .header-logo {
    padding-right: 30px;
  }
}

@media screen and (max-width: 1024px) {

  .header-container {
    position: relative;
    z-index: 4;
  }
  
  .header{
    padding: 0px 32px;    
  }

  .header > nav{
    display:none;
  }

  .header>div:nth-of-type(1) {
    gap: 15px;

    i {
      display: block;
    }
  }

  .intro {
    top: 0px;
  }

  /* video */

  .intro-content {
    top:-11%;
  }

  .intro {
    width: 100%;
    height: 350px;
  }

  .intro-content > h1 {
    font-size: 2rem;
  }  

  .homepage-choose{  
    width:85%;
  }

  .about-story, .about-mission, .about-vision ,.about-services{
    width:85%;
  }  
}

@media screen and (max-width: 900px) {
  #home-body {
    padding: 0px 40px;
  }

  .home-inner-content {
    padding: 0px 5px;
  }

  .form-container2>.email-section {
    flex-direction: column;
  }

  /* .funfact-section {
    gap: 0%;
  }

  .funfact-section>div {
    gap: 0%;
  } */

  .sec-3 {
    display: grid;
    grid-template-columns: repeat(4, 120px);
  }

}

@media screen and (max-width:768px) {
  .main1-inner {
    flex-direction: column;
  }

  #search{
    display: none;
  }

  .header-search-logos-container{
    width:fit-content;
  }

  .main1-inner>div {
    width: 100%;
  }

  /* .funfact-section {
    flex-direction: column;
  } */

  .funfact-section>div {
    justify-content: center;
    /* width: 100%; */
  }

  .funfact-img {
    /* width: 100%; */
    padding: 20px;
  }



  .sec-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }



  #index-form-underline {
    margin: 120px 0px 40px 0px;
  }

  .form-container2>h1 {
    font-size: 1.725rem;
  }

  /* video */
  .intro .video { 
    left: -15%;
  }

  .intro-content {
    top:-9%;
  }  
}



@media screen and (max-width:640px) {
  #home-body {
    padding: 0px 30px;
  }
  .main1-inner {
      
      gap:0;
  }
  /* video */
  .intro .video { 
    position:relative;
    left: -5%;
  }

  .intro {
    width: 100%;
    height: 280px;
  } 

  .intro-content{
    top:-7%;
  }

  .intro-content  > h1{
    font-size: 1.4rem;
  }  


  
  .homepage-choose > h1{
    font-size: 1.725rem;
  } 

  .about-story, .about-mission, .about-vision ,.about-services{
    h1{
      font-size: 1.725rem;
    }
  }   
}

@media screen and (max-width:425px) {
  #home-body {
    padding: 0px 15px;
  }

  .header{
    padding: 0px 18px;
  }

  .funfact-section>div {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .list-item {
    gap: 28px;
    padding-right: 12px;
    flex-shrink: 0;
    flex-grow: 0;
    text-align: start;
  }

  #index-form-underline {
    margin: 70px 0px 25px 0px;
  }

  /* video */

  .intro {
    width: 100%;
    height: 200px;
    padding: 0px 5px;
  }

  .intro-content{
    top:-5%;
  }

  .intro-content  > h1{
    font-size: 1.1rem;
  }  
}

@media screen and (max-width:375px){
  .header{
    padding: 0px 9px;
  }

  .header-logo{
    padding-right: 10px;
  }

  .homepage-choose{  
    width:95%;
  }  

    .about-story, .about-mission, .about-vision ,.about-services{  
    width:95%;
  }   
}