@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sevillana&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Bokor&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sevillana&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

:root {
  --primary: #4b0082;
  --secondary: #228b22;
  --text: #f8f9fa;
  --accent: #f0ddef;
  --bg: #290038;
  --dark: #000000;
}

button,
a {
  text-decoration: none;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  background-image: linear-gradient(15deg, var(--dark), var(--bg));
  width: 100%; height: 100vh;
  background-attachment: fixed;
}

body {
  background-repeat: no-repeat;
  height: 100%; width: 100%;
  background-size: cover;
}

.harmBtn {
  display: none;
}

.header {
  background-color: var(--accent);
  height: 12vh;
  width: 100%;
  align-content: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 10px 0 var(--accent);
  position: fixed;
}

.header.current {
  backdrop-filter: blur(50px);
}

.nav {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: auto;
}

.menu {
  align-content: center;
}

.menu a {
  font-size: 25px;
  text-decoration: none;
  margin-right: 5vb;
  transition: 300ms;
  padding-bottom: 5px;
  color: var(--primary);
  /* font-family: "Roboto", sans-serif; */
}

.menu a:hover {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0px;
}

.logo {
  font-size: 30px;
  background: linear-gradient(15deg, var(--secondary), var(--primary));
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: "Bokor", system-ui;
}

.check-i {
  font-size: 20px;
  color: var(--primary);
}

/* home */

.home-block {
  display: flex;
  justify-content: center;
  padding-top: 3%;
  margin-bottom: 5%;
}

.title-card {
  width: 40%;
  align-content: center;
}

.winning{
  color: var(--secondary);
}

.aside-line {
  display: flex;
  gap: 5%;
}

.aside-line .outer-line {
  background-color: var(--accent);
  box-shadow: 0.1px -1px 5px 1px var(--secondary);
  width: 1%;
  border-radius: 5px;
  align-content: end;
}

.aside-line .inner-line {
  background-color: var(--secondary);
  height: 100%;
  padding: 3%;
  border-radius: 5px;
  animation: full 30000ms linear;
}

@keyframes full {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.home-title {
  color: var(--accent);
  font-size: 60px;
  line-height: 1.5;
  height: 60;
  width: 80%;
}

.home-title .home-i {
  font-size: 40px;
}

.home-title > .fas {
  height: 0;
  animation: fly 30000ms linear;
}

@keyframes fly {
  from {
    rotate: -40deg;
  }

  to {
    rotate: 5deg;
  }
}

.home-text {
  color: var(--accent);
  font-size: 25px;
  line-height: 1.8;
  margin: auto;
}

.home-contact-btn {
  width: 40%;
  height: 8vh;
  background-color: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
  border-radius: 10px;
  transition: 500ms;
  display: block;
}

.home-contact-btn:hover {
  color: var(--accent);
  background-color: var(--primary);
  border: 2px solid var(--accent);
}

.home-img2 {
  height: 90vh;
  width: 50%;
  margin-top: 2%;
}

/* about */

.about-block {
  display: flex;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 10%;
}

.about-block h1 {
  font-size: 30px;
  text-decoration: underline var(--secondary);
}

.about-p {
  width: 50%;
  font-size: 25px;
}

.about-p article {
  line-height: 2;
}

.about-img {
  width: 30%;
  max-height: 50vh;
}

.about-contact-btn {
  width: 30%;
  height: 8vh;
  background-color: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
  border-radius: 10px;
  transition: 500ms;
}

.about-contact-btn:hover {
  color: var(--accent);
  background-color: var(--primary);
  border: 2px solid var(--accent);
}

/* service */

.service-block {
  display: flex;
  justify-content: center;
  gap: 5%;
  align-items: center;
  color: var(--accent);
}

.service-list h1 {
  font-size: 40px;
  text-decoration: underline var(--secondary);
  margin-bottom: 5%;
}

.service-list div {
  background-color: var(--secondary);
  width: 5px;
  height: 30px;
  margin-left: 6%;
  z-index: -1;
}

.service-list li {
  background-color: var(--primary);
  height: 8vh;
  width: 35vw;
  font-size: 20px;
  padding-left: 2%;
  align-content: center;
  list-style: none;
  border-radius: 35px;
  border-bottom-right-radius: 0px;
  transition: 300ms;
  cursor: default;
}

.service-list li:hover {
  box-shadow: 0 0 10px 0 var(--accent);
}

.service-list li b {
  background-color: #228b22;
  padding: 4px 12px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-right: 2%;
}

/* contact */

.contact-block {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}

.contact-block h1 {
  font-size: 40px;
  margin-bottom: 5%;
  text-decoration: underline var(--secondary);
}

.icon-block {
  backdrop-filter: blur(50px);
  width: 30%;
  height: 40vh;
  align-content: center;
  text-align: center;
  border-radius: 20px;
}

.icon-block i {
  font-size: 30px;
  margin: 0 2%;
  transition: 300ms;
  cursor: pointer;
  color: var(--accent);
}

.icon-block i:hover {
  color: var(--primary);
  scale: 1.3;
}

.email-block input {
  background-color: transparent;
  color: var(--accent);
  height: 5vh;
  width: 70%;
  border: none;
  border-bottom: 3px solid var(--accent);
  outline: none;
  margin-top: 5%;
}

.email-block i {
  font-size: 30px;
  margin:  0 0%;
}

.contact-block img {
  height: 30ch;
  width: 40%;
}

footer {
  background-color: var(--primary);
  color: var(--text);
  height: 8vh;
  width: 100%;
  border-radius: 15px 15px 0 0;
  margin-top: 5%;
  align-content: center;
  text-align: center;
}

footer a {
  color: var(--accent);
}

@media (max-width: 860px) {
  /* header and nav  */

  body{
  /* width: 100%; */
  height: 100%;
  
  }

  html {
    scrollbar-width: thin;
    width: 100%;
  }

  .nav-sector {
    display: flex;
    justify-content: space-between;
    color: var(--accent);
  }

  .harmBtn {
    display: block;
    margin-left: auto;
    position: fixed;
    right: 3vb;
    top: 1vb;
    cursor: pointer;
    font-size: 30px;
    border: 2px solid var(--primary);
    padding: 0 2%;
    border-radius: 10px;
    backdrop-filter: blur(1px);
  }

  .header {
    height: 100vh;
    width: 40%;
    align-content: stretch;
    border-radius: 0 0 20px 0px;
    position: fixed;
    left: -100vw;
    transition: 2000ms;
  }

  .header.active {
    left: 0;
  }

  .nav {
    display: block;
    margin-top: 10%;
  }

  .menu {
    padding-top: 0vb;
  }

  .menu a {
    color: var(--primary);
    font-size: 20px;
    margin: 4vb 0;
    display: block;
    width: 10%;
    transition: 1500ms;
  }

  .menu a:hover {
    width: 50%;
  }

  .logo {
    font-size: 25px;
  }

  .check-i {
    font-size: 20px;
  }

  /* home tab */

  .home-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 5%;
  }

  .title-card {
    width: 100%;
  }

  .aside-line {
    gap: 3%;
  }

  .aside-line .outer-line {
    display: none;
  }

  @keyframes full {
    from {
      height: 0;
    }

    to {
      height: 100%;
    }
  }

  .home-title {
    color: var(--accent);
    font-size: 40px;
    line-height: 1.2;
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .home-title .home-i {
    font-size: 30px;
  }

  .home-title > .fas {
    height: 0;
    animation: fly 20000ms linear;
  }

  @keyframes fly {
    from {
      rotate: -40deg;
    }

    to {
      rotate: 5deg;
    }
  }

  .home-text {
    font-size: 20px;
    line-height: 1.5;
    margin: auto;
    width: 100%;
  }

  .home-contact-btn {
    width: 30%;
    height: 6vh;
    border-radius: 10px;
    border: 1px solid var(--primary);
  }

  .home-img2 {
    height: 60vh;
    width: 90%;
  }

  /* about */

  .about-block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    height: 100vh;
    margin-bottom: 10%;
  }

  .about-block h1 {
    font-size: 30px;
  }

  .about-p {
    width: 80%;
    font-size: 20px;
    margin: auto;
  }

  .about-p article {
    line-height: 1.5;
  }

  .about-img {
    width: 70%;
    height: 50vh;
    margin: auto;
  }

  .about-contact-btn {
    width: 25%;
    height: 10vh;
    border-radius: 8px;
    margin-top: 3%;
  }

  /* service */

  .service-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-list {
    margin-top: 8%;
  }

  .service-list h1 {
    font-size: 30px;
    margin-bottom: 8%;
    text-align: center;
  }

  .service-list div {
    margin-left: 25px;
  }

  .service-list li {
    height: 10vh;
    width: 55vw;
    font-size: 15px;
    padding-right: 5%;
    padding-left: 2%;
  }

  .service-list li b {
    padding: 6px 12px;
    margin-right: 2%;
  }

  .service-img {
    width: 40%;
    height: 90%;
  }

  
/* contact */

.contact-block {
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-top:10%;
}

.contact-block h1 {
  font-size: 30px;
  margin-bottom: 2%;
}

.icon-block {
  backdrop-filter: blur(50px);
  width: 100%;
  height: 20vh;
}

.icon-block i {
  font-size:30px;
  margin: 0 1%;
}

.email-block input {
  height: 5vh;
  width: 50%;
  margin-top: 2%;
}

.email-block i {
  font-size: 20px;
  margin:  0 0%;
}

.contact-block img {
  height: 30ch;
  width: 80%;
}

footer {
  height: 6vh;
  width: 100%;
  font-size: 20px;
  margin-top: 10%;
}

@media (max-width: 600px) {
  /* header and nav  */
  html{
    height: 100%;
    /* background-attachment: scroll; */
  }

  .header {
    height: 50vh;
    width: 60%;
    border-radius: 0 0 10px 0px;
    transition: 1500ms;
  }

  .harmBtn{
    font-size: 20px;
    border: 2px solid var(--primary);
    padding: 0 2%;
    border-radius: 5px;
  }

  .menu{
    margin-left: 5%;
  }

  .menu a {
    color: var(--primary);
    font-size: 15px;
    margin: 3vb 0;
    width: 0%;
    transition: 1500ms;
    border-bottom: 3px solid;
  }

  .menu a:hover {
    width: 50%;
  }

  .logo {
    font-size: 20px;
    margin-left: 5%;
  }

  .check-i {
    font-size: 15px;
  }

  /* home tab */

  .home-block {
    padding-top: 10%;
    width: 100%;
  }

  .home-title {
    font-size: 30px;
    line-height: 1.3;
    width: 90%;
    text-align: end;
  }

  .home-title .home-i {
    font-size: 20px;
  }

  .home-title > .fas {
    animation: fly 10000ms linear;
  }

  @keyframes fly {
    from {
      rotate: -30deg;
    }

    to {
      rotate: 5deg;
    }
  }

  .home-text {
    font-size: 15px;
    line-height: 1.3;
    width: 90%;
  }

  .home-contact-btn {
    width: 50%;
    height: 5vh;
    font-size: 15px;
    border: 1px solid var(--primary);
  }

  .home-img2 {
    height: 35vh;
    width: 90%;
  }

  /* about */

  .about-block {
    display: block;
    height: 65vh;
    margin-bottom: 10%;
    margin-top: 10%;
  }

  .about-block h1 {
    font-size: 25px;
  }

  .about-p {
    width: 90%;
    font-size: 15px;
  }

  .about-p article {
    line-height: 1.3;
  }

  .about-img {
    width: 90%;
    height: 35vh;
    margin: 5%;
  }

  .about-contact-btn {
    width: 40%;
    height: 5vh;
    border-radius: 8px;
    margin-top: 5%;
    border: 1px solid var(--primary);
  }

  /* service */
  .service-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20%;
  }

  .service-list {
    margin-top: 8%;
    width: 100%;
  }

  .service-list h1 {
    font-size: 30px;
    margin-bottom: 8%;
    text-align: center;
  }

  .service-list div {
    margin-left: 25px;
    display: none;
  }

  .service-list li {
    height: 5vh;
    width: 90vw;
    font-size: 13px;
    padding-right: 0%;
    margin: auto;
    margin-top: 5%;
    border-radius: 25px;
  }

  .service-list li b {
    padding: 3px 6px;
    margin-right: 2%;
  }

  .service-img {
    width: 70%;
    height: 65vh;
  }

   
/* contact */

.contact-block {
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-top:15%;
}

.contact-block h1 {
  font-size: 20px;
  margin-bottom: 2%;
}

.icon-block {
  backdrop-filter: blur(50px);
  width: 100%;
  height: 20vh;
}

.icon-block i {
  font-size:30px;
  margin: 0 1%;
}

.email-block{
  margin-top: 5%;
}

.email-block input {
  height: 5vh;
  width: 70%;
  margin-top: 2%;
}

.email-block i {
  font-size: 25px;
  margin:  0 0%;
}

.contact-block img {
  height: 20ch;
  width: 90%;
}

footer {
  height: 5vh;
  width: 100%;
  font-size: 13px;
  margin-top: 10%;
}

}
}
