html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding: 0;
  list-style: none;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.bg-grey {
  background-color: #f3f2f2;
  margin-top: -50px !important;
  padding: 50px 0 !important;
  margin-bottom: 30px !important;
}

.desktop {
  display: none;
}

/* Simple Flex Grid */
.flex-container {
  margin: 0 auto;
  background-color: #eaeaea;
  max-width: 1200px;
  min-width: 320px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  text-align: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 1;

  margin: 10px;

  background-color: #efefef;
  border: 1px solid #dedede;
  padding: 10px;
}

.col-1 {
  max-width: calc(100% / 12);
}
.col-2 {
  max-width: calc(100% / 12 * 2);
}
.col-3 {
  max-width: calc(100% / 12 * 3);
}
.col-4 {
  max-width: calc(100% / 12 * 4);
}
.col-5 {
  max-width: calc(100% / 12 * 5);
}
.col-6 {
  max-width: calc(100% / 2);
}

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

.mb-30 {
  margin-bottom: 30px;
}

.pad-r-50 {
  padding-right: 50px;
}

.pad-l-50 {
  padding-left: 50px;
}

.pad-r-80 {
  padding-right: 80px;
}

.pad-l-80 {
  padding-left: 80px;
}

.fw-bold {
  font-weight: 500;
}

input[type='text'] {
  background: #f3f2f2;
  border: none;
}

textarea {
  background: #f3f2f2;
  border: none;
}

.reverse {
  flex-direction: row-reverse;
}

.btn {
  padding: 14px 18px 12px 18px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.5s;
  border-radius: 5px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.btn-primary {
  margin-top: 15px;
  display: inline-block;
  background: rgb(12, 20, 55);
  color: #fff;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: rgb(38, 56, 127);
  color: #fff;
}

.desktop {
  display: none;
}

.mobile {
  display: none;
}

.tablet {
  display: none;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.main-section {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  color: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

footer.main-section {
  background-color: #0c1438;
  height: 35vh;
  padding: 3rem 0;
}

.icon-area {
  margin-top: 40px;
  display: flex;
}

.icon-area a {
  margin-right: 8px;
}

.main-section .wrapper {
  height: 100%;
}

div.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
}

.flex-grid {
  display: flex;
}

.flex-grid-center {
  display: flex;
  justify-content: center;
}

.flex-grid .col {
  flex: 1;
}

.flex-grid .col.col-gap-4 {
  width: 23%;
}

.flex-grid .col-double {
  flex: 2;
}

.flex-center {
  align-items: center;
  margin: auto;
  text-align: center;
}

.flex-left {
  align-items: flex-start;
}

.flex-right {
  align-items: flex-end;
  margin-left: auto;
}

.col-one-third {
  width: 33.3333%;
}

div.content button {
  margin-top: 15px;
}

div.content h1 {
  font-size: 42px;
  line-height: 1.35;
  margin-bottom: 5px;
}

div.content h2 {
  font-weight: 500;
  font-size: 20px;
}

footer h3 {
  font-size: 14px;
  margin-bottom: 20px;
}

footer ul li {
  padding-bottom: 5px;
}

footer ul a {
  color: #5d6481;
  font-size: 12px;
}

.footer-contact {
  font-size: 12px;
  color: #5d6481;
}

.footer-contact p {
  margin-bottom: 10px;
}

.section-hero {
  height: 70vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.section-hero h1 {
  font-size: 41px;
  color: #fff;
  font-weight: 600;
}

/* side nav */
.blur-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.5rem);
  transition: display 0.4s ease;
}

.blur-overlay.is--active {
  display: block;
}

.side-nav {
  position: fixed;
  padding: 5%;
  color: #fff;
  top: 0;
  right: 0;
  width: 100%;
  /* max-width: 35rem; */
  /* height: 100%; */
  z-index: 10;
  background: #0c1438;
  transform: translateX(100%);
  /* transition: transform 0.5s cubic-bezier(0.5, 0, 0, 0.75); */
  transition: all 1000ms cubic-bezier(0.8, 0, 0.33, 1);
  opacity: 0;
}

.side-nav a {
  color: #fff;
}

.side-nav h3 {
  font-size: 17px;
  margin-bottom: 15px;
}

.side-nav ul {
  margin-bottom: 25px;
}

.side-nav li {
  margin-bottom: 8px;
  font-size: 15px;
}

.side-nav li a {
  margin-bottom: 10px;
  color: #fff !important;
}

.side-nav.is--active {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 3s;
}

.close-btn {
  position: absolute;
  width: 17px;
  top: 42px;
  left: 22px;
  cursor: pointer;
}

.bord-message-title {
  text-align: right;
  margin-top: 30px;
}

.bord-message-title h4 {
  font-size: 19px;
}

section.bord-message {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 120px;
}

section.bord-message p {
  font-size: 19px;
  font-weight: 300;
}

section.bord {
  margin-bottom: 120px;
}

.bord .bord-members {
  max-width: 1000px;
  justify-content: center;
  margin: auto;
}

.bord .bord-card {
  background-color: #f3f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin: 15px 10px;
}

.bord .bord-card img {
  border-radius: 50%;
}

.bord .bord-card h2 {
  font-size: 21px;
  margin: 15px 0 5px;
}

.bord .bord-card p {
  margin-bottom: 15px;
}

.intro {
  margin-bottom: 50px;
}

.intro h2,
.values h2 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 27px;
}

.intro p {
  font-size: 17px;
}

.values {
  margin-bottom: 80px;
}

.values h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values .divider {
  margin-bottom: 30px;
}

.values-cards {
  margin-bottom: 60px;
}

.values-cards .col {
  padding-top: 15px;
  padding-bottom: 15px;
  border-left: 1px solid #ddd;
  padding-right: 30px;
  padding-left: 30px;
}

.values-cards .col:first-child {
  border: none;
  padding-right: 30px;
  padding-left: 0px;
}

.values-cards .col:last-child {
  padding-right: 0px;
  padding-left: 30px;
}

.values-cards .col h3 {
  text-align: center;
  margin-bottom: 10px;
}

.values-cards .col-one-third {
  padding-top: 15px;
  padding-bottom: 15px;
  border-left: 1px solid #ddd;
  padding-right: 30px;
  padding-left: 30px;
}

.values-cards .col-one-third:first-child {
  border-left: 0;
  padding-right: 30px;
  padding-left: 0;
}

.values-cards .col-one-third h3 {
  text-align: center;
  margin-bottom: 10px;
}

.card-values {
  display: flex;
  width: 52vw;
  background-color: #f3f2f2;
  margin-bottom: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.card-values .card-values-icon {
  padding: 80px 40px;
}

.card-values .card-values-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.card-values.to-right .card-values-desc {
  padding-right: 0px;
  padding-left: 20px;
}

.card-values .card-values-desc h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

.mission h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5px;
}

.mission p {
  text-align: center;
}

.to-right {
  margin-left: auto;
}

section.mission,
section.organizations {
  margin-bottom: 80px;
}

.mission .col {
  padding: 40px;
}

.mission h2 {
  margin-bottom: 15px;
}

.mission p {
  font-size: 18px;
}

.intro .content-middle {
  display: flex;
  flex-direction: column;
  width: 800px;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.intro .content-middle img {
  margin-top: 30px;
  margin-bottom: 50px;
}

.intro .content-middle p {
  font-size: 19px;
  text-align: center;
}

.organizations .col {
  margin-right: 20px;
}

.organizations .col:last-child {
  margin-right: 0px;
}

.organizations h2 {
  margin-bottom: 30px;
}

.organizations .org-card {
  background-color: #f3f2f2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 30px;
}

.organizations .org-card-image {
  height: 120px;
}

.organizations .org-card img {
  margin-bottom: 30px;
}

.found-organizations {
  padding: 60px 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.found-organizations img {
  padding: 0 40px;
}

.financial {
  margin-bottom: 120px;
}

.financial .financial-box {
  padding: 40px 20px;
  margin-bottom: 10px;
  background: #f3f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.financial .financial-box p {
  font-weight: 600;
  font-size: 19px;
}

.financial .financial-box-button {
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 10px 60px;
}

.intro.company ul {
  list-style: disc;
  font-weight: 300;
  padding-left: 20px;
  font-size: 17px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.intro.company p {
  font-weight: 300;
}

.companies.company h2 {
  font-size: 33px;
  margin-bottom: 5px;
}

.companies.company h3 {
  font-weight: 500;
  margin-top: 30px;
}

.companies.company h4 {
  font-weight: 500;
  padding-bottom: 35px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.companies.company ul {
  list-style: circle;
  padding-left: 15px;
}

section.sectors,
section.companies {
  margin-bottom: 80px;
}

.sectors .sector-block {
  justify-content: space-between;
  align-items: center;
}

.sectors .sector-block .sector-desc-left {
  padding-right: 80px;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

.sectors .sector-block .sector-desc-right {
  padding-left: 80px;
}

.sectors .sector-desc-left h3,
.sectors .sector-desc-right h3 {
  font-size: 27px;
  margin-bottom: 10px;
}

.sectors .sector-desc-left p,
.sectors .sector-desc-right p {
  font-size: 18px;
}

.sectors .sector-img img {
  width: 100%;
}

.companies .company-box {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  height: 332px;
}

.companies .wrapper {
  max-width: 1000px;
}

.companies .col {
  margin-right: 15px;
  margin-bottom: 40px;
}

.companies .col:last-child {
  /* margin-left: 15px; */
  margin-right: 0;
}

.company-box-image {
  height: 300px;
}

.company-box img {
  margin-bottom: 30px;
}

.company-box h3 {
  font-weight: 500;
  margin-bottom: 10px;
}

.company-box p {
  font-size: 17px;
}

.company-box a {
  margin-top: 20px;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 10px 60px;
  background-color: #f3f2f2;
}

.politics ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.6;
}

.environment {
  margin-bottom: 150px;
}

.environment .wrapper {
  align-items: center;
}

.environment .col {
  margin-right: 120px;
}

.environment .col:last-child {
  margin-right: 0px;
}

.environment img {
  width: 100%;
}

.environment p {
  margin-bottom: 30px;
}

.environment ul {
  list-style: disc;
  padding-left: 30px;
}

.responsibilities {
  margin-bottom: 80px;
}

.responsibilities .flex-grid {
  justify-content: center;
  align-items: center;
}

.responsibilities img {
  width: 100%;
}

.responsibilities h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.responsibilities .flex-grid {
  margin-bottom: 40px;
}

.responsibilities .flex-grid .col:first-child {
  margin-right: 160px;
}

.health,
.lifestyle {
  margin-bottom: 100px;
}

.health .middle-content {
  margin: 50px auto;
}

.health .flex-grid {
  align-items: center;
}

.hr p {
  font-size: 17px;
  font-weight: 300;
}

.hr .col:first-child {
  padding-right: 10px;
}

.hr .col:last-child {
  padding-left: 10px;
}

.lifestyle .flex-grid {
  justify-content: center;
  align-items: center;
}

.lifestyle-box {
  padding-right: 100px;
}

.contact .col {
  margin-right: 70px;
}

.contact .col:last-child {
  margin-right: 0px;
}

.contact .contact-box {
  background-color: #f3f2f2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  height: 121px;
}

.contact-box .contact-headline {
  display: flex;
  margin-bottom: 5px;
}

.contact-headline img {
  margin-right: 15px;
}

.contact .contact-submit {
  display: flex;
  flex-direction: row-reverse;
}

.contact input[type='submit'] {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  font-weight: 600;
  padding: 10px 60px;
  border: none;
}

.wrapper-title {
  margin-bottom: 20px;
  margin-top: 35px;
}

.input-box {
  display: flex;
  flex-direction: column;
}

.input-box input[type='text'] {
  padding: 10px 10px;
  margin-bottom: 20px;
  width: 355px;
}

.contact .col.input-col {
  margin-right: 37px;
}

.contact textarea {
  width: 100%;
  padding: 10px;
  color: grey;
  height: 173px;
}

.timeline h2 {
  margin-bottom: 20px;
}

.timeline-info {
  justify-content: flex-start;
  align-items: center;
}

.timeline-info-text {
  padding: 50px 100px;
}

.timeline-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timeline-date img {
  width: 12px;
}

.timeline-date .vertical-line {
  margin-top: 7px;
  margin-bottom: 7px;
  width: 3px;
  height: 30px;
  background-color: #d9d9d9;
}

.timeline {
  margin-bottom: 120px;
}

.career .wrapper {
  margin-bottom: 50px;
  align-items: center;
}

.career img {
  width: 100%;
}

.career h3 {
  font-size: 21px;
  margin-bottom: 15px;
}

.career p {
  margin-bottom: 30px;
}

.career .careerfirst {
  margin: auto;
  max-width: 300px;
}

.career a {
  font-weight: 600;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 10px 30px;
  background-color: #f3f2f2;
}

.contact-map {
  margin-top: 80px;
  margin-bottom: 120px;
}

.bayra-tabs {
  margin-bottom: 120px;
}

.tab-button {
  font-weight: 600;
  border: none;
  padding: 25px 30px;
  margin-right: 5px;
  cursor: pointer;
}

.tab-button:last-child {
  margin-right: 0px;
}

.tab-button.active {
  background-color: #0c1438;
  color: #fff;
}

/* .tab-content .col {
    margin: 5px 0;
    margin-right: 10px;
  } */

.tab-content .col:last-child {
  margin-right: 0;
}

.media-contact-image {
  margin-right: 10%;
}

.media-contact h2 {
  font-size: 33px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbb;
  margin-bottom: 10px;
}

.media-contact-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #bbb;
  margin-bottom: 10px;
}

.media-contact h3 {
  font-size: 21px;
}

.flex-grid.contact-media {
  padding: 50px 0;
  align-items: center;
}

.flex-grid-wrapped {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flex-grid-wrapped .col {
  width: 25%;
  margin-bottom: 5px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.flex-grid.company-identity {
  padding: 50px 0;
  align-items: center;
}

.flex-grid.company-identity img {
  width: 100%;
}

.flex-grid.company-identity h2 {
  margin-bottom: 5px;
}

.flex-grid.company-identity a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 10px 60px;
  background-color: #f3f2f2;
}

.tab-inner-content.media-contact {
  width: 80%;
}

.health ul {
  list-style: disc;
  padding-left: 20px;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 40.25%;
  position: relative;
  height: 0;
  height: 450px;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.flex-grid.news {
  padding: 20px 0;
}

.news .col {
  margin-right: 20px;
  max-width: 33.333%;
}

.news .news-card {
  background-color: #f3f2f2;
  padding: 30px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.news-card h2 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
  height: 120px;
}

.news-card p.short-description {
  margin-top: 10px;
  font-size: 13px;
  height: 250px;
}

.news-card p.date {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
}

.news-content {
  padding-bottom: 60px;
}

.news-content .date {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.news-content h1 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
}

.news-content h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.35;
}

.news-content p {
  margin-bottom: 10px;
}

.sector-img {
  position: relative;
}

.activityborder {
  position: absolute;
  border: 1px solid #0c1438;
  background-color: #0c1438;
  height: 250px;
  width: 320px;
  top: 0.5%;
  right: 0.5%;
  z-index: -1;
}

.activityborderleft {
  position: absolute;
  border: 1px solid #0c1438;
  background-color: #0c1438;
  height: 250px;
  width: 320px;
  top: 0.5%;
  left: 0.5%;
  z-index: -1;
}

@media (max-width: 1200px) {
  .activityborder,
  .activityborderleft {
    display: none;
  }
}
