html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FAFFF7;
}

* {
  box-sizing: border-box;
}

:root {
  --blue: #0088b9;
  --green: #8BE1CF;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
}

a {
  color: var(--blue);
  transition: 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
}

.container {
  margin: 0 auto;
}

.w1385 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.w1385 {
  max-width: 1385px;
  margin: 0 auto;
}

.anchor {
  scroll-margin-top: 70px;
}

section {
  padding-top: 50px;
}

.std-iframe {
  width: 100%;
  overflow: hidden;
  border: 0;
}

.std-iframe iframe {
  width: 100%;
  border: none;
}

.std-title {
  font-size: 30px;
  font-weight: var(--medium);
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.std-writeup {
  color: #333;
  line-height: 160%;
  font-size: 18px;
}

.std-title.white {
  color: #fff;
  border-color: #fff;
}

.std-writeup.white {
  color: #fff;
}

.std-title.no-border {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

/*Header*/
header {
  position: relative;
  background: #d7edf9;
}

header.transparent-bg {
  background: transparent;
}

header.full-height {
  height: 95vh;
}

header.full-height .header-content {
  padding-bottom: 0;
  height: 100%;
  display: flex;
}

header.full-height .header-content .big-title {
  top: unset;
}

header.full-height .header-content .wrapper {
  width: 100%;
}

header .logo img {
  max-height: 100%;
}

header .video-container {
  position: relative;
  top: 70px;
  background: #c0e4f4;
  height: 266px;
}

header video {
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

header .logo-menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  transition: 0.3s;
  display: none;
}

header .logo-menu.relative {
  position: relative;
}

header .logo-menu.sticky {
  position: fixed;
  background-color: #FAFFF7;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

header .logo-menu.sticky .content {
  padding-top: 20px;
  padding-bottom: 15px;
}

header .logo-menu.sticky .socials img {
  height: 15px;
}

header .logo-menu .content {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

header .logo {
  height: 50px;
}

header .socials {
  gap: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .socials img {
  height: 25px;
  transition: 0;
}

header .big-title {
  font-size: 25px;
  color: var(--blue);
  font-weight: var(--medium);
  text-align: center;
  position: absolute;
  z-index: 1;
  max-width: 760px;
  left: 0;
  right: 0;
  top: 38%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInMoveDown 1s forwards;
}

@keyframes fadeInMoveDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header nav {
  border-top: 1px solid var(--blue);
  margin-top: 10px;
  padding-top: 0px;
  padding-left: 10px;
  display: flex;
  gap: 0 10px;
  align-items: center;
}

header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 5px;
}

header nav ul li {
  list-style-type: none;
  position: relative;
}

header nav ul li a {
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
}

header nav ul li>a:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

header nav ul li {
  position: relative;
}

header nav ul li .dropdown {
  display: flex;
  flex-direction: column;
  max-height: 0;
  position: absolute;
  visibility: hidden;
  transition: max-height 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #fff;
}

header nav ul li a {
  transition: 0.5s;
}

header nav ul li a:hover,
header nav ul li:hover>a {
  background-color: var(--blue);
  color: #fff;
  opacity: 1;
}

header nav ul li .dropdown a {
  padding: 10px;
  text-align: center;
  background-color: var(--blue);
  color: #fff;
  border-bottom: 1px solid #fff;
  width: 100%;
  transition: 0.3s;
  font-size: 15px;
}

header nav ul li .dropdown a:last-of-type {
  border-bottom: 0;
}

header nav ul li .dropdown a:hover {
  background-color: var(--green);
  color: var(--blue);
  opacity: 1;
}

header nav ul li:hover .dropdown {
  max-height: 500px;
  visibility: visible;
}

header nav .open-search {
  width: 30px;
  cursor: pointer;
  text-align: right;
  transition: 0.3s;
}

header nav .open-search img {
  display: block;
  height: 22px;
}

header nav .open-search:hover {
  opacity: 0.8;
}

.header-content {
  padding-top: 120px;
  padding-bottom: 50px;
}

.header-content .big-title {
  position: relative;
  animation: none;
  opacity: 1;
  transform: unset;
}

.header-content .subtitle {
  text-align: center;
  color: var(--blue);
  font-size: 22px;
  margin-top: 10px;
  line-height: 140%;
  animation: fadeInMoveDown 1s forwards;
}

.header-content .three-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 10px;
  flex-direction: column;
  gap: 30px 0;
}

.header-content .three-cards .item {
  width: 85%;
  background-color: #FAFFF7;
  border-radius: 20px;
  padding: 15px;
  box-shadow: -10px 10px 0 0 #8be1cf, -10px 10px 0 0 #8be1cf;
  cursor: pointer;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  align-items: center;
  gap: 0 20px;
}

.header-content .three-cards .item:first-of-type {}

.header-content .three-cards .item:hover {
  transform: translate(-10px, 10px);
  box-shadow: none;
  opacity: 1;
}

.header-content .three-cards .icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 15%;
  margin: 10px auto 0 auto;
}

.header-content .three-cards .icon img {
  max-height: 100%;
}

.header-content .three-cards .title {
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  font-weight: var(--medium);
  margin-top: 10px;
}

.header-content .image {
  text-align: center;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Header */
.mobile-header {
  background-color: var(--blue);
  width: 100%;
  position: fixed;
  z-index: 3;
  padding: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  gap: 0 20px;
}

.mobile-header .logo {
  height: 40px;
  margin-right: auto;
}

.mobile-header .logo img {
  display: block;
  max-height: 100%;
}

.mobile-header .open-search {
  height: 27px;
}

.mobile-header .open-search img {
  max-height: 100%;
}

.mobile-header .hamburger {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-header .hamburger .patty {
  background-color: #fff;
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-header .hamburger.active .patty:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-header .hamburger.active .patty:nth-of-type(2) {
  opacity: 0;
}

.mobile-header .hamburger.active .patty:nth-of-type(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.slidemenu {
  top: -620px;
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 2;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.slidemenu.active {
  top: 70px;
  padding: 25px 15px 15px 15px;
}

.slidemenu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.slidemenu ul li {
  list-style-type: none;
}

.slidemenu a {
  text-decoration: none;
}

.slidemenu .title {
  margin-bottom: 13px;
  font-weight: var(--medium);
  font-size: 22px;
  display: block;
}

.slidemenu .content {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  text-align: center;
}

.slidemenu .group {
  padding-bottom: 15px;
}

.slidemenu .group.socials {
  display: flex;
  gap: 0 10px;
  border-bottom: 0;
  justify-content: center;
}

.slidemenu .group.socials img {
  height: 25px;
}

/* Our Approaches */
.our-approaches {
  background-color: var(--blue);
  position: relative;
  background: linear-gradient(to bottom, var(--blue) 85%, #FAFFF7 40%);
  padding-top: 40px;
}

.our-approaches .content .three-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 10px;
  flex-direction: column;
  gap: 30px 0;
}

.our-approaches .content .three-cards .item {
  width: 80%;
  background-color: #FAFFF7;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: -10px 10px 0 0 #8be1cf, -10px 10px 0 0 #8be1cf;
  cursor: pointer;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}

.our-approaches .content .three-cards .item .icon {
  padding: 0 50px;
}

.our-approaches .content .three-cards .item:hover .icon img {
  filter: brightness(0) invert(1);
}

.our-approaches .content .three-cards .item .text {
  position: relative;
}

.our-approaches .content .three-cards .item .initial {
  color: var(--blue);
  font-size: 29px;
  font-weight: var(--bold);
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.our-approaches .content .three-cards .item .initial .hint {
  font-size: 15px;
  margin-top: 10px;
  font-weight: var(--regular);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.our-approaches .content .three-cards .item:hover .initial {
  opacity: 0;
}

.our-approaches .content .three-cards .item .reveal {
  text-align: center;
  line-height: 150%;
  color: #000;
  opacity: 0;
  transition: 0.3s;
}

.our-approaches .content .three-cards .item:hover .reveal {
  opacity: 1;
  visibility: visible;
}

.our-approaches .content .three-cards .item:hover {
  background-color: var(--green);
  transform: translate(-10px, 10px);
  box-shadow: none;
}

/* Our Programmes */
.our-programmes .three-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-direction: column;
  gap: 50px 0;
}

.our-programmes .three-cards .item {
  width: 95%;
  background-color: #bfe6f5;
  border-radius: 20px;
  padding: 50px 30px 130px 30px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.our-programmes .three-cards .item:hover {
  transform: scale(1.05);
}

.our-programmes .three-cards .item .tag {
  background-color: #FAFFF7;
  font-size: 19px;
  font-weight: var(--medium);
  color: var(--blue);
  padding: 15px 20px;
  text-align: right;
  border-radius: 7px;
  position: absolute;
  right: 0;
  bottom: -15px;
  box-shadow: -8px 8px 0 0 #8be1cf, 0px 8px 0 0 #8be1cf;
}

/* Quicklinks */
.quicklinks-feed {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px 0;
}

.quicklinks {
  background-color: #cce7f1;
  border-radius: 20px;
  padding: 50px;
  max-width: fit-content;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}

.quicklinks .title-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quicklinks .title-nav .title {
  font-size: 30px;
  font-weight: var(--bold);
  color: var(--blue);
}

.quicklinks .title-nav .nav {
  display: flex;
  gap: 0 5px;
}

.quicklinks .title-nav .nav .prev,
.quicklinks .title-nav .nav .next {
  height: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.quicklinks .title-nav .nav .prev img,
.quicklinks .title-nav .nav .next img {
  height: 100%;
}

.quicklinks .title-nav .nav .prev:hover,
.quicklinks .title-nav .nav .next:hover {
  opacity: 0.8;
}

.quicklinks .title-nav .nav .slick-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.quicklinks .title-nav .nav .next {
  transform: rotate(180deg);
}

.quicklinks .carousel {
  border-top: 1px solid var(--blue);
  padding-top: 20px;
  margin-top: 15px;
}

.quicklinks .carousel .item {
  margin: 0 10px;
  text-decoration: none;
}

.quicklinks .carousel .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}

.quicklinks .carousel .item .thumb img {
  border-radius: 5px;
}

.quicklinks .carousel .item .title {
  margin-top: 20px;
  font-weight: var(--medium);
  color: #333;
  line-height: 130%;
}

.quicklinks .carousel .item .date {
  margin-top: 12px;
  color: #333;
}

.quicklinks-feed .quicklinks {
  margin-left: unset;
  margin-right: unset;
  width: 100%;
}

.quicklinks.team {
  padding: 15px 15px;
  max-width: unset;
  margin-top: 30px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.quicklinks.team .nav {
  margin-left: auto;
}

.quicklinks.team .item {
  position: relative;
}

.quicklinks.team .item .team-tab {
  position: absolute;
  background-color: #FAFFF7;
  border-radius: 5px 0 0 5px;
  bottom: 20px;
  right: 0;
  width: 90%;
  font-size: 20px;
  padding: 10px;
  box-shadow: -5px 5px 0 0 #8be1cf, -5px 5px 0 0 #8be1cf;
  font-weight: var(--bold);
}

.quicklinks.team .item .thumb {}

.quicklinks.team .item .team-tab .name {}

.quicklinks.team .item .team-tab .position {}

.quicklinks .carousel {
  padding-top: 20px;
  margin-top: 15px;
}

/* Who we are */
.who-we-are {
  background-color: var(--blue);
  position: relative;
  background: linear-gradient(to bottom, var(--blue) 93%, #FAFFF7 40%);
}

.who-we-are .title {
  font-size: 30px;
  font-weight: var(--bold);
  color: #fff;
}

.who-we-are .std-writeup {
  margin-top: 20px;
}

.who-we-are .two-cards {
  display: block;
  margin-top: 40px;
}

.who-we-are .two-cards .card {
  background-color: #FAFFF7;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: -10px 10px 0 0 #8be1cf, -10px 10px 0 0 #8be1cf;
  width: 100%;
}

.who-we-are .two-cards .card .title {
  color: #606060;
  font-size: 25px;
}

.who-we-are .two-cards .card .writeup {
  color: #606060;
  margin-top: 10px;
  padding-top: 0;
  line-height: 150%;
  font-size: 18px;
}

.who-we-are .two-cards .card.one {
  margin-left: 10px;
  width: calc(100% - 10px);
}

.who-we-are .two-cards .card.two {
  background-color: #8BE1CF;
  margin-top: 30px;
  box-shadow: none;
  width: 100%;
}

/* Our Team */
.our-team .team-tree {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.our-team .team-tree .member {
  width: 47%;
}

.our-team .team-tree .member .thumb {
  margin-bottom: 20px;
}

.our-team .team-tree .member .thumb img {
  border-radius: 10px;
}

.our-team .team-tree .member .text {
  color: #666;
  font-size: 16px;
}

.our-team .team-tree .member .text strong {
  font-size: 17px;
}

/* Join Us */
.joinus .title {
  font-size: 30px;
  font-weight: var(--bold);
  color: var(--blue);
}

.joinus .writeup {
  color: #333;
  border-top: 1px solid var(--blue);
  padding-top: 20px;
  margin-top: 15px;
  line-height: 140%;
  font-size: 18px;
}

.joinus .job-listing {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.joinus .job-listing .position {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

.joinus .job-listing .position:last-of-type {
  border-bottom: 0;
}

.joinus .job-listing .position .title {
  font-weight: var(--regular);
  font-size: 25px;
}

.joinus .job-listing .position .details {
  margin-top: 20px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #333;
}

.joinus .job-listing .position .button-wrap {
  margin-top: 20px;
  display: flex;
  gap: 0 10px;
}

.joinus .job-listing .position .button-wrap .btn {
  padding: 10px 15px;
  background-color: var(--green);
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  color: #333;
  font-weight: var(--medium);
}

/* Resources */
.resources-pg {
  padding-top: 100px;
}

.resources-pg .search input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.resources-pg .search input:focus {
  outline: none;
}

.resources-pg .categories {
  margin-top: 35px;
  font-size: 20px;
}

.resources-pg .categories::-webkit-scrollbar {
  display: none;
}

.resources-pg .categories {}

.resources-pg .categories .item {
  cursor: pointer;
  color: var(--blue);
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.resources-pg .categories .item:last-of-type {}

.resources-pg .categories .item:hover,
.resources-pg .categories .item.active {}

.resources-pg .resources-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
  margin-top: 35px;
}

.resources-pg .resources-listing .article-title {
  overflow: hidden;
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  margin-top: 4px;
  font-weight: var(--bold);
  text-transform: uppercase;
}

.resources-pg .resources-listing .item {
  display: flex;
  gap: 0 15px;
}

.resources-pg .resources-listing .item .date {
  color: #333;
  font-weight: var(--medium);
  font-size: 14px;
  display: none;
}

.resources-pg .resources-listing .item .thumb {
  width: 40%;
  transition: 0.3s;
}

.resources-pg .resources-listing .item .text-wrap {
  width: calc(60% - 15px);
  padding-top: 10px;
}

.resources-pg .resources-listing .item .thumb:hover {
  opacity: 0.8;
}

.resources-pg .resources-listing .item .thumb img {
  display: block;
  border-radius: 15px;
  border: 1px solid #ccc;
}

.resources-pg .resources-listing .item .thumb {
  font-size: 20px;
  text-decoration: none;
  line-height: 120%;
  display: inline-block;
  font-weight: var(--medium);
  border-radius: 15px;
}

.resources-pg .resources-listing .item .excerpt {
  margin-top: 10px;
  color: #666;
  display: -webkit-box;
}

.resources-pg .resources-listing .item .more {
  margin-top: 10px;
  display: inline-block;
  display: none;
}

.pagination {
  display: inline-flex;
  justify-content: center;
  gap: 0 10px;
  margin-top: 30px;
  align-items: center;
  font-size: 15px;
  margin: 30px auto 0 auto;
}

.pagination .item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: var(--medium);
  color: #333;
  background-color: #eee;
}

.pagination .item.prev-next {
  border: 0;
  width: auto;
  height: auto;
  background-color: transparent;
}

.pagination .item.prev-next:hover {
  background-color: transparent;
  color: var(--blue);
}

.pagination .item.prev-next.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination .item.active,
.pagination .item:hover {
  background-color: var(--blue);
  color: #fff;
}

.pagination .item:hover {
  cursor: pointer;
}

.pagination .dots {}

.resources-pg .breadcrumb {
  font-size: 21px;
  display: flex;
}

.resources-pg .breadcrumb .item:after {
  content: '>';
  color: var(--blue);
  margin-right: 6px;
}

.resources-pg .breadcrumb a {
  text-decoration: none;
}

.resources-pg .breadcrumb .item:last-of-type:after {
  content: none;
}

.resources-pg .categories .title {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 25px;
}

.resources-pg .two-col {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.resources-pg .categories .item:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: var(--blue);
  margin-top: 50px;
  padding: 50px 0;
}

footer .row-two {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 25px;
  margin-top: 15px;
  flex-wrap: wrap;
}

footer .col {
  width: 100%;
  color: #fff;
  font-size: 15px;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

footer .col .title {
  margin-bottom: 18px;
  font-weight: var(--bold);
  color: #fff;
  font-size: 21px;
  display: inline-block;
  text-decoration: none;
}

footer .col ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

footer .col ul li {
  list-style-type: none;
}

footer .col ul li a {
  color: #fff;
  text-decoration: none;
}

footer .col ul li a:hover {
  text-decoration: underline;
}

footer .col form .subscribe-field {
  border: 0;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

footer .col form .subscribe-field:focus {
  outline: none;
}

footer .col form .subscribe-submit {
  background-color: var(--green);
  border: 0;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: var(--semibold);
  cursor: pointer;
  transition: 0.3s;
}

footer .col form .subscribe-submit:hover {
  opacity: 0.8;
}

footer .col.about-work .mt-20 {
  margin-top: 20px;
}

footer .email {
  text-decoration: underline;
}

footer .map {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: 0;
  position: relative;
}

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

footer .col.subscribe {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

footer .btt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
}

footer .btt:hover {
  opacity: 0.8;
  ;
}

footer .btt img {
  max-height: 100%;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay .overlay {
  background-color: rgba(0, 0, 0, 0.9);
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.search-overlay .overlay .content {
  max-width: 800px;
  margin: 25vh auto 0 auto;
  padding: 0 15px;
}

.search-overlay .overlay .content .std-title {}

.search-overlay .overlay .content .searchbar {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  gap: 0 10px;
}

.search-overlay .overlay .content .searchbar input {
  width: 100%;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.search-overlay .overlay .content .searchbar input:focus {
  outline: none;
}

.search-overlay .overlay .content .searchbar input[type=image] {
  width: 30px;
}

.search-overlay .overlay .close {
  position: fixed;
  right: 15px;
  top: 90px;
  height: 25px;
  cursor: pointer;
}

.search-overlay .overlay .close img {
  max-height: 100%;
}

.embed-content {
  width: 100%;
  overflow: scroll;
  margin-bottom: 20px;
}

.our-work {
  line-height: 140%;
  color: #666;
}

.our-work h1 {
  color: var(--blue);
  margin: 0;
  line-height: 140%;
}

.our-work .three-column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px 3%;
}

.square-img {
  width: 100%;
  padding-bottom: 100%;
  background-color: red;
  height: 0;
  position: relative;
}

.square-img img {
  position: absolute;
  object-fit: cover;
  height: 100%;
}

.our-work .three-column .col {}

.our-work .three-column .col.one {
  width: 100%;
}

.our-work .three-column .col.two {
  width: 100%;
}

.our-work .three-column .col.three {
  width: 100%;
  text-align: center;
}

.our-work .three-column .col.three a {
  display: block;
  margin-bottom: 15px;
}

/* utilities */
.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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