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

/**
 * copyright 2022 codewithsadee
 */





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

:root {

  /**
   * colors
   */

  --st-patricks-blue: hsl(236, 57%, 28%);
  --amaranth-purple: hsl(335, 88%, 38%);
  /* --royal-blue-dark: hsl(231, 68%, 21%); */
  --chrome-yellow: hsl(39, 100%, 52%);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  --purple-navy: hsl(236, 26%, 43%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: hsl(335, 87%, 53%);
  --razzmatazz: hsl(335, 87%, 51%);
  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(29, 99%, 67%);
  --white: hsl(0, 0%, 100%);

  --secondary-color: #25274D;
  --light-royal-blue: #2E9CCA;

  --dark-blue: #25274D;

  --royal-blue: #2E9CCA;

  --gradient-1: linear-gradient(90deg,var(--royal-blue-dark) 0,var(--ksu-purple) 51%,var(--royal-blue-dark));
  --gradient-2: linear-gradient(90deg,var(--razzmatazz) ,var(--rajah));

  --gradient-4: linear-gradient(90deg,var(--dark-blue) ,var(--dark-blue));

  /**
   * typography
   */

  --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.1rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

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

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

}





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

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

li { list-style: none; }

a { text-decoration: none; }

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

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

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

/* img { height: auto; } */

address { font-style: normal; }

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

body {
  background-color: var(--white);
  color: var(--purple-navy);
  font-size: 1.6rem;
}

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

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

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





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

.container { padding-inline: 15px; }

.h2,
.h3 { font-family: var(--ff-source-sans-pro); }

.btn {
  /* background-image: var(--gradient-2); */
  background-color: var(--secondary-color);
  background-size: 200%;
  color: var(--white);
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 0 25px;
  transition: var(--transition-2);
}

.btn:is(:hover, :focus) { background-position: right; }

.w-100 { width: 100%; }

.banner-animation { animation: waveAnim 2s linear infinite alternate; }

@keyframes waveAnim {
  0% { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(2px, 2px) rotate(1deg); }
}

.section { padding-block: var(--section-padding); }

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

.underline { position: relative; }

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  /* background-image: var(--gradient-2); */
  background-color: var(--secondary-color);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text { font-size: var(--fs-8); }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

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


.header-projects .peak-logo {
  filter: invert(15%) sepia(8%) saturate(4310%) hue-rotate(199deg) brightness(90%) contrast(94%);
}

.header-projects.active {
  --color: var(--st-patricks-blue);
  /* content: url(/assets/images/issa.png); */
  /* width: 10px; */
  
  position: fixed;
  background-color: var(--white);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  z-index: 1000;
}

.header-projects.active .peak-logo {
  filter: invert(15%) sepia(8%) saturate(4310%) hue-rotate(199deg) brightness(90%) contrast(94%);
}

.peak-logo-mobile {
  filter: invert(15%) sepia(8%) saturate(4310%) hue-rotate(199deg) brightness(90%) contrast(94%);
}

.peak-nav-logo {
  display: flex;
}


.header-projects {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 14px;
  z-index: 4;
  transition: var(--transition-1);
}

.header-projects.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background-color: var(--white);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
}

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

.logo {
  color: var(--st-patricks-blue);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
}

.nav-open-btn {
  color: var(--st-patricks-blue);
  font-size: 32px;
  padding: 4px;
}

.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 280px;
  min-height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

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

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 30px;
}

.navbar-top .logo {
  color: var(--st-patricks-blue);
  font-size: 4.2rem;
  font-weight: var(--fw-700);
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) { border-bottom: 1px solid var(--platinum); }

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-block: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





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

/* .hero {
  background-image: url("../images/hero-bg-bottom.png"),
                    url("../images/hero-bg.png"),
                    var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: auto, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}

.hero-content { margin-block-end: 50px; } */

.hero-subtitle {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  /* margin-block-end: 15px; */
  white-space:nowrap;
  display: inline-block;
}


/* .hidden-message-div {
  position: relative; */
  /* z-index: -10; */
  /* display: none;
  color: black;
  left: 10%;
} */


/* .message-peak-design {
  position: absolute;
  bottom: 100%;
  color: black; */
  /* user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none; */
/* } */

/* .message-peak-design ~ .cursor {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

#hoverable {
  display: inline-block;
} */

/* .hoverable:hover {
  cursor: pointer;
  z-index: -10;
} */

/* .subtitle-element {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  display: inline-block;
} */

/* .cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.01s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
} */

/* .hero-subtitle:hover ~ .cursor { */
  /* transform: scale(6); */
  /* width: 100px;
  height: 100px;
  cursor: pointer;
} */
/* 
.hero-subtitle:hover ~ .hidden-message-div {
  z-index: 10;
}
 */

/* .hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 20px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-8);
  margin-block-end: 30px;
} */





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

/* .about {
  margin-top: 200px;
} */

/* .about-container {
  margin-top: 200px;
}

.about-banner { margin-block-end: 30px; }

.about .section-title { margin-inline: 0; }

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

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

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text { font-size: var(--fs-8); } */





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/
/* 
.speciallization-container {
  margin-top: 150px;
}

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

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.service-card .card-icon {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(335, 87%, 53%, 0.12);
  aspect-ratio: 1 / 1;
  max-width: 165px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card:hover .card-icon { background-color: var(--winter-sky); }

.service-card .card-icon ion-icon {
  font-size: 5rem;
  color: var(--winter-sky);
  --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
}

.service-card:hover .card-icon ion-icon { color: var(--white); }

.service-card .title {
  text-align: center;
  margin-block-end: 15px;
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 1px solid var(--winter-sky);
  border-radius: 50%;
  color: var(--winter-sky);
  transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--winter-sky);
} */





/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/
/* 
.projects-container {
  margin-top: 125px;
}

.features-list > li:first-child { margin-block-end: 30px; }

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon { --ionicon-stroke-width: 20px; }

.features-card .title { margin-block-end: 10px; }

.features-banner { margin-block: 40px; }

.features-banner > img {
  max-width: max-content;
  margin-inline: auto;
} */





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
/* 
.blog { padding-block-end: 120px; }

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

.blog-card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.blog-card .banner {
  border-radius: var(--radius-12);
  overflow: hidden;
  margin-block-end: 15px;
}

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

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

.blog-card .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  line-height: 1.2;
  margin-block-end: 15px;
}

.blog-card .title > a { color: inherit; }

.blog-card .title > a:is(:hover, :focus) { color: var(--razzmatazz); }

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

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-8);
  color: var(--purple-navy);
  font-weight: var(--fw-500);
  padding-block-end: 10px;
}

.blog-card .meta ion-icon {
  color: var(--winter-sky);
  font-size: 22px;
  --ionicon-stroke-width: 35px;
}

.publish-date,
.comment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment {
  color: inherit;
  margin-inline-start: auto;
}

/* #experts {
  padding: 8vw 8vw 0 8vw;
  text-align: center;
} */

.team-profile {
  width: auto;
  height: 225px;
  display: inline;
}

.profile {
  border: solid black 1px;
  width: fit-content;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 20px;
}

.expert-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

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

.profile-title {
  margin-top: 10px;
  margin-bottom: 10px;
} */



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

.footer { font-size: var(--fs-8); }

.footer a { color: inherit; }

.footer-top {
  background-image: url("../images/footer-bg.png"), var(--gradient-4);
  background-repeat: no-repeat;
  background-size: auto, 200%;
  background-position: center, center;
  color: var(--white);
}

.footer-brand { margin-block-end: 30px; }

.footer-brand .logo {
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-brand .text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-top .social-link {
  background-color: var(--white);
  color: var(--secondary-color);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
  background-image: var(--gradient-2);
  color: var(--white);
}

.footer-list:not(:last-child) { margin-block-end: 25px; }

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link { padding-block: 5px; }

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) { text-decoration: underline; }

.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.footer-item-icon {
  background-color: var(--royal-blue);
  padding: 13px;
  border-radius: 50%;
}

.footer-bottom {
  background-color: var(--space-cadet-2);
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) { text-decoration: none; }





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px var(--secondary-color);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

.background-header {
  color: black;
}



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

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title { --fs-3: 3.6rem; }



  /**
   * HEADER
   */

  .header-projects .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
  }



  /**
   * ABOUT
   */

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



  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner { margin-block-end: 0; }

  .blog-card .banner a { height: 100%; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) { margin-block-end: 0; }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }

}





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

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }



  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }

  .hero-content { margin-block-end: 0; }

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



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * FEATURES
   */

  .features-list > li:first-child { margin-block-end: 0; }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(3, 1fr); }

}





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

@media (max-width: 992px) {
  .dropdown-menu-services {
    display: none;
  }
}

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .header-projects { padding-block: 20px; }

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

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .header-projects .btn { margin-inline-start: 0; }

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

  .navbar-item:not(:last-child) { border-bottom: none; }

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

  .navbar-link:hover { color: var(--secondary-color); }


  /**
   * HERO
   */

  .hero { min-height: 700px; }



  /**
   * ABOUT
   */

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



  /**
   * SERVICE
   */

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



  /**
   * FEATURES
   */

  .features-list { grid-template-columns: 1fr; }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title { grid-column: 1 / 4; }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(4, 1fr); }

  .footer-brand { grid-column: 1 / 5; }

  .footer-brand .text { max-width: 45ch; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }

  .section-title { --fs-3: 4.6rem; }



  /**
   * HERO
   */

  .hero { min-height: 800px; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }

  .blog-card { height: 100%; }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }



  /**
   * FOOTER
   */

  /* .footer-top .container { grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr; } */

  .footer-brand { grid-column: auto; }

}

/* p {
  display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
} */

/* .center-div-projects {
  display: flex;
} */
/* 
.center-div-projects {
  position: relative;
}

.absolute-div-projects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* #inside-flex-icon-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* popup code starts here */

*, *::after, *::before {
  box-sizing: border-box;
}
#social-link-GAQ {
  color: white;
  background-color: var(--secondary-color);
  transition: all 300ms ease 0s;
}

#social-link-GAQ:hover {
  color: var(--light-royal-blue);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 80%;
  max-height: 50%;
  overflow: hidden;
  overflow-y: scroll;
  /* padding-right: 20px; */
}

/* .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 80%;
  max-height: 50%;
  overflow: hidden;
  overflow-y: scroll;
} */

#popup-GAQ {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 900px;
  max-width: 80%;
  max-height: 50%;
  overflow: hidden;
  /* overflow-y: scroll; */
}

@media (max-width: 550px) {
  #popup-GAQ {
    overflow-y: scroll;
  }

  .popup-GAQ-container {
    display: block !important;
  }

  .popup-GAQ-information {
    width: auto !important;
  }

  .popup-GAQ-form {
    width: auto !important;
  }
}

@media (max-height: 1000px) {
  #popup-GAQ {
    max-height: 80%;
  }
}

#popup-GAQ::-webkit-scrollbar {
  width: 0.4vw;
}

#popup-GAQ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border: 1px transparent solid;
  border-radius: 10px;
  z-index: -10;
}

#popup-GAQ::-webkit-scrollbar-thumb:hover {
  background-color: darkgray;
  cursor: pointer;
}

#popup-GAQ::-webkit-scrollbar-track {
  background-color: white;
  margin-block: .5em;
}

#popup-GAQ.active {
  transform: translate(-50%, -50%) scale(1);
}

/* popup-GAQ^ */

.popup::-webkit-scrollbar {
  width: 0.4vw;
}

.popup::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border: 1px transparent solid;
  border-radius: 10px;
  z-index: -10;
}

.popup::-webkit-scrollbar-thumb:hover {
  background-color: darkgray;
  cursor: pointer;
}

.popup::-webkit-scrollbar-track {
  background-color: white;
  margin-block: .5em;
}

.popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.popup-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  background: var(--light-royal-blue);
  border-bottom: 1px solid var(--light-royal-blue);
}

.float-right {
  float: right;
}

.popup-header .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.popup-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.popup-header .close-button:hover {
  color: var(--secondary-color);
}

.popup-body {
  /* padding: 10px 15px; */
  font-family: var(--ff-source-sans-pro);
}

#popup-overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#popup-overlay.active {
  opacity: 1;
  pointer-events: all;
  z-index: 5;
}

.footer { font-size: var(--fs-8); }

/* edit for popup */

#name-gaq {
  border: black solid 1px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  margin-bottom: 1rem;
  height: 52px;
  background: transparent;
  color: white;
  /* -webkit-box-shadow: none !important;
  box-shadow: none !important; */
}

#name-gaq:focus {
  outline: none;
}

#email-gaq {
  border: black solid 1px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  margin-bottom: 1rem;
  height: 52px;
  background: transparent;
  color: white;
}

#email-gaq:focus {
  outline: none;
}

#phone-gaq {
  border: black solid 1px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  margin-bottom: 1.5rem;
  height: 52px;
  background: transparent;
  color: white;
}

#phone-gaq:focus {
  outline: none;
}

#text-gaq {
  border: black solid 1px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  resize: both;
  min-height: 100px;
  line-height: 20px;
  margin-bottom: 1rem;
  background: transparent;
  color: white;
}

#text-gaq:focus {
  outline: none;
}

/* 630px min */

#submit-gaq {
  background-color: var(--royal-blue);
  color: white;
  margin-top: 10px;
  /* border-radius: 10px; */
  transition: 300ms;
  margin-bottom: 1rem;
}

#submit-gaq:hover {
    /* background-color: var(--razzmatazz); */
    color: black;
}

.required-symbol {
  color: red;
  float: right;
}

#text-gaq {
  vertical-align: bottom;
}

.popup-GAQ-container {
  display: flex;
  background: var(--light-royal-blue);
}

.popup-GAQ-information {
  width: 50%;
  /* text-align: center; */
  /* padding-top: 50px; */
  padding: 1.5rem;
  background: var(--light-royal-blue);
  color: white;
}

.get-in-touch-GAQ {
  font-size: 18px;
  margin-bottom: 8px;
}

.get-in-touch-paragraph {
  padding-bottom: 15px;
}

.contact-icon-flex {
  display: flex;
  padding-bottom: 15px;
}

.contact-icon-GAQ {
  border: 1px solid black;
  /* width: 40px;
  height: 40px; */
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.contact-icon-paragraph {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

.popup-GAQ-form {
  width: 50%;
  padding: 1.5rem;
  background: var(--dark-blue);
  color: white;
  border: 1px solid var(--light-royal-blue);
  border-radius: 20px 20px 0px 0px;
}

.social-media-GAQ {
  width: 110px;
  /* margin: 0 auto; */
}

#social-link-GAQ {
  border: black solid 1px;
  padding: 7px;
  border-radius: 20px;
}

.find-us-here {
  font-size: 18px;
}

.center-container {
  position: relative;
  top: 80px;
}

.logo-with-goal {
  padding: 25px;
}

.logo-with-goal .peak-nav-logo .peak-logo {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  margin-bottom: 40px;
}

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

.border-radius-all-around {
  border-radius: 20px;
}

.padding-right-left {
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1300px) {
  .padding-right-left {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* @media (max-width: 992px) {
  .padding-right-left {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
} */

@media (max-width: 550px) {

  .center-container {
    position: relative;
    top: 0px;
  }

  .logo-with-goal {
    padding: 25px;
  }

  .logo-with-goal .peak-nav-logo .peak-logo {
    margin-bottom: 20px;
  }

  /* .padding-right-left {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  } */

  .border-radius-all-around {
    border-radius: 20px 20px 0px 0px;
  }
}

.footer { font-size: var(--fs-8); }

#contact-us-section {
  padding-top: 200px;
  /* padding-bottom: 100px; */
}

.contact-label {
  position: relative;
  left: 5%;
}

.services-down-arrow {
  float: right;
  margin-top: 5px;
  margin-left: 5px;
}

.dropdown-services.active > #services-link-navbar,
.services-link-navbar:hover {
  color: black;
}

.dropdown-services {
  position: relative;
}

.dropdown-menu-services {
  position: absolute;
  left: 0;
  /* top: calc(100% + .25rem); */
  background-color: white;
  padding: .75rem;
  border-radius: .25rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0ms ease-in-out, transform 0ms ease-in-out;
}

.dropdown-menu-services:hover {
  cursor: pointer;
}

.dropdown-services.active > #services-link-navbar + .dropdown-menu-services {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  width: max-content;
}

.multi-service-option {
  padding-top: 5px;
  padding-bottom: 5px;
}

.multi-service-option:hover {
  color: var(--light-royal-blue);
}

.hidden-item {
  display: none;
}

.section-thankyou {
  height: 50vh;
  position: relative;
  background-color: #fff;
}

.center-components {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.message-sent-img {
  width: 180px;
}

.h1-color {
  color: black;
}

.thank-you-paragraph {
  padding-top: 1em;
  padding-bottom: 2em;
  color: black;
}

#thankyou-btn {
  padding: 15px 20px 15px 15px;
  border-radius: 60px;
  /* background-color: #3719CA; */
  background-color: var(--secondary-color);
  color: white;
  /* border: transparent 2px solid; */
  transition: .4s;
  text-decoration: none;
  display: inline-flex;
}

#thankyou-btn:hover {
  padding: 15px 20px 15px 15px;
  border-radius: 50px;
  /* background-color: transparent; */
  color: black;
  /* border: #3719CA 2px solid; */
  cursor: pointer;
}

#thankyou-btn:hover > img {
  height: 25px;
  width: 40px;
  filter: invert(0%) sepia(98%) saturate(55%) hue-rotate(287deg) brightness(94%) contrast(98%);
}

#thankyou-btn > img,
#thankyou-btn > span {
  vertical-align: middle;
}

.back-arrow {
  height: 25px;
  width: 40px;
  margin-bottom: 3px;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(211deg) brightness(103%) contrast(105%);
  /* border: #3719CA solid 2px; */
}

/* .smaller-text {
  font-size: 11px !important;
} */

/* edit for popup */

.light-blue-center {
  display: none;
}

/* Facebook Messenger */

#messenger-position {
  position: fixed;
  bottom: 8%;
  right: 2%;
  z-index: 10;
}

#message-box {
  position: relative;
  background-color: white;
  height: 0px;
  width: 0px;
  border-radius: 5%;
  visibility: hidden;
  border: solid black 1px;
  opacity: 0;
  padding: 20px;
  transition: width 0.25s, height 0.25s, opacity 0.25s, visibility 0.25s;
  box-sizing: content-box;
}

#messenger-circle {
  height: 65px;
  width: 65px;
  background-color: #2E9CCA;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  float: right;
  margin-top: 15px;
  border: black solid 1px;
}
#messenger-circle:hover {
  cursor: pointer;
}

#center-facebook-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(88deg) brightness(104%) contrast(101%);
  width: auto;
}

#text-change-size-messenger {
  font-size: 2rem;
  visibility: hidden;
  margin-top: 30px;
  margin-bottom: 20px;
  /* transition: font-size 1s, visibility 0.5s; */
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: normal !important;
  font-family: 'Poppins', sans-serif !important;
  color: black !important;
}

#icon-photo-messenger {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: solid black 1px;
  visibility: hidden;
}

#x-icon-messenger {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  visibility: hidden;
}

#x-icon-messenger:hover {
  cursor: pointer;
}

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

#help-text-messenger {
  visibility: hidden;
  font-size: 18px;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: normal !important;
  font-family: 'Poppins', sans-serif !important;
  color: black !important;
}

.no-link {
  pointer-events: none; /* Prevent the phone number from being clickable */
  user-select: text; /* Allow it to be selectable but not auto-detected as a link */
}

#start-chat-btn-messenger {
  background-color: #25274D;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  padding: 10px 100px;
  border: #25274D solid 1px;
  border-radius: 10px;
  visibility: hidden;
  margin-top: 25px;
}

#start-chat-btn-messenger:hover {
  cursor: pointer;
}

.btn-spacing-messenger {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  #help-text-messenger {
    font-size: 14px; /* Set a fixed font size to prevent scaling issues */
    -webkit-user-select: text; /* Prevent auto-detection of phone number */
    user-select: text;
  }

  .no-link {
    pointer-events: none; /* Prevent the phone number from being clickable */
    user-select: text; /* Allow it to be selectable but not auto-detected as a link */
  }
}