@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Kotta+One&family=Lato:wght@100;300;400;700;900&display=swap");
@font-face {
  font-family: "Ivy Mode";
  src: url("IvyMode-Regular.eot");
  src: local("Ivy Mode Regular"), local("IvyMode-Regular"), url("IvyMode-Regular.eot?#iefix") format("embedded-opentype"), url("IvyMode-Regular.woff2") format("woff2"), url("IvyMode-Regular.woff") format("woff"), url("IvyMode-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Mode";
  src: url("IvyMode-Bold.eot");
  src: local("Ivy Mode Bold"), local("IvyMode-Bold"), url("IvyMode-Bold.eot?#iefix") format("embedded-opentype"), url("IvyMode-Bold.woff2") format("woff2"), url("IvyMode-Bold.woff") format("woff"), url("IvyMode-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Mode";
  src: url("IvyMode-Light.eot");
  src: local("Ivy Mode Light"), local("IvyMode-Light"), url("IvyMode-Light.eot?#iefix") format("embedded-opentype"), url("IvyMode-Light.woff2") format("woff2"), url("IvyMode-Light.woff") format("woff"), url("IvyMode-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Mode";
  src: url("IvyMode-Thin.eot");
  src: local("Ivy Mode Thin"), local("IvyMode-Thin"), url("IvyMode-Thin.eot?#iefix") format("embedded-opentype"), url("IvyMode-Thin.woff2") format("woff2"), url("IvyMode-Thin.woff") format("woff"), url("IvyMode-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Mode";
  src: url("IvyMode-SemiBold.eot");
  src: local("Ivy Mode SemiBold"), local("IvyMode-SemiBold"), url("IvyMode-SemiBold.eot?#iefix") format("embedded-opentype"), url("IvyMode-SemiBold.woff2") format("woff2"), url("IvyMode-SemiBold.woff") format("woff"), url("IvyMode-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
header {
  position: relative;
  background-color: rgba(239, 243, 196, 0.968627451);
}
header .logo h1 {
  color: #566e2d;
  font-family: Kotta One;
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
}
header .logo h1 i {
  font-size: 30px;
}
header nav ul li a {
  color: #566e2d;
  font-family: Ivy Mode;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #566e2d;
  left: 0;
  height: 2px;
  transform-origin: 100% 100%;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scaleX(0) translateZ(0);
  -webkit-transform: scaleX(0) translateZ(0);
  -moz-transform: scaleX(0) translateZ(0);
  -ms-transform: scaleX(0) translateZ(0);
  -o-transform: scaleX(0) translateZ(0);
}
header nav ul li a:hover::after {
  background-color: #566e2d;
  color: #566e2d;
  transform-origin: 0% 0%;
  transform: scaleX(1) translateZ(0);
  -webkit-transform: scaleX(1) translateZ(0);
  -moz-transform: scaleX(1) translateZ(0);
  -ms-transform: scaleX(1) translateZ(0);
  -o-transform: scaleX(1) translateZ(0);
}
header .search-bar {
  position: relative;
  transition: 0.3s all ease-in-out;
}
header .search-bar .in-s {
  width: 200px;
  position: absolute;
  display: flex;
  justify-content: end;
  top: -11px;
  right: 0;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
header .search-bar .in-s input {
  height: 31px;
  padding: 7px;
  border: none;
  width: 0;
  display: none;
  transition: 0.3s all ease-in-out;
  position: absolute;
  background-color: rgba(86, 110, 45, 0);
}
header .search-bar .in-s i {
  color: #566e2d;
  font-size: 22px;
  transition: 0.3s all ease-in-out;
  z-index: 2;
  padding: 0px 10px;
  cursor: pointer;
}
header .search-bar .in-s:hover i {
  font-size: 19px;
  transition: 0.3s all ease-in-out;
}
header .search-bar .in-s:hover input {
  display: block;
  border: 1px solid #566e2d;
  width: 100%;
  animation: ser 1s linear;
  transition: 0.3s all ease-in-out;
  border-radius: 20px;
  color: #566e2d;
}

@keyframes ser {
  0% {
    width: 0%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.banner {
  background: url(/images/slide-1.jpg);
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .names {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner .names h1 {
  color: #566e2d;
  font-family: "Kaushan Script", cursive;
  font-size: 95px;
  font-style: normal;
  font-weight: 400;
  line-height: 95px;
  margin-top: 95px;
}
.banner .names p {
  color: #1e1e1e;
  text-align: center;
  font-family: Ivy Mode;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.sec3 {
  background-color: #eef3c4;
}
.sec3 .s3-l .image-wapper img {
  border-radius: 17%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .s3-l .content h3 {
  color: #000;
  font-family: Ivy Mode;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.sec3 .s3-l .content p {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px; /* 218.182% */
}
.sec3 .s3-l .content #sign {
  color: #000;
  font-family: Janda Elegant Handwriting;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  display: flex;
  align-items: center;
}
.sec3 .s3-l .content #sign::before {
  content: "";
  display: block;
  height: 1px !important;
  width: 35px !important;
  background-color: #000;
}
.sec3 .s3-r .image-wapper img {
  border-radius: 17%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .s3-r .content h3 {
  color: #000;
  font-family: Ivy Mode;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.sec3 .s3-r .content p {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px; /* 218.182% */
}
.sec3 .s3-r .content #sign {
  color: #000;
  font-family: Janda Elegant Handwriting;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  display: flex;
  align-items: center;
}
.sec3 .s3-r .content #sign::before {
  content: "";
  display: block;
  height: 1px !important;
  width: 35px !important;
  background-color: #000;
}

.sec4 {
  width: 100%;
  height: 350px;
  background-image: url(/images/countdown-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec4 h3 {
  color: #000;
  text-align: center;
  font-family: Ivy Mode;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
}
.sec4 h3 span {
  color: #000;
  font-family: Ivy Mode;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
}
.sec4 p {
  color: #000;
  text-align: center;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
}

.sec5 {
  background-color: #eef3c4;
}
.sec5 .our h1 {
  color: #566e2d;
  text-align: center;
  font-family: Kaushan Script;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
.sec5 .s5-p {
  padding: 0px 48px;
}
.sec5 .s5-p1 {
  padding: 0px 48px;
}
.sec5 .s5-p2 {
  padding: 0px 48px;
}
.sec5 .s5-p3 {
  padding: 0px 48px;
}
.sec5 .img-wapper img {
  border-radius: 60px;
  transition: all 0.9s ease-out;
  transform-origin: center;
  transform: scale(1, 1);
}
.sec5 .round {
  width: 100px;
  height: 100px;
  background: #566e2d;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.sec5 .round p {
  color: #fff;
  text-align: center;
  font-family: Kaushan Script;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec5 .line {
  width: 1px;
  height: 79rem;
  background: #566e2d;
  top: 151px;
  position: absolute;
  left: 50%;
  z-index: 1;
}
.sec5 .content h5 {
  color: #566e2d;
  font-family: Ivy Mode;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.sec5 .content h5 span {
  color: #566e2d;
  font-family: Ivy Mode;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.sec5 .content p {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.sec6 {
  background-image: url(/images/cta-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.sec6 h3 {
  color: #fff;
  text-align: center;
  font-family: Kaushan Script;
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
}
.sec6 h3 span {
  color: #fff;
  font-family: Kaushan Script;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
}

.sec7 {
  background-color: #eef3c4;
}
.sec7 h1 {
  color: #566e2d;
  text-align: center;
  font-family: Kaushan Script;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
}
.sec7 .s7-p {
  padding: 3rem 100px;
}
.sec7 input {
  width: 100%;
  padding: 5px 15px;
  border: none;
  background-color: rgba(216, 220, 185, 0.6509803922);
  color: #566e2d;
}
.sec7 textarea {
  width: 100%;
  padding: 5px 15px;
  border: none;
  background-color: rgba(216, 220, 185, 0.6509803922);
  color: #566e2d;
}
.sec7 #s7-btn {
  border-radius: 62px;
  background: #566e2d;
  color: white;
  width: 175px;
  margin: 0 auto;
  border: none;
}

#wrong {
  display: none;
  font-size: 25px;
  color: #566e2d;
  cursor: pointer;
  transition: all 0.9s ease-out;
  transform-origin: center;
  transform: scale(1, 1);
}

@media (max-width: 768px) {
  header {
    position: relative;
  }
  header .search-bar .in-s {
    margin-right: 30px;
    top: 2px;
  }
  header #nav {
    font-size: 25px;
    color: #566e2d;
    cursor: pointer;
    transition: all 0.9s ease-out;
    transform-origin: center;
    transform: scale(1, 1);
  }
  header nav {
    display: none;
    position: absolute;
    background: #eef3c4;
    width: 100%;
    top: 65px;
    right: 0;
    left: 0;
    padding: 16px;
    z-index: 2;
  }
  .sec7 {
    background-color: #eef3c4;
  }
  .sec7 h1 {
    color: #566e2d;
    text-align: center;
    font-family: Kaushan Script;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
  }
  .sec7 .s7-p {
    padding: 20px 20px;
  }
  .sec7 input {
    width: 100%;
    padding: 5px 15px;
    border: none;
    background-color: rgba(216, 220, 185, 0.6509803922);
    color: #566e2d;
  }
  .sec7 textarea {
    width: 100%;
    padding: 5px 15px;
    border: none;
    background-color: rgba(216, 220, 185, 0.6509803922);
    color: #566e2d;
  }
  .sec7 #s7-btn {
    border-radius: 62px;
    background: #566e2d;
    color: white;
    width: 175px;
    margin: 0 auto;
    border: none;
  }
}/*# sourceMappingURL=main.css.map */