@font-face {
  font-family: Code-Black;
  src: url(/Code-Next/CodeNext-Black.otf);
}
@font-face {
  font-family: Code-Bold;
  src: url(/Code-Next/CodeNext-Bold.otf);
}
@font-face {
  font-family: Code-Book;
  src: url(/Code-Next/CodeNext-Book.otf);
}
@font-face {
  font-family: Code-Light;
  src: url(/Code-Next/CodeNext-Light.otf);
}
@font-face {
  font-family: NVRFNSHD-Display;
  src: url(NVRFNSHD/OTF/NVRFNSHD-Display.otf);
}
@font-face {
  font-family: NVRFNSHD-Display-Italic;
  src: url(NVRFNSHD/OTF/NVRFNSHD-DisplayItalic.otf);
}
@font-face {
  font-family: NVRFNSHD-Italic;
  src: url(NVRFNSHD/OTF/NVRFNSHD-Italic.otf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(NVRFNSHD/OTF/NVRFNSHD-Regular.otf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(../../NVRFNSHD/OTF/NVRFNSHD-Regular.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  list-style: none;
}

html {
  font-size: 11px;
}

body {
  background-color: #000;
}
body.index {
  height: auto;
}
body::-webkit-scrollbar {
  display: none;
}

.container {
  width: 110rem;
  margin: 0 auto;
}

/*#region Animation Codes*/
.fade-bottom {
  animation: fade-bottom 1s ease 0.5s both paused;
  opacity: 0;
}
.fade-bottom.animate {
  animation-play-state: running;
}
@keyframes fade-bottom {
  from {
    transform: translateY(3rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-left {
  animation: fade-left 1.5s ease 0.5s both paused;
  opacity: 0;
}
.fade-left.animate {
  animation-play-state: running;
}
@keyframes fade-left {
  from {
    transform: translateX(-5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-right {
  animation: fade-right 1.5s ease 0.5s both paused;
}
.fade-right.animate {
  animation-play-state: running;
}
@keyframes fade-right {
  from {
    transform: translateX(5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.zoom {
  animation: zoom 1s ease 0.5s both paused;
}
.zoom.animate {
  animation-play-state: running;
}
@keyframes zoom {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.opacity {
  animation: opacity 1s ease 0.5s both paused;
}
.opacity.animate {
  animation-play-state: running;
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.run {
  animation-play-state: running;
}

/*#endregion*/
/*#region Header Codes*/
header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 9.5rem;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  background-color: #000;
}
header.active .container #header-menu {
  right: 0;
}
header.active .container #header-menu #menu-navigation,
header.active .container #header-menu #menu-button,
header.active .container #header-menu #menu-social {
  transform: translateY(0);
  opacity: 1;
}
header.active .container #header-menu #menu-list {
  transform: translateX(0);
  opacity: 1;
}
header .container {
  width: 100%;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container #header-logo {
  cursor: pointer;
}
header .container #header-logo:hover img {
  transform: scale(1.1);
}
header .container #header-logo img {
  width: 30rem;
  transition: transform 0.3s ease;
}
header .container #header-navigation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .container #header-navigation .search {
  cursor: pointer;
  margin-left: 2rem;
}
header .container #header-navigation .search i {
  font-size: 2.2rem;
  color: #FFF;
}
header .container #header-navigation .navigation {
  cursor: pointer;
  margin-left: 1.75rem;
}
header .container #header-navigation .navigation i {
  font-size: 2.6rem;
  color: #FFF;
}
header .container #header-menu {
  z-index: 102;
  position: fixed;
  top: 0;
  right: -100%;
  width: 41.4rem;
  height: 100vh;
  padding: 3rem;
  background: linear-gradient(45deg, rgb(85, 56, 93) 0%, rgb(215, 19, 103) 45%, rgb(215, 19, 103) 55%, rgb(85, 56, 93) 100%);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  grid-template-columns: 1fr;
  gap: 5rem;
  transition: right 0.5s ease;
}
header .container #header-menu #menu-navigation {
  opacity: 0;
  transform: translateY(-2rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 2rem 0 0;
  transition-property: transform, opacity;
  transition: 0.5s ease 1s;
}
header .container #header-menu #menu-navigation .search,
header .container #header-menu #menu-navigation #quit,
header .container #header-menu #menu-navigation .navigation {
  cursor: pointer;
}
header .container #header-menu #menu-navigation .search i,
header .container #header-menu #menu-navigation #quit i,
header .container #header-menu #menu-navigation .navigation i {
  font-size: 2.5rem;
  color: #FFF;
  margin-left: 2.5rem;
}
header .container #header-menu #menu-list {
  transform: translateX(-2rem);
  opacity: 0;
  padding-left: 2rem;
  transition-property: transform, opacity;
  transition: 0.5s ease 0.5s;
}
header .container #header-menu #menu-list ul {
  display: flex;
  flex-direction: column;
}
header .container #header-menu #menu-list ul li {
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
header .container #header-menu #menu-list ul li:last-child {
  margin-bottom: 0;
}
header .container #header-menu #menu-list ul li:hover {
  transform: translateX(1rem);
}
header .container #header-menu #menu-list ul li:hover a {
  color: rgba(255, 255, 255, 0.75);
}
header .container #header-menu #menu-list ul li.active a {
  color: rgba(255, 255, 255, 0.75);
}
header .container #header-menu #menu-list ul li a {
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFF;
  transition: color 0.3s ease;
}
header .container #header-menu #menu-list ol {
  display: flex;
  flex-direction: column;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}
header .container #header-menu #menu-list ol li {
  margin-bottom: 2rem;
}
header .container #header-menu #menu-list ol li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}
header .container #header-menu #menu-search {
  display: none;
  margin: 5rem 2rem 0 2rem;
}
header .container #header-menu #menu-search #search-input {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 0.125rem solid #FFF;
}
header .container #header-menu #menu-search #search-input input {
  padding: 0.75rem 0;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFF;
}
header .container #header-menu #menu-search #search-input input::-moz-placeholder {
  color: #FFF;
}
header .container #header-menu #menu-search #search-input input::placeholder {
  color: #FFF;
}
header .container #header-menu #menu-search #search-input i {
  font-size: 2.2rem;
  color: #FFF;
}
header .container #header-menu #menu-button {
  transform: translateY(2rem);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-property: transform, opacity;
  transition: 0.5s ease 1s;
}
header .container #header-menu #menu-button a {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFF;
}
header .container #header-menu #menu-button a:hover::after {
  width: 0%;
}
header .container #header-menu #menu-button a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  transition: width 0.3s ease;
}
header .container #header-menu #menu-social {
  padding: 0 2rem;
  transform: translateY(2rem);
  opacity: 0;
  transition-property: transform, opacity;
  transition: 0.5s ease 1s;
}
header .container #header-menu #menu-social ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container #header-menu #menu-social ul li {
  transition: transform 0.3s ease;
}
header .container #header-menu #menu-social ul li:hover {
  transform: scale(1.2);
}
header .container #header-menu #menu-social ul li a i {
  font-size: 2.5rem;
  color: #FFF;
}

/*#endregion*/
/*#region Main Codes*/
main.scroll::-webkit-scrollbar {
  display: none;
}
main #actions {
  z-index: 98;
  position: fixed;
  top: 50%;
  right: -21rem;
  width: 25rem;
  transform: translateY(-50%);
  background-color: #090909;
  transition: right 0.5s ease;
}
main #actions:hover {
  right: 0;
}
main #actions .action {
  width: 100%;
  padding: 1rem 1.25rem;
  transition: background-color 0.3s ease;
}
main #actions .action:hover {
  background-color: #eaeaea;
}
main #actions .action:hover a p, main #actions .action:hover a i {
  color: #090909;
}
main #actions .action a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main #actions .action a i {
  font-size: 1.8rem;
  color: #FFF;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
}
main #actions .action a p {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
  transition: color 0.3s ease;
}
main #overlay {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(9, 9, 9, 0.5);
}
main #scroll {
  z-index: 99;
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #scroll p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1rem;
}
main #scroll hr {
  width: 0.2rem;
  height: 2.5rem;
  background-color: #FFF;
}
main section#home article.slide {
  z-index: 0;
  top: 0;
  left: 100%;
}
main section#home article.slide.active {
  z-index: 2;
  transform: translateX(-100%);
}
main section#home article.slide.active .slide-image img {
  transform: scale(1.1);
}
main section#home article.slide.prev {
  z-index: 1;
  transform: translateX(-100%);
}
main section#home #home-pagination {
  z-index: 10;
  position: fixed;
  bottom: 5rem;
  right: 10rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main section#home #home-pagination span {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 3rem;
  height: 0.25rem;
  margin-left: 1.25rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  transition: background-color 0.5s ease;
}
main section#home #home-pagination span.active {
  background-color: #FFF;
}
main section#about {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
main section#about #about-text {
  max-width: 110rem;
  padding: 0 5rem;
}
main section#about #about-text p {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.5;
  margin-bottom: 2rem;
}
main section#about #about-text p:last-child {
  margin-bottom: 0;
}
main section#about #about-text p i {
  color: rgb(215, 19, 103);
  font-weight: 700;
}
main section#video {
  z-index: 105;
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 2rem 7vw;
  background-color: #000;
  transition: top 0.75s ease-out;
}
main section#video.active {
  top: 0;
}
main section#video #video-quit {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
main section#video #video-quit:hover {
  background-color: #000;
}
main section#video #video-quit:hover i {
  color: #FFF;
}
main section#video #video-quit i {
  font-size: 2rem;
  color: #000;
  transition: color 0.3s ease;
}
main section#video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
main section.slide,
main article.slide {
  z-index: 1;
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  transition: transform 0.75s ease-out;
}
main section.slide.reverse,
main article.slide.reverse {
  top: 0;
  left: 100%;
}
main section.slide.reverse.active,
main article.slide.reverse.active {
  z-index: 2;
  transform: translateX(-100%);
}
main section.slide.reverse.active .slide-image img,
main article.slide.reverse.active .slide-image img {
  transform: scale(1.1);
}
main section.slide.active,
main article.slide.active {
  z-index: 2;
  transform: translateY(-100%);
}
main section.slide.active .slide-image,
main article.slide.active .slide-image {
  padding-top: 9.5rem;
}
main section.slide.active .slide-content .slide-title,
main section.slide.active .slide-content .slide-text,
main article.slide.active .slide-content .slide-title,
main article.slide.active .slide-content .slide-text {
  transform: translateY(0);
  opacity: 1;
}
main section.slide.prev,
main article.slide.prev {
  z-index: 1;
  transform: translateY(-100%);
}
main section.slide:nth-child(1) .slide-content, main section.slide:nth-child(3) .slide-content, main section.slide:nth-child(5) .slide-content, main section.slide:nth-child(8) .slide-content,
main article.slide:nth-child(1) .slide-content,
main article.slide:nth-child(3) .slide-content,
main article.slide:nth-child(5) .slide-content,
main article.slide:nth-child(8) .slide-content {
  background: linear-gradient(45deg, rgb(85, 56, 93) 0%, rgb(215, 19, 103) 45%, rgb(215, 19, 103) 55%, rgb(85, 56, 93) 100%);
}
main section.slide:nth-child(4) .slide-content, main section.slide:nth-child(10) .slide-content,
main article.slide:nth-child(4) .slide-content,
main article.slide:nth-child(10) .slide-content {
  background: linear-gradient(45deg, rgb(31, 77, 255) 0%, rgb(3, 162, 241) 100%);
}
main section.slide:nth-child(6) .slide-content,
main article.slide:nth-child(6) .slide-content {
  background: linear-gradient(135deg, rgb(43, 73, 230) 15%, rgb(25, 160, 222) 30%, rgb(204, 52, 58) 80%, rgb(255, 121, 1) 100%);
}
main section.slide:nth-child(7) .slide-content, main section.slide:nth-child(9) .slide-content,
main article.slide:nth-child(7) .slide-content,
main article.slide:nth-child(9) .slide-content {
  background: linear-gradient(45deg, rgb(235, 53, 37) 0%, rgb(253, 194, 3) 80%);
}
main section.slide .slide-content,
main article.slide .slide-content {
  position: relative;
  width: 50%;
  padding: 5rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
main section.slide .slide-content .slide-title,
main article.slide .slide-content .slide-title {
  margin-bottom: 3rem;
  transform: translateY(5rem);
  opacity: 0;
  transition-property: transform, opacity;
  transition: 0.75s ease 1s;
}
main section.slide .slide-content .slide-title h5,
main article.slide .slide-content .slide-title h5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.5rem;
}
main section.slide .slide-content .slide-title h2,
main article.slide .slide-content .slide-title h2 {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFf;
}
main section.slide .slide-content .slide-text,
main article.slide .slide-content .slide-text {
  transform: translateY(5rem);
  opacity: 0;
  transition-property: transform, opacity;
  transition: 0.75s ease 1s;
}
main section.slide .slide-content .slide-text p,
main article.slide .slide-content .slide-text p {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  font-style: italic;
  color: #FFF;
  line-height: 1.5;
}
main section.slide .slide-content .slide-text a,
main article.slide .slide-content .slide-text a {
  margin-top: 3rem;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
}
main section.slide .slide-content .slide-video,
main article.slide .slide-content .slide-video {
  position: absolute;
  bottom: 5rem;
  left: 7vw;
}
main section.slide .slide-content .slide-video .video-icon,
main article.slide .slide-content .slide-video .video-icon {
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
main section.slide .slide-content .slide-video .video-icon:hover,
main article.slide .slide-content .slide-video .video-icon:hover {
  transform: scale(1.2);
}
main section.slide .slide-content .slide-video .video-icon i,
main article.slide .slide-content .slide-video .video-icon i {
  font-size: 1.25rem;
  color: #000;
}
main section.slide .slide-content .slide-video p,
main article.slide .slide-content .slide-video p {
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
}
main section.slide .slide-content .slide-video p a,
main article.slide .slide-content .slide-video p a {
  cursor: pointer;
  position: relative;
  color: #FFF;
}
main section.slide .slide-content .slide-video p a::after,
main article.slide .slide-content .slide-video p a::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
}
main section.slide .slide-image,
main article.slide .slide-image {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 100%;
  transition: padding-top 0.75s ease 1s;
}
main section.slide .slide-image::after,
main article.slide .slide-image::after {
  z-index: 2;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
}
main section.slide .slide-image img,
main article.slide .slide-image img {
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main section#work {
  background-color: #FFF;
}
main section#work #work-background {
  position: relative;
  height: 45rem;
  background-image: url(../img/work-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main section#work #work-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
}
main section#work .container {
  padding: 10rem 0;
}
main section#work .container #work-title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}
main section#work .container #work-title h1 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
}
main section#work .container #work-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
main section#work .container #work-navigation ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section#work .container #work-navigation ul h4 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
  margin-right: 2rem;
}
main section#work .container #work-navigation ul li {
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
}
main section#work .container #work-navigation ul li.active::after, main section#work .container #work-navigation ul li:hover::after {
  width: 100%;
}
main section#work .container #work-navigation ul li::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #090909;
  transition: width 0.5s ease;
}
main section#work .container #work-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 3rem;
  align-items: stretch;
}
main section#work .container #work-content .work:hover .work-image img {
  transform: scale(1.1);
}
main section#work .container #work-content .work:hover .work-text::after {
  width: 0;
}
main section#work .container #work-content .work .work-image {
  height: 30rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
main section#work .container #work-content .work .work-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
main section#work .container #work-content .work .work-text {
  position: relative;
}
main section#work .container #work-content .work .work-text::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 7rem;
  height: 0.2rem;
  border-radius: 1rem;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
  transition: width 0.3s ease;
}
main section#work .container #work-content .work .work-text h3 {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
  margin-bottom: 1rem;
}
main section#work .container #work-content .work .work-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #090909;
  margin-bottom: 0.5rem;
}
main section#work .container #work-content .work .work-text p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #727272;
}
main section#work .container #work-load {
  padding-top: 10rem;
  display: flex;
  justify-content: center;
}
main section#work .container #work-load button {
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
}
main section#work .container #work-load button:hover::after {
  width: 0%;
}
main section#work .container #work-load button::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #090909;
  transition: width 0.5s ease;
}
main section#details #details-title {
  position: relative;
  min-height: 45rem;
  padding: 20rem 0 15rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#details #details-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
  z-index: 1;
}
main section#details #details-title #details-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main section#details #details-title #details-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main section#details #details-title .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main section#details #details-title .container * {
  z-index: 2;
}
main section#details #details-title .container h3 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1rem;
}
main section#details #details-title .container h1 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFF;
  margin-bottom: 4rem;
}
main section#details #details-title .container a {
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
}
main section#details #details-title .container a:hover::after {
  width: 0%;
}
main section#details #details-title .container a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
  transition: width 0.3s ease;
}
main section#details #details-title p {
  z-index: 3;
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
}
main section#details #details-title p a {
  cursor: pointer;
  position: relative;
  color: #FFF;
}
main section#details #details-title p a::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
}
main section#details #details-content {
  background-color: #FFF;
  padding: 10rem 0;
}
main section#details #details-content .container {
  max-width: 75rem;
}
main section#details #details-content .container #details-text {
  margin-bottom: 4rem;
}
main section#details #details-content .container #details-text p {
  font-size: 2rem;
  font-weight: 500;
  color: #090909;
  line-height: 1.75;
  margin-bottom: 2rem;
}
main section#details #details-content .container #details-text p:last-child {
  margin-bottom: 0;
}
main section#details #details-content .container #details-text hr {
  width: 100%;
  height: 0.1rem;
  border: none;
  outline: none;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
}
main section#details #details-content .container #details-awards {
  margin-bottom: 4rem;
}
main section#details #details-content .container #details-awards h2 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
  margin-bottom: 4rem;
}
main section#details #details-content .container #details-awards ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main section#details #details-content .container #details-awards ul li {
  margin-right: 10rem;
}
main section#details #details-content .container #details-awards ul li:last-child {
  margin-right: 0;
}
main section#details #details-content .container #details-awards ul li img {
  width: 10rem;
}
main section#details #details-content #details-video {
  height: 100vh;
  margin-bottom: 10rem;
}
main section#details #details-content #details-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
main section#details #details-content #details-button {
  border-top: 0.1rem solid #eaeaea;
  padding-top: 5rem;
}
main section#details #details-content #details-button .container {
  max-width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section#details #details-content #details-button .container a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
  transition: color 0.3s ease;
}
main section#details #details-content #details-button .container a:hover {
  color: #959595;
}
main section#details #details-content #details-button .container a:hover i {
  transform: translateX(-1rem);
}
main section#details #details-content #details-button .container a:nth-child(2):hover i {
  transform: rotate(180deg);
}
main section#details #details-content #details-button .container a:last-child i {
  margin: 0 0 0 1.5rem;
}
main section#details #details-content #details-button .container a:last-child:hover i {
  transform: translateX(1rem);
}
main section#details #details-content #details-button .container a i {
  font-size: 1.8rem;
  color: #959595;
  margin-right: 1.5rem;
  transition: transform 0.3s ease;
}
main section#contact {
  background-color: #FFF;
}
main section#contact #contact-background {
  position: relative;
  padding-top: 10rem;
  height: 45rem;
  background: linear-gradient(135deg, rgb(43, 73, 230) 15%, rgb(25, 160, 222) 30%, rgb(204, 52, 58) 80%, rgb(255, 121, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#contact #contact-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
}
main section#contact #contact-background h1 {
  z-index: 1;
  font-size: 7.5rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFF;
  text-align: center;
}
main section#contact .container {
  padding: 10rem 0;
}
main section#contact .container #contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
main section#contact .container #contact-cards .contact {
  position: relative;
  padding: 5rem 1.5rem 7rem 1.5rem;
  background-color: #F7F7F7;
  transition-property: background-color, transform;
  transition: 0.3s ease;
}
main section#contact .container #contact-cards .contact:hover {
  background-color: #090909;
  transform: translateY(-2rem);
}
main section#contact .container #contact-cards .contact:hover .contact-title h2 {
  color: #FFf;
}
main section#contact .container #contact-cards .contact:hover .contact-title hr {
  background-color: #FFF;
}
main section#contact .container #contact-cards .contact:hover .contact-text p, main section#contact .container #contact-cards .contact:hover .contact-text a {
  color: #FFF;
}
main section#contact .container #contact-cards .contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
}
main section#contact .container #contact-cards .contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 4rem solid #FFF;
  border-top: 4rem solid transparent;
}
main section#contact .container #contact-cards .contact .contact-title {
  margin-bottom: 1.5rem;
}
main section#contact .container #contact-cards .contact .contact-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #090909;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
main section#contact .container #contact-cards .contact .contact-title hr {
  width: 4rem;
  height: 0.1rem;
  border: none;
  outline: none;
  background-color: #090909;
  transition: background-color 0.3s ease;
}
main section#contact .container #contact-cards .contact .contact-text p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #090909;
  line-height: 1.6;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}
main section#contact .container #contact-cards .contact .contact-text a {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #090909;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
main section#contact .container #contact-cards .contact .contact-text a:last-child {
  margin-bottom: 0;
}
main section#contact .container #contact-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 0;
}
main section#contact .container #contact-navigation h2 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
  margin-bottom: 4rem;
}
main section#contact .container #contact-navigation ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section#contact .container #contact-navigation ul h4 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
  margin-right: 2rem;
}
main section#contact .container #contact-navigation ul li {
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
}
main section#contact .container #contact-navigation ul li.active::after, main section#contact .container #contact-navigation ul li:hover::after {
  width: 100%;
}
main section#contact .container #contact-navigation ul li::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #090909;
  transition: width 0.5s ease;
}
main section#contact .container #contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 3rem;
  align-items: stretch;
}
main section#contact .container #contact-content .contact:hover .contact-image img {
  transform: scale(1.1);
}
main section#contact .container #contact-content .contact:hover .contact-text .contact-country hr {
  width: 0;
}
main section#contact .container #contact-content .contact .contact-image {
  height: 30rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
main section#contact .container #contact-content .contact .contact-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
main section#contact .container #contact-content .contact .contact-text {
  position: relative;
}
main section#contact .container #contact-content .contact .contact-text .contact-country {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main section#contact .container #contact-content .contact .contact-text .contact-country hr {
  width: 7rem;
  height: 0.2rem;
  border: none;
  outline: none;
  margin-right: 1rem;
  border-radius: 1rem;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
  transition: width 0.3s ease;
}
main section#contact .container #contact-content .contact .contact-text .contact-country h4 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  color: #090909;
}
main section#contact .container #contact-content .contact .contact-text h3 {
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
  margin-top: 1rem;
}
main section#map {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#map svg {
  width: 100%;
  overflow: hidden;
}
main section#map svg path {
  cursor: pointer;
  fill: transparent;
  animation: bounce 0.75s ease 1s infinite alternate both running;
  transition: fill 0.5s ease;
}
main section#map svg path:hover {
  animation-play-state: paused;
  fill: #d71367 !important;
}
@keyframes bounce {
  0% {
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    fill: rgba(255, 255, 255, 0.15);
  }
}
main section#leadership {
  background-color: #FFF;
}
main section#leadership #leadership-background {
  position: relative;
  padding-top: 10rem;
  height: 45rem;
  background: linear-gradient(135deg, rgb(43, 73, 230) 15%, rgb(25, 160, 222) 30%, rgb(204, 52, 58) 80%, rgb(255, 121, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#leadership #leadership-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
}
main section#leadership #leadership-background h1 {
  z-index: 1;
  font-size: 7.5rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFF;
  text-align: center;
}
main section#leadership #leadership-content {
  padding: 10rem 0;
}
main section#leadership #leadership-content .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
main section#leadership #leadership-content .container .leader {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 50rem;
}
main section#leadership #leadership-content .container .leader.half {
  width: 50%;
}
main section#leadership #leadership-content .container .leader.third {
  width: 33.3333%;
}
main section#leadership #leadership-content .container .leader.quarter {
  width: 20%;
}
main section#leadership #leadership-content .container .leader.quarter .leader-text {
  position: absolute;
  left: 0;
  bottom: -50%;
  padding: 2rem;
  opacity: 0;
  transition: bottom 0.5s ease;
}
main section#leadership #leadership-content .container .leader.quarter .leader-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFf;
  margin-bottom: 2rem;
}
main section#leadership #leadership-content .container .leader.quarter .leader-text p {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1rem;
}
main section#leadership #leadership-content .container .leader:hover .leader-image img {
  transform: scale(1.1);
}
main section#leadership #leadership-content .container .leader:hover .leader-text {
  bottom: 0;
  opacity: 1;
}
main section#leadership #leadership-content .container .leader .leader-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main section#leadership #leadership-content .container .leader .leader-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.3s ease;
}
main section#leadership #leadership-content .container .leader .leader-text {
  position: absolute;
  left: 0;
  bottom: -50%;
  padding: 2rem;
  opacity: 0;
  transition: bottom 0.5s ease;
}
main section#leadership #leadership-content .container .leader .leader-text h2 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFf;
  margin-bottom: 2rem;
}
main section#leadership #leadership-content .container .leader .leader-text p {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1rem;
}
main section#leadership #leadership-content .container .leader .leader-text a {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFF;
}
main section#leadership #leadership-content .container .leader .leader-text a:hover::after {
  width: 0%;
}
main section#leadership #leadership-content .container .leader .leader-text a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  transition: width 0.3s ease;
}
main section#leader {
  background-color: #FFF;
}
main section#leader #leader-background {
  position: relative;
  height: 45rem;
  background-image: url(../img/leadership-2-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main section#leader #leader-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.5);
}
main section#leader #leader-content .container {
  padding: 10rem 0;
}
main section#leader #leader-content .container img {
  width: 100%;
  max-width: 45rem;
  margin-right: 2rem;
  float: left;
  margin-bottom: 2rem;
}
main section#leader #leader-content .container h1 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #090909;
  margin-bottom: 1rem;
}
main section#leader #leader-content .container h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #090909;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
main section#leader #leader-content .container p {
  text-align: justify;
  font-size: 1.8rem;
  font-weight: 400;
  color: #090909;
  line-height: 1.6;
  margin-bottom: 2rem;
}
main section#leader #leader-content .container a {
  display: inline-block;
  margin-top: 2rem;
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  color: #090909;
}
main section#leader #leader-content .container a:hover::after {
  width: 0%;
}
main section#leader #leader-content .container a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #090909;
  transition: width 0.3s ease;
}
main section#leader #leader-button {
  border-top: 0.1rem solid #eaeaea;
}
main section#leader #leader-button .container {
  padding: 5rem 0;
  max-width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section#leader #leader-button .container a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #090909;
  transition: color 0.3s ease;
}
main section#leader #leader-button .container a:hover {
  color: #959595;
}
main section#leader #leader-button .container a:hover i {
  transform: translateX(-1rem);
}
main section#leader #leader-button .container a:nth-child(2):hover i {
  transform: rotate(180deg);
}
main section#leader #leader-button .container a:last-child i {
  margin: 0 0 0 1.5rem;
}
main section#leader #leader-button .container a:last-child:hover i {
  transform: translateX(1rem);
}
main section#leader #leader-button .container a i {
  font-size: 1.8rem;
  color: #959595;
  margin-right: 1.5rem;
  transition: transform 0.3s ease;
}
main section#approach {
  background-color: #FFF;
}
main section#approach #approach-background {
  padding-top: 10rem;
  height: 45rem;
  background: linear-gradient(135deg, rgb(43, 73, 230) 15%, rgb(25, 160, 222) 30%, rgb(204, 52, 58) 80%, rgb(255, 121, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#approach #approach-background h1 {
  z-index: 1;
  font-size: 7.5rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFF;
  text-align: center;
}
main section#approach #approach-content .container {
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section#approach #approach-content .container h2 {
  max-width: 97rem;
  width: 100%;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: -0.1rem;
  color: #090909;
  margin-bottom: 10rem;
}
main section#approach #approach-content .container h2 i {
  color: #e2175d;
  font-weight: 500;
}
main section#approach #approach-content .container .approach {
  max-width: 97rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 15rem;
}
main section#approach #approach-content .container .approach:last-child {
  margin-bottom: 0;
}
main section#approach #approach-content .container .approach:nth-child(2) .approach-image img {
  border-color: #F37616;
}
main section#approach #approach-content .container .approach:nth-child(3) .approach-image img {
  border-color: #2866FC;
}
main section#approach #approach-content .container .approach:nth-child(2n+1) .approach-image {
  order: -1;
}
main section#approach #approach-content .container .approach .approach-image {
  width: 45rem;
  height: 45rem;
}
main section#approach #approach-content .container .approach .approach-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-bottom: 1rem solid #D9206F;
}
main section#approach #approach-content .container .approach .approach-content {
  width: calc(100% - 50rem);
}
main section#approach #approach-content .container .approach .approach-content h3 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.1rem;
  color: #090909;
  font-style: italic;
  margin-bottom: 5rem;
}
main section#approach #approach-content .container .approach .approach-content p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #090909;
  line-height: 1.6;
  margin-bottom: 2rem;
}
main section#approach #approach-content .container .approach .approach-content h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #090909;
  line-height: 1.6;
  margin-bottom: 2rem;
}
main section#approach #approach-content .container .approach .approach-content a {
  display: inline-block;
  margin-top: 2rem;
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  color: #090909;
}
main section#approach #approach-content .container .approach .approach-content a:hover::after {
  width: 0%;
}
main section#approach #approach-content .container .approach .approach-content a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #090909;
  transition: width 0.3s ease;
}

/*#endregion*/
/*#region Footer Codes*/
footer {
  background-color: #090909;
}
footer #footer-awards {
  padding: 4rem 0;
}
footer #footer-awards .container {
  max-width: 130rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer #footer-awards .container .award {
  width: calc(33.33% - 2rem);
  min-height: 10rem;
  margin: 2rem 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer #footer-awards .container .award img {
  width: 7rem;
  margin-right: 5rem;
}
footer #footer-awards .container .award p {
  max-width: 10rem;
  font-size: 1rem;
  font-weight: 500;
  color: #d9d9d9;
}
footer #footer-contact {
  position: relative;
  padding: 5rem 0;
  background-color: #151515;
}
footer #footer-contact::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-image: linear-gradient(90deg, #353c89, #2e3c73, #21457e, #045888, #006aae, #046fac, #0575b0, #b24830, #e94f22, #eb7f20, #db3821, #faa91a, #ffc50c, #febb11, #feca0d, #ffd70c, #ee2824, #ee2b24, #d83121, #d93121, #e42823, #ea6423, #eb6523, #e96b24, #fba919, #be3621, #bf411f, #ec2024, #df1b22, #f47b26, #f05025, #e72529, #e52040, #ea1566, #ca0162, #e71474, #c71047, #df155b, #e2175d, #e11b29, #e51b26, #c1151d, #9c0a11, #671a66, #47287e, #3e358a);
}
footer #footer-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer #footer-contact .container h2 {
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: -0.2rem;
  color: #FFf;
  margin-bottom: 2rem;
}
footer #footer-contact #contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer #footer-contact #contact-button a {
  position: relative;
  margin: 0 3rem;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFF;
}
footer #footer-contact #contact-button a:hover::after {
  width: 0%;
}
footer #footer-contact #contact-button a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  transition: width 0.3s ease;
}
footer #footer-copyright {
  padding: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer #footer-copyright #footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer #footer-copyright #footer-social ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer #footer-copyright #footer-social ul li {
  margin-right: 3rem;
  transition: transform 0.3s ease;
}
footer #footer-copyright #footer-social ul li:hover {
  transform: scale(1.2);
}
footer #footer-copyright #footer-social ul li a i {
  font-size: 2.5rem;
  color: #FFF;
}
footer #footer-copyright #footer-social p a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  transition: opacity 0.3s ease;
}
footer #footer-copyright #footer-social p a:hover {
  opacity: 0.3;
}
footer #footer-copyright #footer-menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer #footer-copyright #footer-menu ul li {
  margin-right: 2rem;
}
footer #footer-copyright #footer-menu ul li:last-child {
  margin-right: 0;
}
footer #footer-copyright #footer-menu ul li a {
  text-decoration: underline;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
}

/*#endregion*/
/*#region Responsive Codes*/
@media screen and (max-width: 1640px) {
  html {
    font-size: 10.8px;
  }
}
@media screen and (max-width: 1590px) {
  html {
    font-size: 10.6px;
  }
}
@media screen and (max-width: 1540px) {
  html {
    font-size: 10.4px;
  }
}
@media screen and (max-width: 1490px) {
  html {
    font-size: 10.2px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 10px;
  }
  .container {
    width: 85%;
  }
  footer #footer-awards .container .award {
    width: calc(50% - 2rem);
    justify-content: center;
  }
  footer #footer-copyright {
    flex-direction: column;
  }
  footer #footer-copyright #footer-social {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
  }
  footer #footer-copyright #footer-social ul {
    margin-bottom: 2rem;
  }
  footer #footer-copyright #footer-social ul li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .container {
    padding: 0 3rem;
  }
  header .container #header-menu {
    width: 100%;
  }
  main.scroll {
    overflow: scroll;
  }
  main section#home article.slide {
    flex-direction: column;
  }
  main section#home article.slide .slide-content {
    width: 100%;
    height: 50%;
    padding: 5rem;
    justify-content: flex-start;
  }
  main section#home article.slide .slide-image {
    width: 100%;
    height: 50%;
    order: -1;
  }
  main section#home #home-pagination {
    display: none;
  }
  main section#about #about-text p {
    font-size: 1.5rem;
  }
  main section.slide {
    flex-direction: column;
  }
  main section.slide .slide-content {
    width: 100%;
    height: 50%;
    padding: 5rem;
    justify-content: flex-start;
  }
  main section.slide .slide-image {
    width: 100%;
    height: 50%;
    order: -1;
  }
  main section#work .container #work-navigation ul {
    flex-direction: column;
  }
  main section#work .container #work-navigation ul h4 {
    margin: 0 0 2rem 0;
  }
  main section#work .container #work-navigation ul li {
    margin-bottom: 2rem;
  }
  main section#work .container #work-content {
    grid-template-columns: 1fr;
  }
  main section#contact #contact-background h1 {
    font-size: 5.2rem;
  }
  main section#contact .container #contact-cards {
    grid-template-columns: 1fr;
  }
  main section#contact .container #contact-navigation h2 {
    text-align: center;
  }
  main section#contact .container #contact-navigation ul {
    flex-direction: column;
  }
  main section#contact .container #contact-navigation ul h4 {
    margin: 0 0 2rem 0;
  }
  main section#contact .container #contact-navigation ul li {
    margin-bottom: 2rem;
  }
  main section#contact .container #contact-content {
    grid-template-columns: 1fr;
  }
  main section#map {
    width: 200%;
  }
  main section#leadership #leadership-content .container {
    width: 100%;
  }
  main section#leadership #leadership-content .container .leader.half, main section#leadership #leadership-content .container .leader.quarter, main section#leadership #leadership-content .container .leader.third {
    width: 33.333%;
  }
  main section#approach #approach-content .container .approach {
    max-width: 75rem;
    flex-direction: column;
  }
  main section#approach #approach-content .container .approach .approach-content {
    width: 100%;
  }
  main section#approach #approach-content .container .approach .approach-image {
    width: 100%;
    order: -1;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section#map {
    width: 300%;
  }
  main section#leadership #leadership-content .container .leader.half, main section#leadership #leadership-content .container .leader.quarter, main section#leadership #leadership-content .container .leader.third {
    width: 50%;
  }
  footer #footer-awards .container .award {
    width: 100%;
  }
  footer #footer-contact #contact-button {
    flex-direction: column;
  }
  footer #footer-contact #contact-button a:first-child {
    margin-bottom: 4rem;
  }
  footer #footer-copyright {
    margin-bottom: 0;
  }
  footer #footer-copyright #footer-menu {
    order: -1;
    margin-bottom: 4rem;
  }
  footer #footer-copyright #footer-menu ul {
    flex-direction: column;
  }
  footer #footer-copyright #footer-menu ul li {
    margin: 0 0 2rem 0;
  }
}
@media screen and (max-width: 468px) {
  html {
    font-size: 10px;
  }
  main section#home article.slide .slide-content {
    height: 60%;
  }
  main section#home article.slide .slide-image {
    height: 40%;
  }
  main section.slide .slide-content {
    height: 60%;
  }
  main section.slide .slide-image {
    height: 40%;
  }
  main section#map {
    width: 400%;
  }
  main section#leadership #leadership-content .container .leader.half, main section#leadership #leadership-content .container .leader.quarter, main section#leadership #leadership-content .container .leader.third {
    width: 100%;
  }
  main section#approach #approach-content .container .approach {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 425px) {
  html {
    font-size: 9.75px;
  }
}
@media screen and (max-width: 400px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 9.25px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 325px) {
  html {
    font-size: 8.75px;
  }
}
/*#endregion*//*# sourceMappingURL=stylepage.css.map */