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



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

:root {

  /**
   * colors
   */

  --yokahu-green: #33b34a;
  --medium-sea-green: hsl(157, 100%, 36%);
  --silver-chalice: hsl(0, 0%, 66%); 
  --granite-gray: hsl(0, 0%, 40%);
  --sonic-silver: hsl(208, 7%, 46%);
  --dodger-blue: hsl(205, 100%, 50%);
  --oxford-blue: hsl(219, 37%, 18%);
  --light-gray: hsl(0, 0%, 80%);
  --gunmetal: hsl(216, 14%, 21%);
  --grey: hsl(210, 12%, 97%);
  --charcoal: hsl(210, 29%, 24%);
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 20%);

  --gradient: linear-gradient(0.5turn, hsl(213, 42%, 91%), hsl(0, 0%, 100%));

  /**
   * typography
   */
   
  --ff-franklin: 'Libre Franklin', sans-serif;
  --ff-ss-pro: 'Source Serif Pro', serif;
  --ff-lora: lora, serif;
  --ff-ubuntu: 'Ubuntu', sans-serif;

  --fs-1: 28px;
  --fs-2: 26px;
  --fs-3: 24px;
  --fs-4: 22px;
  --fs-5: 18px;
  --fs-6: 17px;
  --fs-7: 15px;
  --fs-8: 13px;
  --fs-sm: .8rem;

  --fw-300: 300;
  --fw-500: 500;
  --fw-700: 700;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px 0;

}





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

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

li { list-style: none; }

a { text-decoration: none; }

input {
  font: inherit;
  background: none;
  width: 100%;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

p {
  color: var(--sonic-silver);
  line-height: 1.5;
  font-size: var(--fs-5);
}

.section-text {
  color: var(--sonic-silver);
  line-height: 1.5;
  font-size: var(--fs-5);
}

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

ion-icon { --ionicon-stroke-width: 25px; }

:focus { outline-offset: 4px; }

::marker { color: var(--yokahu-green); }

html {
  font-family: var(--ff-franklin);
  scroll-behavior: smooth;
}

body { background: var(--white); }

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

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

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

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

hr {border-left:none;border-top:none;}



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

main {
  min-height: 90vh;
}

.container { padding: 0 15px; }

.yk-link {
  color:#33b34a;
  font-size:18px;
}

.yk-heading {
  font-size: 2.6rem;
  font-family: var(--ff-ss-pro);
  color: var(--gunmetal);
  text-align: center;
  margin-bottom: 2rem;
}

.yk-sub-heading {
  font-size: 2rem;
  font-family: var(--ff-ss-pro);
  color: var(--gunmetal);
}

.corner-icon {
  padding: 20px;
  background-image:url(../images/corner-tl.svg) ; 
  background-repeat: no-repeat; 
  background-position: top left;
}

#uea, #lol, #sendai, #cc, #mis, #vts {
  box-shadow:0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
  padding: 30px;
  margin-bottom: 3rem;
}

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

.text-tiny {
  font-size: var(--fs-sm);
}

.mx-auto {
  margin-inline: auto;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-65 {
  margin-top:65px;
}

.max-100pc {
  max-width: 100%;
}

.sect-pad {
  padding: 60px 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-40 {
  padding-top: 40px;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-80 {
  padding-block: 80px;
}

.pb-120 {
  padding-bottom: 120px;
}

.dflex {
  display: flex;
}

.dinline {
  display: inline;
}

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

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

.btn {
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  padding: 8px 24px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding-block: 16px;
  display: inline-block;
}

.btn-primary {
  font-family:var(--ff-ubuntu);
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color:#333;
  border-color:#333;
  transition:0.2s ease-in-out;
}

.btn-primary:is(:hover, :focus) { 
  color:#fff;
  background-color:#000;
  border-color:#000; 
	}
	
.btn-secondary {
  font-family:var(--ff-ubuntu);
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color:var(--yokahu-green);
  border-color:var(--yokahu-green);
  transition:0.2s ease-in-out;
}

.btn-secondary:is(:hover, :focus) { 
  color:#fff;
  background-color:#2D9E41;
  border-color:#2D9E41; 
}

.btn-secondary-sm {
  font-size: 14px;
  font-family:var(--ff-ubuntu);
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color:var(--yokahu-green);
  border-radius: 4px;
  transition:0.2s ease-in-out;
  padding:10px 14px;
  margin-top:1rem;
}

.btn-secondary-sm:is(:hover, :focus) { 
  color:#fff;
  background-color:#2D9E41; 
}

.btn-large {
  font-family:var(--ff-ubuntu);
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color: rgba(186,186,186,.5);
  border: none;
  border-radius: 4px;
  transition:0.2s ease-in-out;
}

.btn-large:is(:hover, :focus) { 
  color:#fff;
  background-color: rgba(186,186,186,.4); 
}

.btn-small {
  margin-top: 2rem;
  font-size: 14px;
  font-family:var(--ff-ubuntu);
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color: rgba(186,186,186,.5);
  backdrop-filter: blur(2px);
  border-radius: 4px;
  transition:0.2s ease-in-out;
  margin-inline:auto;
  padding:10px 14px;
}

.btn-small:is(:hover, :focus) { 
  color:#fff;
  background-color: rgba(186,186,186,.4); 
}

.btn-outline {
  margin-top: 1rem;
  font-size: 14px;
  font-family:var(--ff-ubuntu);
  color:#000;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  background-color: rgba(186,186,186,0);
  border:2px solid #000;
  border-radius: 4px;
  transition:0.2s ease-in-out;
  margin-inline:auto;
  padding:10px 14px;
}

.btn-outline:is(:hover, :focus) { 
  color:#fff;
  background-color: var(--yokahu-green); 
  border: 2px solid var(--yokahu-green);
}

h1, h2 {
	font-weight: 400;
}

.h1,
.h2,
.h3,
.h4 {
  font-family: var(--ff-ss-pro);
  color: var(--gunmetal);
}

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

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

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

.h4 { font-size: var(--fs-4); }

.section-subtitle {
  color: var(--sonic-silver);
  font-size: var(--fs-8);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}


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

header {
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 4;
  transition: var(--transition);
}

header.active { box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.2); }

header .container {
  max-width: unset;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn,
.nav-close-btn {
  font-size: 35px;
  padding: 5px;
  color: var(--gunmetal);
}

:is(.nav-open-btn, .nav-close-btn) ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  padding-top: 60px;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: -2px 0 4px hsla(0, 0%, 0%, 0.1);
}

.navbar.active {
  right: 0;
  visibility: visible;
}

.navbar-link {
  display:inline-block;
  color: var(--gunmetal);
  font-size: var(--fs-5);
  font-weight: 600;
  padding: 20px;
  font-family: var(--ff-ss-pro);
}

@media (min-width:1024px) {
header .navbar-item .navbar-link {
  color: #fff;
  padding:10px;
  border-radius:4px;
}
header .home-link {
  display:none;
}
}

header.active .navbar-item .navbar-link {
  color: var(--gunmetal);
}

.open-sub-menu{
  /*display: block;*/
  font-size:20px;
  float: right;
  padding-top: 20px;
  margin-right: 28px;
  background: #f9f9f9;
  margin-top: 17px;
  padding: 5px;
  cursor:pointer;
}

@media (min-width:1024px) {
	.open-sub-menu {
		display:none;
	}
}

.navbar .navbar-list li {
	position: relative;
	/*line-height: 40px;*/
}

.navbar .navbar-list li .sub-menu {
  display: none;
  padding:6px 0 20px 18px;
}

.navbar .navbar-list li .sub-menu a {
  color: #000;
  font-size: 15px;
  line-height:30px;
  padding: 8px 12px 5px 12px;
  border-radius:3px;
}
	
@media (min-width:1024px) {
.navbar .navbar-list li .sub-menu {
  position: absolute;
  
  left: 0;
  padding: 10px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 4px;
  border-bottom: 2px white solid;
  display: none;
  z-index: 2;
}

.navbar .navbar-list li .sub-menu a {
  color: #000;
  font-size: 14px;
  line-height:20px;
  padding: 8px 14px 6px 12px;
  border-radius:3px;
}
}

.navbar .navbar-list.drop1 .about-sub-menu,
.navbar .navbar-list.drop2 .tech-sub-menu,
/*.navbar .navbar-list.drop3 .prod-sub-menu,*/
.navbar .navbar-list.drop3 .part-sub-menu,
.navbar .navbar-list.drop4 .news-sub-menu,
.navbar .navbar-list.drop5 .loc-sub-menu
 {
  display: block;
}

@media (min-width:1024px) {
.navbar .navbar-list li:hover .sub-menu {
	display:block;
}
}

.navbar .navbar-list li .sub-menu a:hover {
	background:#f7f7f7;
}

.about-sub-menu,
.tech-sub-menu,
.prod-sub-menu,
.part-sub-menu,
.news-sub-menu,
.cont-sub-menu,
.loc-sub-menu {
  white-space: nowrap;
	width: fit-content;
}

@media (max-width:1024px) {
  .sub-menu {
	width:90%;
  }
}

.nav-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
}


@media (min-width:1024px) {
.navbar-link:is(:hover, :focus) { background: hsla(0, 0%, 0%, 0.05); }
}

.navbar-item:not(:last-child) { border-bottom: 1px solid hsla(0, 0%, 0%, 0.05); }

.navbar .btn-primary {
  font-family: var(--ff-ss-pro);
  font-size: 17px;
  font-weight:400;
  text-transform:none;
  letter-spacing:0;
  text-align: left;
  padding: 20px;
  width: 100%;
  border-radius: 0;
}

.navbar .btn {
  background: var(--yokahu-green);
  border-color: var(--yokahu-green);
  transition:0.1s ease-in-out;
  
}

.navbar .btn:hover {
  background: var(--yokahu-green);
  border-color: var(--yokahu-green);
}

.overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  background: hsla(0, 0%, 0%, 0.5);
  pointer-events: all;
}


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

#hero {
  overflow:hidden;
  background-image: url(../images/hurricane.jpg);
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
}

#aboutHero {
  overflow:hidden;
  background-image: url(../images/about-page-bg-3.jpg);
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
}

#productsHero {
  overflow:hidden;
  background-image: url(../images/products-page-bg-2.jpg);
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
}

.hero-img {
  background-image:url(../images/cloud-header.jpg); 
  background-repeat: no-repeat; 
  background-size: cover;
  max-width:100%;
}

.page-404 {
  height: 100vh;
  overflow:hidden;
  background-image:url(../images/404-bg.jpg); 
  background-position: center center;
  background-repeat: no-repeat; 
  background-size: cover;
  max-width:100%;
}

.wrap-404 {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position:absolute;
  top: 0;
  left: 0;
  max-width:100%;
}

video {
   filter: brightness(75%);
}

.hero-heading {
	height:80vh;
  }

@media (min-width:768px) {
  .hero-heading {
	height:100vh;
  }
}

.hero-heading {
  
  display: flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}

.hero-heading h1 {
  padding-top:3rem;
  color:#fff;
  font-size: 3.8rem;
  z-index:1;
  /*mix-blend-mode:overlay;*/
  font-family: var(--ff-ss-pro);
  font-weight:400;
  max-width:50vw;
  text-align:center;
  line-height:1.1;
}

@media (max-width:1024px) {
	#hero video, #aboutHero video, #productsHero video  {
		visibility:hidden;
}
	.hero-heading h1 {
		font-size:3.2rem;
		max-width:80vw;
		text-align:center;
	}
}

.page-heading h1 {
  padding:10rem 0 6rem 0;
  color:#fff;
  font-size: 3.2rem;
  z-index:1;
  font-family: var(--ff-ss-pro);
  text-align:center;
}

.hero-heading .btn{
  max-width:12rem;
  margin-top:1rem;
  background: rgba(186,186,186,.5);
  border:none;
  text-transform:uppercase;
  font-weight:500;
  letter-spacing:.05rem;
  transition:0.2s ease-in-out;
}

.hero-heading .btn:hover {
	background:rgba(186,186,186,.4);
	
}

.hero-content {
  text-align: center;
  margin-bottom: 40px;
}

.hero-title { margin-bottom: 30px; }

.hero-form { margin-bottom: 25px; }

.input-field {
  background: var(--white);
  color: var(--jet);
  font-weight: 400;
  padding: 14px 18px;
  border: 1px solid var(--grey);
  border-radius: 4px;
  margin-bottom: 25px;
}

.input-field:focus {
  border-color: var(--medium-sea-green);
  outline: none;
}

.hero .btn-primary { margin-inline: auto; }

.hero-text {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
}

.hero-text span:not(:last-child) { margin-bottom: 10px; }

.hero-banner img { width: 100%; }


/*-----------------------------------*\
 * Homepage #SECTION 1 - WWA
\*-----------------------------------*/


.about {
  background: #fff;
}

.about-top,
.about-banner { margin-bottom: 0px; }

.about-banner img { width: 100%; }

.section-title,
.section-text,
.about-bottom-title,
.about-bottom-item:first-child { margin-bottom: 20px; }

.about-bottom-list { margin-left: 18px; }

.about-bottom-item { list-style: disc; }

.about .btn {
	margin-inline: auto;
}


/*-----------------------------------*\
 * Homepage #SECTION 2 - HOTW
\*-----------------------------------*/

.tech {
  text-align: center;
  background: var(--grey);
}

.tech .section-title { margin-bottom: 50px; }

.tech-list {
  display: grid;
  gap: 40px;
}

.tech .card-icon {
  color: var(--yokahu-green);
  font-size: 60px;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

.tech .card-title { margin-bottom: 12px; }


/*-----------------------------------*\
 * Homepage #SECTION 3 - CS
\*-----------------------------------*/


.climate {
  background: #fff;
}

.about-banner img { width: 100%; }

.climate .section-title { margin-bottom: 20px; }

.about-bottom-list { margin-left: 18px;margin-bottom:20px; }

.about-bottom-item { list-style: disc; }

.climate .btn {
	margin-inline: auto;
}


/*-----------------------------------*\
  #PARTNER
\*-----------------------------------*/

.partner { 
	background-color: var(--grey);
	padding: 60px 0; 
}

.partner .h3 {
	text-align: center;
	margin-bottom: 40px;
}

.partner .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.partner-logo {
	box-shadow:0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

.partnerships-logo img {
  margin-inline:auto;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.partner-logo .color,
.partner-logo:is(:hover, :focus) .gray { display: none; }

.partner-logo:is(:hover, :focus) .color,
.partner-logo .gray { display: block; }

.chaucer {
  background-image:url(../images/icons/yk-quote-fill-fade.png); 
  background-repeat: no-repeat; 
  background-position: left top;
}



/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  background-image:url(../images/wildfire.jpg);
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
  padding: 30px 0;
  text-align: center;
}

.cta-card {
  padding: 40px 0;
}

.cta-title {
  font-size: 1.8rem;
  text-align: center;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}

@media (min-width:768px) {
	.cta-title {
	font-size: 2.4rem;
	}
}

.cta-button-wrapper > a {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
  text-decoration: underline;
  display: inline-block;
}

.cta-button-wrapper > a:is(:hover, :focus) { color: var(--granite-gray); }


.cta .btn {
	margin-top:1rem;
	margin-inline:auto;
}


/*-----------------------------------*\
 * #Products page
\*-----------------------------------*/

.products {	
  padding: 4rem 0;
  background-image:url(../images/community-bg-blur.jpg); 
  background-repeat: no-repeat; 
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

@media (min-width:768px) {
  .products .container {
    background-image:url(../images/dots-right.png); 
    background-repeat: no-repeat; 
    background-position: right center;
  }
  }

.products-banner img {
	width:100%;
	box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

.products-title {
	color: #fff;
	font-weight: 400;
}

@media (max-width:1024px) {
	.products-title {
		margin-top:3rem;
		font-size: 2.5rem;
		text-align: center;
	}
}

.products .section-text {
	margin-top: 1rem;
	font-size: var(--fs-6);
	color: #fff;
}

.products ul {
	margin-left: 18px;
}

.products-list-item {
	font-size: var(--fs-6);
  color: var(--sonic-silver);
  list-style: disc;
	line-height:1.8;
}

.product-list {
  display: grid;
  gap: 24px;
}

@media (max-width:1024px) {
	.products-cards-heading {
		font-size: 2.5rem;
	}
}

.products-cards-heading {
	font-weight:400;
	text-align:center;
	margin-bottom:2rem;
}
	

@media (min-width:1024px) {
	.product-card {
		height:250px;
	}
}

.product-card {
  text-align: center;
  padding: 45px 30px;
  background-repeat: no-repeat; 
  background-size: cover;
}

.pc-1 {
	background-image:url(../images/pc-1.jpg);
}

.pc-2 {
	background-image:url(../images/pc-2.jpg);
}

.pc-3 {
	background-image:url(../images/pc-3.jpg);
}

.pc-4 {
	background-image:url(../images/pc-4.jpg);
}

.pc-5 {
	background-image:url(../images/pc-5.jpg);
}

.pc-6 {
	background-image:url(../images/pc-6.jpg);
}

.product-card-title {
	font-size: 1.8rem;
	color: #fff;
	margin-bottom:1rem;
}

.product-card-text {
	font-size: var(--fs-7);
	color: #fff;
	line-height:1.4;
}

.solutions {
	padding-bottom:100px;
}

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

.solution-card {
	text-align: center;
	padding: 45px 30px 50px 30px;
	box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
}

.solution-card h3 {
	font-size: 1.7rem;
	font-family: var(--ff-ss-pro);
}

.solution-icon {
	margin-inline: auto;
	margin-bottom: 1.2rem;
	font-size: 60px;
	color: var(--yokahu-green);
	padding: 12px;
    background: #f9f9f9;
    border-radius: 50%;
}


/*-----------------------------------*\
 * #Technology page
\*-----------------------------------*/

.technology {
  padding: 4rem 0;
  background-image:url(../images/technology-bg-blur.jpg); 
  background-repeat: no-repeat; 
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

@media (min-width:768px) {
.technology .container {
  background-image:url(../images/dots-right.png); 
  background-repeat: no-repeat; 
  background-position: right top;
}
}

.technology-banner img {
	width:100%;
}

.technology-title {
	color: #fff;
	font-weight: 400;
}

@media (max-width:1024px) {
	.technology-title {
		margin-top:3rem;
		font-size: 2.5rem;
		text-align: center;
	}
}

.technology .section-text {
	margin-top: 1rem;
	font-size: var(--fs-6);
	color: #fff;
}

.technology-text-wrapper {
  padding: 20px;
  margin-bottom: 3rem;
  background-image:url(../images/corner-tl.svg) ; 
  background-repeat: no-repeat; 
  background-position: top left;
}

.technology ul {
	margin-left: 18px;
}

.technology-list-item {
	font-size: var(--fs-6);
    color: #fff;
    list-style: disc;
	line-height:1.8;
}

@media (max-width:1024px) {
	.technology-grid-title {
		font-size: 2.5rem;
	}
}

.technology-grid-title {
	margin-bottom:2rem;
}

.technology-grid-list {
	display: grid;
	gap: 24px;
	margin-block-end: 50px;
}

.technology-card {
	height: 100%;
	padding: 40px;
	text-align: center;
	box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
}

.technology-card::after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--yokahu-green);
  transition:0.2s ease-in-out;
}

.technology-card:is(:hover, :focus-within)::after { width: 100%; }

.technology .card-icon {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 10px; 
}

.technology-card-title {
	  font-family: var(--ff-ss-pro);
	  font-size:1.8rem;
	  color: var(--gunmetal);
	  margin-bottom:1rem;
  }

.technology-card .card-text { margin-block: 5px 0 10px 0;line-height:1.4; }

.technology .btn { margin-inline: auto; }

@media (max-width: 768px) {
	.btn-secondary-sm { margin-inline:auto; }
	.technology-card .card-icon { display:inline-block;margin-bottom:1rem; }
}

@media (min-width: 768px) {
  .technology-grid-list { grid-template-columns: 1fr 1fr; }

  .technology-card { text-align: left; }

  .technology-card .card-icon { margin-inline: 0;padding-top: 40px; }
  
  .technology-card .btn-link { justify-content: flex-start; }

}

@media (min-width: 992px) {
	.technology-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }
}


/*-----------------------------------*\
 * #About page
\*-----------------------------------*/

.about-page {
  background-image:url(../images/about-header.jpg); 
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

.about-heading h1 {
  color:#fff;
  font-size: 3.2rem;
  font-family: var(--ff-ss-pro);
  text-align:center;
  padding:5rem 0;
}

.about-intro .h3{
  margin-bottom: 1.4rem;
  text-align: center;
}

.about-intro-wrapper {
  padding: 20px;
  background-image:url(../images/corner-tl.svg) ; 
  background-repeat: no-repeat; 
  background-position: top left;
}

/*.about-intro-wrapper p {
  box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
  padding: 30px;
  border-radius: 6px;
  background: #333;
  color:#fff;
}*/

.about-intro .container {
  max-width: 800px;
}

.origin {
  padding-bottom: 80px;
}

.origin-img img {
  width: 100%;
}

.origin-wrapper {
  box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
}

.abt-btn {
  display:flex;
}

@media (max-width:768px) {
  .origin-text, .team-text {
    padding:30px 30px 60px;
  }
  .partnerships-text {
    padding:30px 30px 0;
  }
  .abt-btn {
    justify-content: center;
  }
}

@media (min-width:768px) {
  .origin-text, .team-text {
    padding-right:30px;
    padding-left: 30px;
  }
}

.partnerships {
  background-image:url(../images/partnerships-bg-blur.jpg); 
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
}

.partnerships-title {
  color: #fff;
}

.partnerships-text p {
  color: #f5f5f5;
}

@media (min-width:768px) {
.partnerships .container {
  background-image:url(../images/dots-left.png); 
  background-repeat: no-repeat; 
  background-position: left center;
}
}

.partnerships-img img {
  width: 100%;
}

.team {
  padding-top:80px;
  padding-bottom: 120px;
}

.team-img img {
  width: 100%;
}

.team-wrapper {
  box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
}


/*-----------------------------------*\
 * #Partners page
\*-----------------------------------*/

.partners-page {
  background-image:url(../images/partners-header.jpg); 
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

.partners-heading h1 {
  color:#fff;
  font-size: 3.2rem;
  font-family: var(--ff-ss-pro);
  text-align:center;
  padding:5rem 0;
}

.partners-intro-wrapper {
  padding-bottom: 2rem;
}

.partners-intro-wrapper img {
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.partners-intro .container {
  max-width: 800px;
}

.partners-item {
  padding: 40px 0 50px 0;
  border-top: 1px dashed var(--grey);
  text-align:center;
}

.partners-item h2 {
  font-family: var(--ff-ss-pro);
  color: var(--gunmetal);
  font-weight: 400;
  font-size:2rem;
  text-align: center;
}

.partners-item img {
  margin-inline: auto;
  margin-top: .25rem;
  margin-bottom: 1rem;
}

.partners-item a {
  margin-top: 0;
  margin-inline: auto;
}


/*-----------------------------------*\
 * #News page
\*-----------------------------------*/

.news-page {
  background-image:url(../images/news-header.jpg); 
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

.news-heading h1 {
  color:#fff;
  font-size: 3.2rem;
  font-family: var(--ff-ss-pro);
  text-align:center;
  padding:5rem 0;
}

.blog-heading {
  font-size: 42px;
}

.blog .h3 {
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-card-group { margin-bottom: 3rem; }

.blog-card {
  background: var(--background-primary);
  padding: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
  transition: 0.25s ease;
}

.blog-card-banner img {
  max-width: 100%;
  transition:0.5s ease-in-out;
  filter: brightness(80%);
}

.blog-card-banner img:is(:hover, :focus-within) {
  filter: brightness(100%);
}

/*.blog-card-banner { display: none; }*/

.blog-content-wrapper { padding: 10px 5px; }

.blog-topic {
  background: var(--grey);
  color: #728197;
  font-weight: 600;
  padding: .5rem .75rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.blog-card .h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-card .h3:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.blog-text,
.profile-wrapper { display: none; }

.blog .wrapper {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap: 15px;
}

.blog .h4 { color: var(--foreground-secondary); }

.blog .h4:hover { color: var(--accent); }

.blog .text-sm {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--sonic-silver);
  margin-top: 1rem;
}

.blog .separator {
  background: var(--sonic-silver);
  margin-inline: 3px;
  margin: 0 3px; 
  width:  3px;
  height: 3px;
  border-radius: 3px;
}

.blog ion-icon { --ionicon-stroke-width: 50px; }

.aside { display: none; }



/*-----------------------------------*\
 * #Locations page
\*-----------------------------------*/


.locations-page {
  background-image:url(../images/locations-header.jpg); 
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

.locations-heading h1 {
  color:#fff;
  font-size: 3.2rem;
  font-family: var(--ff-ss-pro);
  text-align:center;
  padding:5rem 0;
}

.locations-intro .container {
  max-width: 800px;
  padding-top: 80px;
  padding-bottom: 40px;
}

.location-heading {
  font-size: 42px;
  text-align: center;
  margin-bottom: 2rem;
}

.locations {
  padding-bottom: 80px;
}

.location-list-1, .location-list-2 {
    display: grid;
    gap: 24px;
}

.location-list-2 {
  margin-top: 24px;
}

.location-card {
  padding: 6px;
	text-align: center;
	box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
}

.location-card h3 {
	font-size: 1.7rem;
	font-family: var(--ff-ss-pro);
}

.lc-contain {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  transition: 1.5s all ease-in-out;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-card-wrapper {
  padding: 20px 15px 30px 15px;
}

.location-card .btn-outline {
  display: inline-block;
}

/*-----------------------------------*\
 * #Contact page
\*-----------------------------------*/

.contact-page, .hurricane-info {
  background-image:url(../images/contact-header.jpg); 
  background-repeat: no-repeat; 
  background-size: cover;
  max-width:100%;
  border-bottom: 3px solid var(--yokahu-green);
}

.contact-heading h1 {
  color:#fff;
  font-size: 3.2rem;
  font-family: var(--ff-ss-pro);
  text-align:center;
  padding:5rem 0;
}

.contact .section-title {
  margin: 30px 0;
  font-size: 2.4rem;
}

.contact-item-icon {
  font-size: 25px;
  color: var(--yokahu-green);
  margin-bottom: 5px;
}

.contact-item-icon ion-icon { --ionicon-stroke-width: 40px; }

.contact-list-item .contact-info {
  color: var(--color-secondary);
  font-style: normal;
  line-height: 1.6;
  transition: var(--transition-1);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact-list-item {
    text-align: center;
  }
  .contact-item-icon ion-icon {
    margin-inline: auto;
  }
  .contact-list {
    margin-block: 4rem;
  }
}

.contact-info:not(address):is(:hover, :focus) { color: var(--color-primary); }

.logo-light {
  margin-top: 50px;
}

.contact-form {
  padding: 30px 20px;
  border-radius: 6px;
  box-shadow:0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

.form-label {
  color: var(--color-primary);
  font-size: var(--fs-7);
  font-family: var(--ff-poppins);
  margin-bottom: 8px;
  margin-left: 5px;
}

.input-wrapper { position: relative; }

.input-field {
  background: var(--grey);
  padding: 10px;
  padding-left: 40px;
  border-radius: 4px;
  transition: var(--transition-1);
}

.input-wrapper ion-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--color-secondary);
  font-size: 20px;
  transition: var(--transition-1);
}

textarea.input-field {
  min-height: 60px;
  height: 180px;
  max-height: 200px;
  resize: vertical;
  width:100%;
  font: inherit;
}

.input-field:focus + ion-icon { color: var(--yokahu-green); }

.contact .btn-primary {
  display:flex;
  background: var(--color-primary);
  color: var(--bg-primary);
  padding: 10px 16px;
}

.send-icon {
  font-size:12px;
  margin-top: 3px;
  margin-left:5px;
}

.contact .btn-primary:hover {
  background-color: var(--yokahu-green);
  color: #fff;
  border-color: var(--yokahu-green);
}

#formSubmit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.submit-message {
  display: inline-flex;
  margin-inline: auto;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #362F2F;
  padding: 1rem 2rem;
  border-radius: 4px;
  color: #fff;
  box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
}

.dismiss {
  display: flex;
  font-size: .75rem;
  align-items: center;
  padding-left: 1rem;
  font-weight: 400;
  color: var(--yokahu-green);
  cursor: pointer;
}

/*-----------------------------------*\
 * #Submenu pages 
\*-----------------------------------*/


/*-----------------------------------*\
 * #Origin page
\*-----------------------------------*/


.yk-timeline {
  border-left: 3px solid var(--yokahu-green);
  padding-top:4rem;
  margin-left: 8px;
}

.yk-timeline h3 {
  font-size: 20px;
  font-weight: 400;
  box-shadow:0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
  padding: 15px;
}

.timeline-year {
  position: relative;
  line-height: 1.5;
  margin-left: 20px;
  margin-bottom: 40px;
}

.timeline-year::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yokahu-green);
  border-radius: 999px;
  left: -28px;
  top: 23px;
}

/*.timeline-year:last-child::before {
  top: 3px;
}*/

.founders {
  padding-top:2rem;
  padding-bottom: 4rem;
}

.founder-card {
  padding: 24px;
  margin-bottom: 40px;
  transition: 0.25s ease;
  box-shadow:0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

.founder-card p {
  font-size: 1rem;
}

.founder-img-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  margin-inline: auto;
  max-width: 300px;
}

.founder-img-box img {
  max-width: 100%;
  align-self: center;
}

.founder-img-box .founder-icon {
  stroke-width: 1px;
  font-size: 14rem;
  margin-inline: auto;
  transition: 0.25s ease;
}

.founder-card .founder-socials {
  position: absolute;
  bottom: -60px;
  left:   50%;
  transform: translateX(-50%);
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap: 20px;
  transition: 0.25s ease;
}

.founder-card .founder-socials a {
  background: var(--yokahu-green);
  color: #fff;
  width:  40px;
  height: 40px;
  display:         flex;
  justify-content: center;
  align-items:     center;
  border-radius: 4px;
  transition: 0.25s ease;
}

.founder-card:hover .founder-socials { bottom: 20px; }

.founder-name {
  text-align: center;
  font-family: var(--ff-ss-pro);
  font-size: 1.6rem;
}

.founder-title {
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--yokahu-green);
}

.linkedin {
  font-size: 1.4rem;
}


/*-----------------------------------*\
 * #Climate science page
\*-----------------------------------*/


.climate-science {
  background-image:url(../images/planet-earth.jpg);
  background-repeat: no-repeat; 
  background-position: center center;
  background-size: cover;
}

/*@media (min-width:768px) {
  .climate-science-grid {
    background-image:url(../images/yokahu-logo-3.svg) ; 
    background-repeat: no-repeat; 
    background-position: bottom right;
  }
}*/

.climate-science-wrapper {
  padding: 20px;
  background-image:url(../images/corner-tl.svg) ; 
  background-repeat: no-repeat; 
  background-position: top left;
}

.climate-science-wrapper .section-text {
  color: #fff;
}

.cs-img img {
  max-width:100%;
}

@keyframes move {
	0% { transform: translateY(-40px); }
	100% { transform: translateY(0); }
	}

.cs-img img {
	animation: move 6s ease-in-out infinite alternate;
}

.disc-list-item, .pp-list-item, .as-list-item {
  font-size: var(--fs-6);
  color: var(--sonic-silver);
  list-style: disc;
  line-height: 1.5;
  padding-bottom: .8rem;
}


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

.footer-top {
  padding: 60px 50px 40px 50px;
  background: var(--grey);
}

.footer-brand { margin-bottom: 40px; }

.footer-logo { margin-bottom: 30px; }

.footer-link-box {
  display: grid;
  gap: 40px;
}

.footer-list li:not(:last-child) { margin-bottom: 10px; }

.footer-list li:first-child { margin-bottom: 15px; }

.footer-list .h4 {
	font-weight:600
}

.footer-link {
  color: var(--sonic-silver);
  max-width: 150px;
}

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

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0, 0%, 88%) 25% 75%, transparent);
}

.footer-bottom {
  padding: 30px 0;
  background: var(--grey);
  text-align: center;
}

.copyright {
  color: var(--sonic-silver);
  line-height: 1.5;
  margin-bottom: 15px;
}

.copyright > a {
  color: inherit;
  display: inline-block;
}

.copyright > a:is(:hover, :focus) { text-decoration: underline; }

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 13px;
}

.social-list > li { position: relative; }

.social-link { 
  background-color: hsla(0, 0%, 0%, 0.1);
  color: #fff;
  font-size: 16px;
  padding:6px;
  border-radius: 50%;
  transition:0.2s ease-in-out;
  }

.social-link:is(:hover, :focus) { background-color: hsla(0, 0%, 0%, 0.2); }


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

.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--silver-chalice);
  color: var(--white);
  font-size: 25px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 2;
}

.go-top-btn.active {
  /*opacity: 1;
  visibility: visible;*/
  display:none;
}

.go-top-btn:is(:hover, :focus) { --silver-chalice: hsl(0, 0%, 60%); }



/*-----------------------------------*\
 * #RESPONSIVE
\*-----------------------------------*/


@media (min-width: 350px) {
  .footer-link-box { grid-template-columns: 1fr 1fr; }
}
/**
 * responsive for lareger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 30px;

  }



  /**
   * REUSED STYLE
   */

  .container { padding: 0 25px; }



  /**
   * HERO
   */

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
  }

  .hero-text span:not(:last-child) {
    position: relative;
    margin-bottom: 0;
  }

  .hero-text span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 100%;
    background: var(--sonic-silver);
  }



  /**
   * CTA
   */

  .cta-title {
    --fs-4: 25px;
    padding-inline: 15px;
  }


}



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

@media (min-width: 500px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 32px;
    --fs-2: 32px;
    --fs-3: 30px;
    --fs-5: 19px;
    --fs-8: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    /*max-width: 480px;*/
    margin-inline: auto;
  }

  .btn { --fs-7: 17px; }

  .section-text,
  .card-text { font-size: var(--fs-6); }



  /**
   * HERO
   */

  .input-field { font-size: 17px; }
  
}


@media (min-width: 550px) {
  .blog-card {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 20px;
  }

  .blog-card-banner {
    display: block;
    overflow: hidden;
  }

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

}


@media (min-width: 650px) {

  .blog .h2 {
    text-align: left;
  }

  .blog-text,
  .profile-wrapper { display: block; }

  .blog-text {
    color: var(--sonic-silver);
    font-size: var(--fs-6);
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.3rem;
  }

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

  .profile-wrapper {
    width:  56px;
    height: 56px;
    background: var(--action-primary);
    padding: 3px;
    border-radius: 50%;
  }

  .profile-wrapper img { border-radius: 50%; }

  .blog .wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

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

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 40px;
    --fs-2: 34px;
    --fs-3: 32px;

  }

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

  .origin-wrapper,
  .partnerships-wrapper,
  .team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 820px; }


  
  /**
   * HERO
   */

  /*.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }*/

  .hero-content {
    text-align: left;
    margin-bottom: 0;
  }

  .hero .btn-primary { margin-inline: 0;z-index:1; }

  .hero-text { justify-content: flex-start; }



  /**
   * SERVICE
   */

  .service .section-text {
    max-width: 650px;
    margin-inline: auto;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
  }



  /**
   * ABOUT
   */

  .about-top,
  .about-bottom,
  .products-grid,
  .technology-banner-grid,
  .climate-science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }

  .about-bottom .about-content, .partnerships-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  

  /**
   * tech & FAQ
   */

  .tech .section-title,
  .faq .section-title {
    max-width: 600px;
    margin-inline: auto;
  }

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



  /**
   * PRICING
   */

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



  /**
   * CTA
   */

  .cta-card {
    box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.07);
    padding-block: 60px 0;
    /*border-radius: 16px;*/
  }

  .cta-title {
    --fs-4: 24px;
    padding-inline: 0;
    max-width: 750px;
    margin-inline: auto;
  }
  
  /**
  * PRODUCTS
  */
  
  .product-list { grid-template-columns: 1fr 1fr; }

  .solution-list, 
  .location-list-1 { grid-template-columns: 1fr 1fr 1fr; }
  .location-list-2 { grid-template-columns: repeat(6, 1fr); }
  .loc-card-4 {grid-column: 2 / span 2;}
  .loc-card-5 {grid-column: 4 / span 2;}
  /**
   * FOOTER
   */

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

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

  .copyright { margin-bottom: 0; }

}



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

@media (min-width: 1024px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 43px;
    --fs-2: 41px;
    --fs-3: 38px;
    --fs-7: 16px;
    --fs-8: 16px;

    /**
     * spacing
     */

    --section-padding: 80px 0;

  }

  .sect-pad {
    padding: 80px 0;
  }


  /**
   * REUSED STYLE
   */

  .container {
    max-width: 980px;
    padding: 0;
  }

  .btn {
    --fs-7: 18px;
    padding-block: 16px;
  }



  /**
   * HEADER
   */

  header {
    padding: 35px 15px;
    background: transparent;
  }

  header.active {
    padding: 15px;
    background: var(--white);
  }

  header .container { max-width: 980px; }

  .nav-open-btn,
  .nav-close-btn { display: none; }

  .navbar {
    opacity: 1;
    visibility: visible;
    position: static;
    width: auto;
    height: auto;
    padding-top: 0;
    box-shadow: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

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

  .navbar-link {
    --fs-5: 16px;
    color: var(--charcoal);
    padding: 0 10px;
  }

  /*.navbar-link:is(:hover, :focus) { background: rgba(230,230,230,.3); }*/

  .navbar .btn-primary {
    --fs-7: 16px;
    width: auto;
    padding: 10px 20px;
    border-radius: 4px;
	  margin-left:30px;
  }
  
  .current {
	  background: hsla(0, 0%, 0%, 0.05);
	  border-radius: 4px;
  }



  /**
   * HERO
   */

  .hero::before { left: 50%; }

  

  .input-field { font-size: 16px; }



  /**
   * SERVICE
   */

  .service .section-text {
    --fs-6: 18px;
    margin-bottom: 50px;
  }

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



  /**
   * ABOUT
   */

  .about-top, .about-bottom, .products-grid, .technology-banner-grid { gap: 40px; }

  

  .about-banner { margin-bottom: 0; }



  /**
   * tech
   */

  .tech-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }



  /**
   * FAQ
   */

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



  /**
   * CTA
   */

  .cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
	/*margin-top: -175px;*/
	
	box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
  }

  .cta-title {
    --fs-4: 32px;
	  font-weight: 500;
    margin-inline: 0;
    margin-bottom: 0;
    text-align: left;
  }

  .news-area .container {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 60px;
}

  .blog .h3 {
    text-align: left;
}

/**
   * ASIDE 
   */

   .aside {
    display: block;
    align-self: stretch;
  }

  .aside .h3 {
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
    font-size: 42px;
  }

  .aside .wrapper {
    padding: 30px 20px;
    box-shadow: 0 5px 20px 1px hsl(220deg 63% 33% / 10%);
  }

  .tags,
  .categories { 
    margin-bottom: 3rem; 
  }

  .categories h4 {
    font-family: var(--ff-ss-pro);
    font-size: 20px;
    color: var(--sonic-silver);
    padding: .5rem 0;
  }

  .categories h4:hover {
    color: var(--gunmetal);
  }

  .tags .wrapper {
    display:   flex;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .tags .hashtag {
    background: var(--grey);
    color: var(--sonic-silver);
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
  }

  .newsletter {
    position: sticky;
    top: 6rem;
    margin-bottom: 48px;
  }

  .newsletter p {
    color: var(--sonic-silver);
    font-size: var(--fs-6);
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
  }

  .newsletter input {
    border: none;
    background: var(--grey);
    display: block;
    width: 100%;
    padding: .75rem;
    font: inherit;
    color: var(--sonic-silver);
    margin-bottom: 1rem;
  }

  .newsletter input::placeholder { color: inherit; }

  .newsletter input:focus {
    outline: 1px solid var(--yokahu-green);
    outline-offset: 0;
  }

  .newsletter .btn-secondary-sm {
    margin-inline: auto;
    margin: auto; 
  }



  /**
   * FOOTER
   */

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

  .footer-brand {
    max-width: 300px;
    margin-bottom: 0;
  }

  .footer-list li:not(:last-child) { margin-bottom: 15px; }

  .footer-list li:first-child { margin-bottom: 20px; }

  .footer-link { min-width: 130px; }

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

}



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

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 52px;
    --fs-2: 50px;
    --fs-3: 46px;
    --fs-5: 22px;
    --fs-6: 19px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1100px; }



  /**
   * HEADER
   */

  header .container { max-width: 1100px; }

  /*.navbar-list { margin-right: 30px; }*/

  .navbar-link {
    --fs-5: 17px;
    padding: 0 15px;
  }



  /**
   * HERO
   */

  

  /**
   * SERVICE, tech
   */

  .service .section-text {
    --fs-6: 20px;
    max-width: 700px;
    margin-bottom: 30px;
  }

  .service .card-icon,
  .tech .card-icon { font-size: 70px; }



  /**
   * ABOUT
   */

  .about-top,
  .about-bottom,
  .products-grid,
  .technology-banner-grid  { gap: 60px; }



  /**
   * tech, FAQ
   */

  .tech .section-title,
  .faq .section-title {
    max-width: 700px;
    margin-bottom: 60px;
  }
  
  
  /**
   * PARTNER
   */

  .partner .container { justify-content: space-evenly; }




  /**
   * CTA
   */

  .cta-title {
    --fs-4: 38px;
    max-width: 700px;
  }



  /**
   * FOOTER
   */

  .footer-brand { max-width: 350px; }

  .footer-top .h4 { --fs-5: 20px; }

  .footer-link {
    font-size: 18px;
    min-width: 140px;
  }

  .copyright { font-size: 16px; }

  .social-link { 
    background-color: hsla(0, 0%, 0%, 0.1);
    color: #fff;
    font-size: 16px;
    padding:6px;
    border-radius: 50%;
    transition:0.2s ease-in-out;
   }

  .social-list { column-gap: 15px; }

  .social-list > li:not(:last-child)::after { right: -10px; }



  /**
   * GO TO TOP
   */

  .go-top-btn {
	  display:none;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
  }

}

.social-link:hover {
    background-color: hsla(0, 0%, 0%, 0.2);
	}

@media (max-width:768px) {
	.social-list {
		gap:24px;
		margin-top:30px;
	}
	.social-link {
    background-color: hsla(0, 0%, 0%, 0.1);
    color: #fff;
    padding:6px;
    border-radius: 50%;
		font-size:20px;
	}
  .social-link:hover {
    background-color: hsla(0, 0%, 0%, 0.2);
	}
	.section-title {
		font-size:2.6rem;
		text-align:center;
	}
	.wwa-title, .cs-title {
		margin-top:3rem;
	}
}

.max-800 {
  max-width: 800px;
}

.compareSlider {
  margin-block: 4rem;
  
}

div.jx-slider {
  max-width:100%;
}
