/**********************
* Variables
**********************/

:root {
  --header-height: 5rem; /* Adjust based on your header height */
  --crimson-red: #a60f2d;
  --pacific-sky: #5BC3F5;
  --link-color: #005cbe;
  --gray: #4d4d4d;
}

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

/**********************
 * Custom CSS
 **********************/

 /* Generic Styles */

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  width: 100%;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement {
  border: 1px solid var(--crimson-red);
  border-radius: 12px;
  padding: 1rem;
}

/* Headers */

h1, h2, h3, h4, p, a {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

.underline::after{
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--crimson-red);
  z-index: 1;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
}

h4 {
  font-size: 1rem;
  font-weight: bold;
}


p {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  transition: all .1s ease-in-out;
}

a:hover {
  font-weight: bold;
}

/**********************
 * Headers/Paragraph media queries
 **********************/

@media (min-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1000px) {



  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 1rem;
  }
}


.contact-link {
  color: white;
}

.link {
  color: var(--link-color);
  text-decoration: none;
}




/**********************
 * Flex Styles
 **********************/

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.gap-less {
  gap: .5rem;
}

.gap {
  gap: 1rem;
}

.padding {
  padding: 2rem;
}

.space-between {
  justify-content: space-between;
}

/**********************
 * Typography
 **********************/

.fine-print {
  font-weight: light;
  font-size: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.italic {
  font-style: italic;
}

/**********************
 * Generic buttons
 **********************/

.main-button {
  background-color: var(--crimson-red);
  border-radius: 4px;
  color: white;
  width: min-content;
  text-wrap: nowrap;
  text-align: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  align-content: center;
}

.main-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--pacific-sky);
}

/**********************
 * Header section
 **********************/

header {
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height); /* Use the variable for header height */
}

/* Logo */

#logo {
  width: 50px;
  height: 50px;
  background-image: url(../../images/SHS.svg);
  background-size: contain;
}


/**********************
 * Header Media Queries
 **********************/
@media (min-width: 600px) {
  header {
    padding: 0 2rem;
  }
}


/**********************
 * Nav
 **********************/

nav {
  overflow-x: hidden;
}

#nav-hamburger:focus {
  outline: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: absolute;
  /* background-color: red; */
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  z-index: 100;
}

/* animations for overlay */

@keyframes slide-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 50%;
  }
}

@keyframes slide-out {
  0% {
    opacity: 50%;
  }
  100% {
    opacity: 0;
  }
}

/**********************
 * Nav
 **********************/

#nav-links {
  width: 80%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: -100%;
  background-color: white;
  display: flex;
  transition: all 0.3s ease-in-out;
  z-index: 4;
}

/* ul is the list container for the nav links */
#nav-links > ul {
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* referencing the anchor tags for nav links */
#nav-links > ul > li > a {
  color: black;
  text-decoration: none;
  position: relative;
}


#nav-links > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--crimson-red);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  /* animation: linkBarSlide 0.3s ease-in-out reverse; */
}

#nav-links > ul > li > a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--crimson-red);
  opacity: 1;
  /* animation: linkBarSlide 0.3s ease-in-out; */
}

#nav-links > ul > li > a:hover {
  /* scale the element */
  font-weight: bold;
  color: var(--crimson-red);
  transition: all 0.3s ease-in-out;


}

#nav-links.active {
  right: 0;
}

@keyframes linkBarSlide {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
  
}

/*** Mobile Nav: Overlay */
#nav-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  z-index: 3;
  opacity: 0.5;
  animation: slide-in 0.5s ease-in-out;
}

/* When user exits mobile nav, slide out the overlay */
#nav-overlay.slide-out {
  animation: slide-out 0.5s ease-in-out;
}

/* mobile nav links */
#nav-overlay > ul {
}

/* Hamburger */
/* 
  The hamburger icon and exit icon will alternate visibility when pressed.
  The hamburger icon will be visible when the nav is closed, and the exit icon will be visible when the nav is open.
  See nav.js for the logic to toggle the visibility of these icons. 
*/

#hamburger {
  width: 40px;
  height: 40px;
  visibility: hidden;
}

#hamburger.active {
  visibility: visible;
}

#exit-icon {
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  visibility: hidden;
}

#exit-icon.active {
  visibility: visible;
}

.nav-icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

/**********************
  * Nav Media Queries
  **********************/
@media (min-width: 600px) {

  :root {
    --header-height: 100px; /* Adjust based on your header height */
  }
  #hamburger {
    display: none;
  }

  #exit-icon {
    display: none;
  }

  #nav-links {
    position: relative;
    width: 100%;
    height: auto;
    right: 0;
    top: 0;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: visible;
  }

  #nav-links > ul {
    flex-direction: row;
    gap: 2rem;
  }

  .icon-button {
    display: none;
  }
}

/**********************
 * Body
 **********************/
body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
}

/**********************
 * Main
 **********************/
main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  margin-top: var(--header-height); 
  margin-bottom: 1rem;
  justify-content: start;
}


/**********************
 * Hero
 **********************/

#hero {
  width: 100%;
  /* height: 200px; */
  background-image: url(../../images/wsupattern-bg_3.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 2rem;
  padding: 2rem;

}

#hero > div {
  text-align: center;
  color: white;
}

#hero > p {
  color: white;
  font-weight: light;
}

#banner {
  width: 200px;
  margin: auto;
}

@media (min-width: 600px) {
  #hero {
    height: 300px;
    padding: 4rem;
  }
}

#welcome-section {
  padding: 2rem;
}

@media (min-width: 600px) {
  #welcome-section {
    width: 100%;
  }
}

@media (min-width: 1050px) {
  #welcome-section {
    width: 1000px;
    margin: 2rem auto;
    padding: 0;
  }
}




/**********************
 * Modals
 **********************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.838);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: white;
}


.modal-content {
  width: 100%;
  height: 80%;
  padding: 1rem;
  margin: .5rem;
  /* background-color: var(--crimson-red); */
  background-color: var(--gray);
  border-radius: 12px;
}

.modal-content > .appointment-header {
  margin-bottom: 1rem;
}

.modal-content h2 {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-content > iframe {
  width: 100%;
  height: 90%;
  border: none;
  border-radius: 12px;
}

@media (min-width: 600px) {
  .modal-content {
    margin: 2rem;
    padding: 2rem;
  }
}



/**********************
 * Google Search
 **********************/

#google-search {
  width: 250px;
  margin: auto;
}


#___gcse_0 {
  padding: 0 !important;
  margin: 0 !important;
  width: 300px;
  background: none !important;
  border: none !important;
}

/* Container */
.gsc-control-cse {
  font-family: "Montserrat", sans-serif;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 6px;
  width: 100% !important;
  background: #272727 !important;
  border: #5C5C5C !important;
}

.gsc-control-cse::after {
  display: none;
}


.gsc-control-wrapper-cse {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  background: none !important;
}

.gsc-control-wrapper-cse > form {
  margin-top: auto !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  background: none !important;
}

.gsc-search-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 4px !important;
  background: none !important;
}

.gsc-search-box > table {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}

.gsc-search-box > tbody {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Search input box */
.gsc-input {
  width: 100% !important;
  border: none !important;
  border-radius: 4px !important;
  /* padding: 8px !important; */
  margin: 0 !important;
  background: none !important;
}

.gsc-input > div > table > tbody > tr > td > input {
  background: none !important;
  color: white !important;
}

.gsc-input > div > table > tbody > tr > td > input::placeholder {
  font-weight: light;
  color: white !important;
}

.gsc-input-box {
  width: 100% !important;
  background: none !important;
}

.gsc-input > div {
  border: none;
}

/* Search button */
.gsc-search-button {
  color: white !important;
  border: none !important;
  /* padding: 8px 15px !important; */
  margin: 0 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  background: black !important;
}

.gsc-search-button:hover {
  background-color: #005bb5 !important;
}

/**********************
 * Quick Links
 **********************/
#quick-links {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 2rem 1rem 2rem;
  padding: 2rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#quick-links h2 {
  position: relative;
  display: inline;
  width: fit-content;
}

#quick-links h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 4px;
  background-color: var(--crimson-red);
  transform: translateX(-50%);
}

#quick-links > ul > section {
  overflow: hidden;
}

#quick-links > ul > section.active {
  margin: 0rem 0 1rem 0;
}

#quick-links > ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: auto;
  position: relative;
}

#quick-links > ul > li {
  border: 2px solid #4d4d4d;
  width: 100%;
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* icons */

#quick-links .ql-icon {
  display: none;
  width: 50px;
  height: 50px;
  margin: auto;
  pointer-events: none;
}

#quick-links > ul > li:nth-child(1) {
  border: 2px solid var(--crimson-red);
  color: var(--crimson-red);
}

#quick-links .caret {
  z-index: 2;
  position: absolute;
  right: 1rem;
  width: 25px;
  height: 25px;
  border-radius: 12px;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

#quick-links .active > .caret {
  transform: rotate(0deg);
  color: var(--pacific-sky);
}

#quick-links > ul > li > p {
  font-weight: bold;
  margin: 0;
  padding: 0;
  pointer-events: none;
  display: inline;
  position: relative;
  transition: all 0.3s ease-in-out;
}

#quick-links > ul > li.active {
  border: 2px solid var(--pacific-sky);
  font-size: 1.2rem;
}



/**********************
  * Quick Links: Media Queries
  **********************/


/* transition from vertical display to horizontal */
@media (min-width: 900px) {
  #quick-links {
    position: relative;
    z-index: 3;
    /* overflow: hidden; */
    border-radius: 0;
    width: 100%;
    margin: auto;
    /* height: 100%; */
    transition: all 0.3s ease-in-out; 
  }

  #quick-links::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid #4d4d4d;
    width: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }

  #quick-links.active::after {
    content: "";
    position: absolute;
    top: 107.5px;
    left: 0;
    border: 1px solid #4d4d4d;
    width: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }

  #quick-links > ul {
    display: flex;
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 900px;
  }

  #quick-links  h2 {
    position: relative;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem auto;
  }

  #quick-links h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: var(--crimson-red);
    transform: translateX(-50%);
  }

  /* Activate icons */
  #quick-links .ql-icon {
    display: block;
    width: 50px;
    height: 50px;
    margin: auto;
    pointer-events: none;
  }

  /* Deactivate carets */
  #quick-links .caret {
    display: none;
  }


  /* quick links list items */
  #quick-links > ul > li {
    border-radius: 24px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background-color: white;
    transition: all 0.3s ease-in-out;
    padding: 1.5rem;
  }

  #quick-links > ul > li:hover {
    box-shadow: 0 0 8px rgba(182, 18, 18, 0.443);
    scale: 1.2;
  }

  #quick-links > ul > li > img {
    display: block;
    width: 50%;
  }


  /* Zoom Helpdesk link reference */
  #quick-links > ul > li:nth-child(1) {
    border: 2px solid var(--crimson-red);
    color: #0f44a6;
    order: 3;
  }

  #quick-links li.active {
    box-shadow: 0 0 8px var(--pacific-sky);
  }

  #quick-links > ul > li:nth-child(1).active {
    box-shadow: 0 0 8px var(--pacific-sky);
    border: 2px solid var(--pacific-sky);
  }


  /* appointments link */
  #quick-links > ul > li:nth-child(3) {
    order: 1;
  }
  /* services link */
  #quick-links > ul > li:nth-child(5) {
    order: 2;
  }

  /* guides link */
  #quick-links > ul > li:nth-child(7) {
    order: 4;
  }

  /* contact link */
  #quick-links > ul > li:nth-child(9) {
    order: 5;
  }

  /* 
    Sections within the list are hidden between li elements and will slide down when activated 
    See main.js starting at line 102 for dropdown functionality
  */
  #quick-links > ul > section {
    opacity: 0;
    margin: 1rem;
  }

  #quick-links > ul > section.active {
    opacity: 1;
    margin: 1rem 1rem;
  }

  .info {
    position: absolute;
    top: 100%;
  }
}

/**********************
 * Helpdesk section
 **********************/
#helpdesk {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin 0.5s ease-in-out;
}

#helpdesk-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  display: flex;
}

#helpdesk-overlay .overlay-content {
  width: 500px;
  height: 500px;
  background-color: white;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.303);
}

.slide-down {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, margin 0.5s ease-in-out;
}

.slide-down.active {
  max-height: null;
}


/* slidedown animations */
@keyframes slideDown {
  0% {
    visibility: hidden;
    height: 0;
    opacity: 0;
    margin: 2rem;

  }
  70% {
    opacity: 0;
    height: 100%;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes slideUp {
  0% {
    visibility: visible;
    height: 100%;
    max-height: 100%;
    opacity: 1;
    margin: 2rem;
  }
  50% {
    opacity: 0;
  }
  90% {
    height: 0;
    opacity: 0;
    margin: 0;
    max-height: 0;
  }

  100% {
    visibility: hidden;
  }
  
}



/**********************
 * Welcome
 **********************/

#welcome > svg {
  display: none;
}

@media (min-width: 600px) {
  #welcome {
    margin: auto;
    position: relative;
    padding: 5rem;
  }

  #welcome > div {
    width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #welcome > svg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    scale: 1.1;
  }

  #welcome > svg > path {
    stroke-width: .5;
  }
}

/* Welcome quote */

#welcome-quote {
  width: 100%;
  padding: 3rem;
  gap: 1rem;
}

#welcome-quote > p {
  font-size: 1.5rem;
  font-weight: bold;
}

#welcome-quote > span {
  margin-left: auto;
  font-weight: light;
}

/**********************
 * Services
 **********************/

#services > h2,
#services > p,
#services > ul {
  position: relative;
  z-index: 2;
}

#services > ul {
  font-weight: bold;
}



/**********************
 * Guides
 **********************/

#guides {
  overflow: hidden;
}


 .link-list > li > a {
  color: var(--link-color);
  font-weight: light;
 }

 #guides > div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
 }


/**********************
 * Meet the Team
 **********************/

.swiper-slide > .profile-pic {
  margin: auto;
  width: 200px;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
}

.team-slide {
  /* height: 400px; */
  border: 1px solid black;
  padding: 1rem;
}

.team-text-content {
  padding: 1rem;
}

.team-labels {
  margin: 0.5rem 0 1rem 0;
}

/**********************
 * Google Maps
 **********************/
 #map {
  width: 100%;
  height: 200px;
  margin-top: 1rem;
  border-radius: 12px;
  /* border: 3px solid #000000; */
 }

/**********************
 * Footer
 **********************/

footer {
  /* background-image: url(../../images/wsupattern-bg_3.png); */
  background-color: #4D4D4D;
  padding: 2rem;
  color: white;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  /* position: fixed;
  bottom: 0;
  width: 100%; */
}

footer > h3 {
  font-weight: bold;
}

footer > div {
  justify-content: space-between;
}

.footer-socials-container {
  align-items: center;
  gap: 0.5rem;
}

.footer-socials-container > div > a {
  text-decoration: none;
  color: white;
  position: relative;
}

.social-icon {
  position: relative;
  width: 50px;
  z-index: 1;
}

.social-background {
  position: absolute;
  left: 5px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  z-index: 0;
  /* transform: translate(-50%, -50%); */
}

.copyright {
  text-align: center;
  font-weight: light;
}

.soc-cop-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

/**********************
 * Footer: Media Queries
 **********************/

 @media (min-width: 600px) {
  footer {
    padding: 2rem;
    flex-direction: row;

    /* footer gets a flex class if in tablet size (see main.js line 103 function tabletView())*/
    justify-content: space-between;
  }

  .fine-print {
    gap: 2rem;
  }


 }

 @media (min-width: 1028px) {
  .fine-print {
    gap: 4rem;
  }

  footer {
    /* padding: 4rem 6rem; */
  }

 }


/**********************
 * General Media Queries
 **********************/

@media (min-width: 600px) {

  /* welcome section */


  #welcome-quote {
    width: 500px;
    margin: auto;
  }

  /* Appointments */
  #appointments > a,
  #helpdesk > a {
    margin-left: auto;
  }

  /* Swiper */
  .swiper-slide {
    width: 350px;
    height: 350px;
  }

  .team-slide {
    height: 500px;
  }

  /* Services  */
  #services {
    /* background: url(../../images/paralyzed-asian-employee-working-at-call-center-re-2025-02-17-05-00-47-utc.jpg); */
    background-size: cover;
  }

  /* #services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to right,
      rgb(255, 255, 255) 25%,
      rgba(0, 0, 0, 0)
    );
    pointer-events: none; 
    z-index: 1;
  } */


  #guides > h2, #meet-the-team > h2 {
    padding-left: 0rem;
  }
}

/* Larger Screens */
@media screen and (min-width: 900px) {
  /* html */
  html {
    overflow: visible;
  }

  /* Main */
  main {
    gap: 0;
    /* margin-top: var(--header-height); */
  }

  /* Hero */
  #hero {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
  }

  /* Welcome */
  #welcome {
    grid-column: 1 / span 4;
    margin: 10rem auto;
  }



  #welcome-quote {
    grid-column: 1 / span 4;
    width: 700px;
    margin: 5rem auto;
  }

  /* Quick Links */
  #quick-links {
    /* grid-column: 1 / span 4; */
  }

  /* Services */
  #services {
    /* margin: auto; */
    /* grid-column: 2 / 4; */
    /* background-position-x: center; */
  }

  #services::before {
    border-radius: 12px;
  }

  /* Helpdesk */
  #helpdesk {
    grid-column: 2 / 4;
    grid-row: 6;
  }

  #helpdesk > a {
    margin-top: auto;
  }

  /* Appointments */
  #appointments {
    grid-column: 2 / 4;
  }

  /* Tutorials */
  #guides {
    grid-column: 2 / 4;
    /* overflow: hidden; */
  }

  /* Meet the Team */
  #meet-the-team {
    grid-column: 2 / 4;
    margin-bottom: 2rem;
  }

  /* Bento styles */
  .bento-box {
    border: 1px solid black;
    border-radius: 12px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    /* padding: 1rem; */
    position: relative;
  }

  .mySwiper {
    width: 100%;
    height: 100%;
    /* padding: 0; */
    /* margin: 0; */
  }

  .mySwiper > .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
  }

  .swiper-slide {
    /* width: 80%;
	height: 80%; */
  }

  .video-slide {
  }
}

@media (min-width: 1500px) {
  #helpdesk {
    grid-column: 2 / 3;
  }

  #appointments {
    grid-column: 3 / 4;
  }
}
