/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  --rich-black-fogra-29-1: hsl(215, 31%, 14%);
  --rich-black-fogra-29-2: hsl(230, 14%, 8%);
  --rich-black-fogra-39: hsl(158, 29%, 5%);
  --granite-gray: hsl(0, 0%, 40%);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --go-green_50: hsla(145, 63%, 42%, 0.5);
  --go-green_8: hsla(145, 63%, 42%, 0.08);
  --go-green_5: hsla(145, 63%, 42%, 0.05);
  --light-gray: hsl(0, 0%, 80%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --mint-cream: hsl(160, 100%, 98%);
  --cultured: hsl(0, 0%, 93%);
  --go-blue: #a6b5ff;
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 18%);
  --light-gray: hsl(0, 0%, 80%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-cuprum: "Cuprum", sans-serif;

  --fs-1: 4.5rem;
  --fs-2: 3.6rem;
  --fs-3: 3.5rem;
  --fs-4: 3.2rem;
  --fs-5: 2.5rem;
  --fs-6: 2.4rem;
  --fs-7: 2.2rem;
  --fs-8: 2rem;
  --fs-9: 1.8rem;
  --fs-10: 1.5rem;
  --fs-11: 1.4rem;
  --fs-12: 1.3rem;

  --fw-600: 600;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 9.375rem;

  /**
   * shadow
   */

  --shadow-1: 3px 4px 30px hsla(0, 0%, 53%, 0.1);
  --shadow-2: 5px 3px 40px hsla(191, 100%, 17%, 0.1);

  /**
   * radius
   */

  --radius-5: 5px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
img,
span,
input,
button,
textarea,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-block-end: 60px;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--granite-gray);
  font-size: 1.6rem;
  line-height: 1.7;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 49%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--go-blue);
}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

#preloader {
  background-color: var(--go-blue);
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-preload {
  width: 50%;
  animation-name: blinker;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding: 0 15px;
}

.section {
  padding: 143.75px 0px 93.75px;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.h1,
.h2,
.h3,
.h2-sm {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-cuprum);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1.1;
}

.h2 {
  font-size: var(--fs-2);
}

.h2,
.h3,
.h2-sm {
  line-height: 1.3;
}

.h2-sm {
  font-size: var(--fs-3);
}

.h3 {
  font-size: var(--fs-7);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.btn {
  font-weight: var(--fw-600);
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-5);
  max-width: max-content;
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--go-blue);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) {
  background-color: #3d499e;
}

.flex-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
}

.project-card .img-cover {
  border-radius: 15px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.hero-img {
  width: 100%;
}

.hover\:underline {
  display: inline;
  background-image: linear-gradient(to right, var(--go-blue), var(--go-blue));
  background-repeat: no-repeat;
  max-width: max-content;
  background-position-y: bottom;
  background-size: 0 2px;
  transition: 0.5s ease;
}

.hover\:underline:is(:hover, :focus) {
  background-size: 100% 2px;
}

.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--go-blue);
  font-weight: var(--fw-500);
}

.section-subtitle {
  font-family: var(--ff-poppins);
  font-weight: 700;
  text-transform: uppercase;
  max-width: max-content;
}

.section-subtitle {
  background-color: hsla(230, 100%, 83%, 0.253);
  color: var(--coquelicot);
  padding: 8px 20px;
  border-radius: 8px;
}

.section-title {
  margin: 18px 0px 35px;
}

.grid-list {
  display: grid;
  gap: 20px;
}

.btn-link {
  --color: var(--white);
  color: var(--color);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  max-width: max-content;
  transition: var(--transition-1);
}

.btn-link::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color);
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
  --color: var(--go-blue);
}

.btn-link {
  color: var(--rich-black-fogra-29-1);
  font-size: var(--fs-12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}

.has-scrollbar {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-block-end: 30px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  min-width: 91%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar {
  height: 10px;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 25px);
}
/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn-outline {
  display: none;
}

.header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}

.header.active {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-cuprum);
  font-size: 25px;
  font-weight: var(--fw-500);
  line-height: 1;
}

.nav-open-btn {
  color: var(--rich-black-fogra-29-1);
  font-size: 35px;
}

.flex {
  display: flex;
  align-items: center;
}

.flex ion-icon {
  justify-content: center;
  margin-left: 8px;
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown-content a:hover {
  color: var(--go-blue);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  padding: 10px 0;
  border-top: 3px solid var(--go-blue);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .dropdown {
    float: none;
  }
  .dropdown-content {
    position: relative;
  }
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.navbar {
  position: fixed;
  top: 0;
  left: -280px;
  max-width: 280px;
  width: 100%;
  height: 100%;
  background-color: var(--rich-black-fogra-39);
  color: var(--white);
  padding: 30px 20px;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
  z-index: 4;
}

.navbar.active {
  visibility: visible;
  transform: translateX(280px);
  transition-duration: 0.5s;
}

.menu-item-has-children a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo,
.nav-close-btn {
  color: var(--white);
}

.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 25px;
}

.nav-close-btn {
  font-size: 30px;
}

.navbar-link {
  padding: 10px 0px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--go-blue);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 100%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 3;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-color: var(--white);
  padding: 143.75px 0px 93.75px;
  /* padding-block-start: calc(var(--section-padding) + 50px); */
  text-align: center;
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: 50px;
}

.hero-subtitle {
  color: var(--go-blue);
  font-size: var(--fs-12);
  font-weight: var(--fw-500);
  max-width: max-content;
  margin: 0 auto;
  z-index: 0;
}
.hero-subtitle::before {
  top: 8px;
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: var(--go-blue);
}
.hero-title {
  margin: 10px 0px 15px;
}

.hero-text {
  color: var(--rich-black-fogra-29-1);
}

.hero .btn-group {
  margin: 40px 0px 0px;
}

.btn-icon {
  background-color: var(--go-blue);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: 50%;
  animation: pulse-blue 2s ease infinite;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 var(--go-blue);
  }
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.hero .flex-btn .span {
  color: var(--go-blue);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  position: relative;
  border-radius: var(--radius-5);
  overflow: hidden;
  margin-bottom: 25px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--go-blue);
  font-size: 32px;
  padding: 16px;
  border-radius: 50%;
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 1px var(--white);
  }
  100% {
    box-shadow: 0 0 0 25px transparent;
  }
}

.about :is(.section-title, .section-text) {
  text-align: left;
}

.about .section-title {
  margin-block-end: 5px;
}

.about .section-text:not(:last-child) {
  margin-block-end: 18px;
}

.about .h3 {
  margin-block-end: 8px;
}

.about-list {
  margin-block: 15px 18px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.about-item ion-icon {
  color: var(--red-crayola);
  flex-shrink: 0;
  margin-block-start: 2px;
}

.about-item:not(:last-child) {
  margin-block-end: 12px;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.span {
  display: inline-block;
  color: var(--go-blue);
}

.service .section-text {
  margin-block-end: 20px;
}

.service .section-title {
  font-size: 5rem;
}
.service-card {
  background-color: hsl(0, 0%, 100%);
  padding: 50px 30px;
  border-radius: 4px;
  box-shadow: -10px 10px 40px -2px hsla(217, 21%, 16%, 0.05);
  transition: 0.5s ease;
}

.service-card:is(:hover, :focus-within) {
  transform: translateY(-10px);
}
.service-card .card-title {
  margin-block: 35px 20px;
  transition: 0.25s ease;
}

.title-wrapper h2 {
  font-size: 3.8rem;
}

.service-card .card-title:is(:hover, :focus) {
  color: var(--go-blue);
}

.service .shape-2 {
  display: none;
}

.service .shape-1 {
  bottom: 0;
  left: -50px;
}

/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project .section-title {
  margin-block-end: 30px;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.project-card .card-banner {
  margin-block-end: 35px;
}

.project-card .img-holder {
  overflow: hidden;
}

.project-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.2);

}

.project-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.project-card .h3 {
  --fs-2: 2.4rem;
  margin-block-end: 4px;
}

.project-card .card-tag {
  font-size: 1.8rem;
}

.project-card .card-link {
  color: var(--black_5);
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: 0.25s ease;
}

.project-card .card-link:is(:hover, :focus) {
  background-color: hsla(24, 100%, 50%, 0.1);
  color: var(--go-blue);
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-subtitle {
  margin-inline: auto;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;

  height: 100%;
  overflow: hidden;
}

.blog-card .card-banner {
  position: relative;
}

.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus) .card-banner img {
  transform: scale(1.1);
}

.blog-card .card-meta {
  background-color: var(--go-blue);
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 20px;
  font-size: 1.5rem;
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-content {
  padding: 25px;
}

.blog-card .card-title {
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--go-blue);
}

.blog-card .card-text {
  font-size: 1.5rem;
  margin-block: 8px 12px;
}

.btn-link {
  --color: var(--go-blue);
}

.btn-link:is(:hover, :focus) {
  --color: var(--rich-black-fogra-29-1);
}

/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event .section-title {
  margin-block-end: 50px;
}

.event-list {
  display: grid;
  gap: 30px;
}

.event-card {
  border-radius: 4px;
  box-shadow: 0px 2px 60px 0px var(--black_10);
}

.event-card .card-banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.event-card .card-banner img {
  transition: 0.25s ease;
}

.event-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.1);
}

.event-card .card-badge {
  background-color: var(--go-blue);
  color: var(--white);
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 5px;
  padding: 10px 15px;
  border-radius: 6px;
  align-items: center;
}

.event-card .card-content {
  padding: 30px;
}

.event-card .card-title {
  transition: 0.25s ease;
}

.event-card .card-title:is(:hover, :focus) {
  color: var(--go-blue);
}

.event-card .card-text {
  margin-block: 15px;
}

.event-card .card-link {
  position: relative;
  color: var(--go-blue);
  font-weight: 500;
  text-transform: uppercase;
  width: max-content;
  transition: 0.25s ease;
}

.event-card .card-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--go-blue);
  transition: 0.25s ease;
}

.event-card .card-link:is(:hover, :focus) {
  color: var(--go-blueoxford-blue-1);
}

.event-card .card-link:is(:hover, :focus)::after {
  background-color: var(--go-blueoxford-blue-1);
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact-form span {
  margin-top: 20px;
  display: none;
}
.contact .section-text {
  margin-block: 5px 35px;
}

.contact-form {
  background-color: var(--white);
  padding: 20px;
  border-radius: 2px;
  margin-block-end: 30px;
  box-shadow: 0 6px 24px var(--black_5);
}

.input-field {
  background-color: hsl(0, 14%, 98%);
  color: hsl(240, 6%, 10%);
  font-size: 1.4rem;
  padding: 15px;
  border-radius: 2px;
  outline: 1px solid transparent;
  outline-offset: 0;
  margin-block-end: 15px;
}

.input-field::-webkit-inner-spin-button {
  display: none;
}

.input-field:focus {
  outline-color: var(--go-blue);
}

.input-field::placeholder {
  transition: 0.25s ease;
}

.input-field:focus::placeholder {
  opacity: 0;
}

textarea.input-field {
  resize: vertical;
  min-height: 80px;
  height: 100px;
  max-height: 200px;
  overscroll-behavior: contain;
}

.checkbox {
  width: max-content;
  margin-block-start: 5px;
  accent-color: var(--go-blue);
}

.label-link {
  display: inline-block;
  color: var(--go-blue);
}

.label-link:is(:hover, :focus) {
  text-decoration: underline;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block-end: 15px;
}

.checkbox-wrapper .label {
  font-size: 1.3rem;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 25px;
}

.contact-item {
  min-width: 100%;
}

.contact-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0 6px 24px var(--black_5);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-card .card-icon {
  background-color: hsl(210, 60%, 98%);
  color: var(--go-blue);
  font-size: 25px;
  padding: 13px;
  border-radius: 50%;
  transition: 0.25s ease;
}

.contact-card:is(:hover, :focus) .card-icon {
  background-color: var(--go-blue);
  color: var(--white);
}

.contact-card .card-title {
  margin-block-end: 5px;
}

.contact-card :is(.card-link, .card-address) {
  font-size: 1.3rem;
  transition: 0.25s ease;
}

.contact-card .card-link:is(:hover, :focus) {
  color: var(--go-blue);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--rich-black-fogra-29-2);
  color: var(--cultured);
}

.footer .logo {
  color: var(--white);
}

.footer-text {
  margin-block: 25px;
}

.newsletter-form {
  position: relative;
  max-width: 350px;
}

.email-field {
  color: var(--white);
  font-size: var(--fs-11);
  border: 1px solid var(--granite-gray);
  padding: 15px;
  border-radius: var(--radius-5);
}

.footer .form-btn {
  background-color: var(--go-blue);
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  padding-inline: 10px;
  border-radius: var(--radius-5);
}

.footer-list-title {
  font-family: var(--ff-cuprum);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  line-height: 1.2;
  margin-block-end: 25px;
}

.footer-link {
  margin-block-start: 15px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--go-blue);
}

.footer-item,
.social-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-item {
  margin-block-start: 15px;
}

.footer-item > ion-icon {
  flex-shrink: 0;
  color: var(--go-blue);
  font-size: 20px;
  margin-block-start: 3px;
}

.contact-link {
  transition: var(--transition-1);
}

.contact-link:not(.address):is(:hover, :focus) {
  color: var(--go-blue);
}

.footer-item:last-child {
  margin-block-start: 25px;
  padding-block-start: 25px;
  border-block-start: 1px solid var(--granite-gray);
}

.social-link {
  font-size: 14px;
  border: 1px solid var(--granite-gray);
  padding: 10px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  background-color: var(--go-blue);
  border-color: var(--go-blue);
}

.footer-bottom {
  padding-block: 15px;
  border-block-start: 1px solid var(--jet);
}

.copyright {
  font-size: var(--fs-12);
  text-align: center;
  margin-block-end: 15px;
}

.copyright-link {
  display: inline-block;
  color: var(--go-blue);
  font-weight: var(--fw-500);
}

.footer-bottom-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-link {
  font-size: var(--fs-11);
  transition: var(--transition-1);
}

.footer-bottom-link:is(:hover, :focus) {
  color: var(--go-blue);
}

/*-----------------------------------*\
  #MEDIA QUERIES 
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
  }

  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }

  /**
   * PROJECT
   */

  .project-list > * {
    min-width: 100%;
  }

  /**
   * CONTACT
   */

  .input-wrapper {
    display: flex;
    gap: 15px;
  }

  .contact-item {
    min-width: calc(50% - 18px);
  }

  .event-card .h3 {
    --fs-5: 2.6rem;
  }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 7rem;
    --fs-2: 4rem;
    --fs-4: 3.5rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .scrollbar-item {
    min-width: calc(50% - 12.5px);
  }

  .btn {
    padding: 16px 32px;
  }

  .section-text.text-center {
    max-width: 50ch;
    margin-inline: auto;
  }

  .btn-link {
    --fs-12: 1.4rem;
  }

  /**
   * HERO
   */

  .hero-subtitle {
    --fs-12: 1.4rem;
  }

  /**
   * SERVICE
   */

  .service .section-text {
    margin-block: 0;
    text-align: left;
  }
  /**
   * ABOUT
   */

  .about-banner {
    max-width: 550px;
  }

  .about .section-text {
    max-width: unset;
    margin-inline: 0;
  }

  /**
   * PROJECT
   */

  .project-list > * {
    min-width: calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .event-list {
    grid-template-columns: 1fr 1fr;
  }
  /**
   * CONTACT
   */

  .contact-form {
    padding: 30px;
  }

  .contact-item {
    min-width: calc(50% - 12.5px);
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }

  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar .wrapper,
  .overlay {
    display: none;
  }

  .menu-item-has-children ion-icon {
    margin-left: 1rem;
  }

  .header {
    padding: 20px;
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    display: flex;
    gap: 40px;
  }

  .navbar-link {
    color: var(--rich-black-fogra-29-1);
    font-weight: var(--fw-500);
    padding-block: 0;
    position: relative;
  }

  .header .btn-outline {
    display: block;
    color: var(--go-blue);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    border: 1px solid var(--go-blue);
    padding: 7px 18px;
    transition: var(--transition-1);
  }

  .header .btn-outline:is(:hover, :focus) {
    background-color: var(--go-blue);
    color: var(--white);
  }

  /**
   * HERO
   */

  .hero {
    text-align: left;
  }

  .hero .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }

  .hero-subtitle {
    margin-inline: 25px 0;
  }

  .hero .btn-group {
    justify-content: flex-start;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner {
    margin-block-end: 0;
  }

  /**
   * event
   */

  .event-list {
    grid-template-columns: repeat(3, 1fr);
  }
  /**
   * CONTACT
   */

  .checkbox-wrapper {
    margin-block: 20px;
  }

  .contact-item {
    min-width: calc(33.33% - 16.66px);
  }

  .contact-card {
    padding: 30px;
  }

  .contact-card .card-icon {
    font-size: 32px;
  }
  /**
   * FOOTER
   */

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-block-end: 0;
  }
}
/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 7.5rem;
    --fs-4: 3.8rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }

  .btn-link {
    --fs-12: 1.5rem;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
  }
  /**
   * CLASS, BLOG
   */

  :is(.class-card, .blog-card) .card-content {
    padding: 30px;
  }

  .blog-card .card-meta {
    padding: 15px 30px;
  }
  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /**
   * CONTACT
   */

  .contact-form {
    padding: 50px;
  }

  .contact-card {
    gap: 20px;
  }

  .contact-card .card-icon {
    padding: 15px;
  }

  /**
   * PROJECT
   */

  .project .title-wrapper > div {
    width: 75%;
  }

  .project-list > * {
    min-width: calc(33.33% - 40px);
    width: calc(33.33% - 40px);
  }
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-between;
}

.logos img {
  height: 2.5rem;
}

.logos-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logos-2 img {
  height: 4rem;
}
