@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;1,300;1,400&family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all ease-in-out 2s;
}

body {
  scroll-behavior: smooth;
  transition: 1.25s ease-in;
}

#logo {
  display: flex;
  justify-content: center;
  height: 5rem;
  width: auto;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}
#logo img {
  align-self: center;
  height: 4rem;
  width: auto;
}

header {
  font-family: "Poppins";
  position: fixed;
  top: 10;
  width: 100%;
  z-index: 1;
  background-color: #7eea00;
}
header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
header nav ul li {
  margin: 7px;
  font-family: "Kanit";
  font-size: 1.2rem;
}
header nav ul li a {
  text-decoration: none;
  color: black;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 100%;
  background-color: snow;
}
footer .copy {
  color: blue;
  font-family: "Poppins";
  font-weight: bold;
  font-size: 1.3rem;
}
footer span {
  font-size: 12px;
  font-weight: bold;
  font-family: "Kanit";
}

/*Menu Icon*/
.wrapper {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 999;
  background: #7eea00;
  height: 3rem;
}
.wrapper .container {
  z-index: 999;
  height: 25px;
  width: 60px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.wrapper .container .menulogo {
  height: 7px;
  width: 40px;
  background-color: black;
  border-radius: 20px;
}

.menu {
  position: fixed;
  z-index: 999;
  font-family: "Poppins";
  background-color: slateblue;
  width: 10%;
  height: 100vh;
  padding: 50px;
  transform: translateX(-700px);
  transition: 0.5s;
}
.menu li {
  list-style: none;
  border-bottom: 1px solid rgb(130, 117, 218);
  padding: 20px 0;
  text-align: center;
}
.menu li:last-child {
  border-bottom: none;
}
.menu li a {
  transition: font-weight 0.2s;
  color: snow;
  text-decoration: none;
  font-size: 10px;
}

.showmenu {
  transform: translateX(0px);
}

::-webkit-scrollbar-track {
  height: 3px;
}

::-webkit-scrollbar {
  background-color: #242f3f;
  width: 9px;
}

::-webkit-scrollbar-thumb {
  background-color: #7eea00;
}

.loader-wrapper {
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #242f3f;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s, visibility 1s;
}
.loader-wrapper.fade {
  opacity: 0;
  visibility: hidden;
}
.loader-wrapper .loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #fff;
  animation: loader 2s infinite ease;
}
.loader-wrapper .loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 1s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@media all and (min-width: 1024px) and (max-width: 1280px) {
  header {
    display: none;
  }
  .wrapper {
    display: block;
  }
  .menu {
    width: 30%;
  }
  .menu li {
    border-bottom: 4px solid rgb(130, 117, 218);
  }
  .menu li a {
    font-size: 20px;
  }
  .menu li:first-child {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  #logo {
    display: none;
  }
  header {
    display: none;
  }
  .wrapper {
    display: block;
    height: 2rem;
    width: 100vw;
  }
  .wrapper .container {
    height: 20px;
    margin-top: 5px;
  }
  .wrapper .container .menulogo {
    height: 5px;
    width: 30px;
  }
  .menu {
    width: 77%;
  }
  .menu li {
    padding: 20px 0;
  }
  .menu li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  #logo {
    display: none;
  }
  header {
    display: none;
  }
  .wrapper {
    display: block;
    height: 2rem;
    width: 100vw;
  }
  .wrapper .container {
    height: 20px;
    margin-top: 5px;
  }
  .wrapper .container .menulogo {
    height: 5px;
    width: 30px;
  }
  .menu {
    width: 50%;
  }
  .menu li {
    padding: 20px 0;
  }
  .menu li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  #logo {
    display: none;
  }
  header {
    display: none;
  }
  .wrapper {
    display: block;
    height: 2rem;
    width: 100vw;
  }
  .wrapper .container {
    height: 20px;
    margin-top: 5px;
  }
  .wrapper .container .menulogo {
    height: 5px;
    width: 30px;
  }
  .menu {
    width: 50%;
  }
  .menu li {
    border-bottom: 3px solid snow;
    padding: 20px 0;
  }
  .menu li a {
    font-size: 14px;
  }
  .menu {
    width: 50%;
  }
  .menu li {
    padding: 50px 0;
    border-bottom: snow 1px solid;
  }
  .menu li a {
    font-size: 14px;
  }
}
.btn {
  font-weight: bold;
  border-radius: 9rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  margin-top: 1rem;
}
.btn.top {
  background-color: snow;
}
.btn.top a {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: black;
}
.btn.white {
  background-color: snow;
}
.btn.white a {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: black;
}
.btn.end {
  background-color: snow;
  position: relative;
  left: -40%;
  top: 9vh;
}
.btn.end a {
  text-decoration: none;
  color: #005A9C;
  font-size: 14px;
}

@media all and (min-width: 1024px) and (max-width: 1280px) {
  .btn {
    padding: 1rem 2rem;
    border: snow solid 3px;
  }
  .btn.top {
    position: relative;
    left: 40%;
    background: transparent;
  }
  .btn.top a {
    font-size: 16px;
    font-family: "Poppins";
    color: yellow;
  }
  .btn.white {
    position: relative;
    left: 30%;
    top: 24vh;
    background: transparent;
  }
  .btn.white a {
    font-size: 16px;
    font-family: "Poppins";
    color: yellow;
  }
  .btn.end {
    padding: 1rem 2rem;
    background-color: lightseagreen;
    position: relative;
    left: 178%;
  }
  .btn.end a {
    text-decoration: none;
    color: black;
    font-family: "Poppins";
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    display: block;
    padding: 8px 10px;
    border-radius: 15px;
    position: relative;
  }
  .btn.top a, .btn.white a {
    font-size: 12px;
    font-family: "Poppins";
    font-weight: normal;
  }
  .btn.white {
    top: 120px;
    left: -20%;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .btn {
    padding: 0.7rem 0.9rem;
    position: relative;
    border-radius: 0;
  }
  .btn.top {
    background-color: black;
  }
  .btn.top a {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: snow;
  }
  .btn.white {
    background-color: black;
    top: 24vh;
    left: -24%;
  }
  .btn.white a {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: snow;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .btn {
    padding: 0.8rem 1rem;
    border-radius: 9px;
    position: relative;
    border: snow solid 3px;
  }
  .btn.top {
    background-color: black;
  }
  .btn.top a {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: snow;
  }
  .btn.white {
    background-color: black;
    top: 20vh;
    left: 12%;
  }
  .btn.white a {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: snow;
  }
}
@media screen and (max-width: 320px) {
  .btn {
    display: block;
    padding: 8px 10px;
    border-radius: 15px;
    position: relative;
  }
  .btn.top a, .btn.white a {
    font-size: 12px;
    font-family: "Poppins";
    font-weight: normal;
  }
  .btn.white {
    top: 120px;
    left: -3%;
  }
}
.about-head {
  background-image: linear-gradient(rgba(6, 57, 199, 0.5), rgba(6, 45, 153, 0.705)), url(../images/heart.jpg);
  height: 43vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.about-head .headMain {
  position: relative;
  top: 30%;
}
.about-head .headMain h2 {
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 2rem;
  font-weight: bold;
  color: snow;
}

.services {
  margin-top: 6%;
  height: 40%;
  width: 100%;
}
.services .serv-head {
  color: black;
}
.services .serv-head h3 {
  font-family: cursive;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
}
.services .serv-head p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  text-align: center;
}
.services .main-services {
  display: none;
}
.services .grid-container {
  margin: 10ch auto;
  height: 90vh;
  max-height: -moz-max-content;
  max-height: max-content;
  width: 70vw;
  display: grid;
  grid-gap: 3px;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: 2fr 2fr;
}
.services .grid-container img {
  padding: -30px;
  border-radius: 20px;
  margin: 3ch 0 0 10ch;
  width: 70%;
  height: 78%;
}
.services .grid-container .img-text {
  font-size: 22px;
  text-align: center;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  padding-left: 30px;
  padding-top: 10px;
}
.services .grid-container .first {
  grid-column: 1/2;
  grid-row: 1/2;
}
.services .grid-container .second {
  grid-column: 2/3;
}
.services .grid-container .third {
  grid-column: 1/2;
}
.services .grid-container .fourth {
  grid-column: 2/3;
}

.description {
  position: relative;
  top: 1vh;
  background-color: #005A9C;
  color: snow;
  height: 40%;
  width: 100%;
}
.description h2 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  top: 1vh;
  width: 20%;
  left: 4%;
  -webkit-text-decoration: underline solid yellow;
          text-decoration: underline solid yellow;
}
.description .texx {
  display: flex;
  align-items: center;
}
.description .texx p {
  padding: 1%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: justify;
}
.description .texx img {
  position: relative;
  border-radius: 50%;
  top: -2vh;
  left: 9%;
  width: 18vw;
  height: 35vh;
}

@media all and (min-width: 1024px) and (max-width: 1280px) {
  .about-head {
    height: 20rem;
  }
  .about-head .headMain h2 {
    font-size: 32px;
  }
  .services .serv-head h3 {
    font-size: 30px;
  }
  .services .serv-head p {
    font-size: 20px;
  }
  .services .grid-container .img-text {
    margin: 10px 0 0 25px;
    padding-left: 30px;
    font-size: 22px;
  }
  .description {
    position: relative;
    top: 15vh;
  }
  .description h2 {
    font-size: 28px;
    width: 30%;
  }
  .description .texx {
    align-items: center;
    justify-content: space-around;
  }
  .description .texx p {
    margin: 3%;
    font-family: "Poppins";
    text-align: justify;
    font-size: 14px;
  }
  .description .texx img {
    height: 10rem;
    width: 10rem;
    left: -1rem;
  }
  footer {
    position: relative;
    top: 10vh;
  }
}
@media screen and (max-width: 480px) {
  .about-head {
    height: 35vh;
  }
  .about-head .headMain {
    top: 40px;
  }
  .about-head .headMain h2 {
    font-size: 19px;
  }
  .services .serv-head h3 {
    font-size: 18px;
  }
  .services .serv-head p {
    font-size: 14px;
  }
  .services .main-services {
    display: block;
    position: relative;
    top: 40px;
  }
  .services .grid-container {
    display: none;
  }
  .description {
    height: 85vh;
    top: 20vh;
  }
  .description h2 {
    width: 40%;
    font-size: 22px;
  }
  .description .texx {
    position: relative;
    top: 15px;
  }
  .description .texx p {
    font-size: 14px;
  }
  .description .texx img {
    display: none;
  }
  footer {
    position: relative;
    top: 20vh;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .about-head {
    height: 25vh;
  }
  .about-head .headMain h2 {
    font-size: 18px;
  }
  .services .serv-head h3 {
    font-size: 22px;
    font-weight: normal;
    text-decoration: underline;
  }
  .services .serv-head p {
    font-size: 16px;
    position: relative;
    top: 30px;
  }
  .services .main-services {
    display: block;
    position: relative;
    top: 60px;
  }
  .services .grid-container {
    display: none;
  }
  .description {
    height: 50vh;
    top: 15vh;
  }
  .description h2 {
    width: 40%;
    font-size: 22px;
  }
  .description .texx {
    position: relative;
    top: 30px;
  }
  .description .texx p {
    font-size: 14px;
  }
  .description .texx img {
    display: none;
  }
  footer {
    position: relative;
    top: 15vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .about-head {
    height: 35vh;
  }
  .about-head .headMain h2 {
    font-size: 24px;
  }
  .services .serv-head h3 {
    font-size: 22px;
    font-weight: normal;
    text-decoration: underline;
  }
  .services .serv-head p {
    font-size: 16px;
    position: relative;
    top: 30px;
  }
  .services .main-services {
    display: block;
    position: relative;
    top: 60px;
  }
  .services .grid-container {
    display: none;
  }
  .description {
    height: 75vh;
    top: 25vh;
  }
  .description h2 {
    width: 40%;
    font-size: 22px;
  }
  .description .texx {
    position: relative;
    top: 30px;
  }
  .description .texx p {
    font-size: 18px;
  }
  .description .texx img {
    display: none;
  }
  footer {
    position: relative;
    top: 25vh;
  }
}/*# sourceMappingURL=about.css.map */