@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Merriweather:wght@300;700&display=swap');


body {
  font-family: "Manrope", system-ui, sans-serif;
}


/* Mobile Nav */

.mobile-nav {
  display: none;
}

.mobile-nav.open {
  display: block;
}

.menu-button {
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -9px) rotate(45deg);
}


/* FAQs Accordion */

.accordion {
  color: #444;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

.accordion:hover {
  background-color: #eee;
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding-bottom: 20px;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


.bg-pattern {
  background-image: url(../images/pattern.png);
  background-position: center center;
}


.bg-about-pattern {
  background-image: url(../images/about-pattern.png);
  background-position: center center;
}


/* Tabs */

.tab button {
  background-color: inherit;
  border-bottom: 3px solid transparent;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 14px;
  color: #888888;
}

.tablinks.active:after {
  display: none;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 3px solid black;
  color: #212121;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 12px 16px;
}


.topright:hover {color: red;}
