.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

p {
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  color: #aaa;
  line-height: 21px;
  font-weight: 300;
  text-align: center;
}

.dark-background {
  background-color: #1a1a1a;
}

.main-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.main-wrapper.dark-background {
  display: block;
  box-shadow: 0 0 27px 6px rgba(0, 0, 0, 0.52);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mask-over-video {
  position: absolute;
  left: -1%;
  top: -1%;
  z-index: 2;
  display: none;
  width: 102%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.75);
}

.overflow-hidden {
  overflow: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.overflow-hidden.dark-background {
  overflow: visible;
  background-color: transparent;
}

.photo-name-wrap {
  position: absolute;
  left: 0px;
  top: 25%;
  right: 0px;
  z-index: 3;
  width: 100%;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

.photographer-name {
  opacity: 1;
  font-family: Clattering, sans-serif;
  color: #e0e0e0;
  font-size: 150px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 10px;
  text-indent: 10px;
}

.photography-text {
  margin-top: 59px;
  opacity: 1;
  font-family: Oswald, sans-serif;
  color: #534f48;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
}

.about-link {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 50px;
  background-image: url('../images/arrow-down.png');
  background-position: 50% 32px;
  background-size: 5px;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transform: rotate(90deg) translate(-50%, -80px);
  -ms-transform: rotate(90deg) translate(-50%, -80px);
  transform: rotate(90deg) translate(-50%, -80px);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 4px;
  cursor: pointer;
}

.about-link:hover {
  background-position: 50% 40px;
}

.contact-link {
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 7;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 50px;
  background-image: url('../images/arrow-down.png');
  background-position: 50% 32px;
  background-size: 5px;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transform: rotate(-90deg) translate(50%, -80px);
  -ms-transform: rotate(-90deg) translate(50%, -80px);
  transform: rotate(-90deg) translate(50%, -80px);
  -webkit-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 4px;
  cursor: pointer;
}

.contact-link:hover {
  background-position: 50% 40px;
}

.about-page {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 20;
  display: block;
  overflow: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin-left: 0px;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
}

.about-close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-image: url('../images/cross.png');
  background-position: 50% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  cursor: pointer;
}

.about-close:hover {
  background-size: 30px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-page {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 21;
  display: block;
  overflow: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-transform: translate(100%, 0px);
  -ms-transform: translate(100%, 0px);
  transform: translate(100%, 0px);
}

.contact-close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-image: url('../images/cross.png');
  background-position: 50% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  cursor: pointer;
}

.contact-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.slider-wrapper {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 25%;
  z-index: 10;
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  text-align: center;
}

.slider-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.home-slider {
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.home-slider-mask {
  display: block;
  overflow: visible;
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.home-slider-slide {
  width: 100%;
  height: auto;
}

.slider-photo-text {
  position: relative;
  display: block;
  margin: 0px auto;
  padding-bottom: 50px;
  background-image: url('../images/arrow-down.png');
  background-position: 50% 40px;
  background-size: 6px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 300ms ease;
  transition: background-position 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 26px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  text-transform: lowercase;
  cursor: pointer;
}

.slider-photo-text:hover {
  background-position: 50% 50px;
}

.slider-photo-text-2 {
  position: relative;
  display: block;
  margin: 0px auto;
  padding-bottom: 50px;
  background-image: url('../images/arrow-down.png');
  background-position: 50% 40px;
  background-size: 6px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 300ms ease;
  transition: background-position 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  text-transform: lowercase;
  cursor: pointer;
}

.slider-photo-text-2:hover {
  background-position: 50% 50px;
}

.slider-photo-text-3 {
  position: relative;
  display: block;
  margin: 0px auto;
  padding-bottom: 50px;
  background-image: url('../images/arrow-down.png');
  background-position: 50% 40px;
  background-size: 6px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 300ms ease;
  transition: background-position 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  text-transform: lowercase;
  cursor: pointer;
}

.slider-photo-text-3:hover {
  background-position: 50% 50px;
}

.right-arrow {
  width: 50px;
  background-image: url('../images/arrow-right.png');
  background-position: 0px 50%;
  background-size: 40px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 300ms ease;
  transition: background-position 300ms ease;
}

.right-arrow:hover {
  background-position: 10px 50%;
}

.left-arrow {
  width: 50px;
  background-image: url('../images/arrow-left.png');
  background-position: 100% 50%;
  background-size: 40px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 300ms ease;
  transition: background-position 300ms ease;
}

.left-arrow:hover {
  background-position: 0px 50%;
}

.gallery-portraits {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 20;
  display: block;
  overflow: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
  transform: translate(0px, 100%);
}

.gallery-close-1 {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  width: 40px;
  height: 40px;
  background-image: url('../images/cross.png');
  background-position: 50% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 150ms ease;
  transition: -webkit-transform 150ms ease;
  transition: transform 150ms ease;
  transition: transform 150ms ease, -webkit-transform 150ms ease;
  cursor: pointer;
}

.gallery-close-1:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.main-gallery-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.camera-info {
  position: relative;
  width: 100%;
  padding-bottom: 70px;
}

.camera-name {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 15px;
  font-family: Lato, sans-serif;
  color: #686868;
  font-size: 17px;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.camera-details {
  width: 100%;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 3px;
}

.gallery-name {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 40px;
  font-family: Clattering, sans-serif;
  color: #fcfcfc;
  font-size: 50px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  text-transform: none;
}

.gallery-masonry {
  position: relative;
  overflow: hidden;
  width: 100%;
  clear: none;
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 0em;
  column-gap: 0em;
  -webkit-column-rule: 0px none transparent;
  column-rule: 0px none transparent;
}

.gallery-box {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px;
  float: none;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.gallery-box:hover {
  opacity: 0.7;
}

.gallery-landscape {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 20;
  display: block;
  overflow: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
  transform: translate(0px, 100%);
}

.gallery-close-2 {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  width: 40px;
  height: 40px;
  background-image: url('../images/cross.png');
  background-position: 50% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 150ms ease;
  transition: -webkit-transform 150ms ease;
  transition: transform 150ms ease;
  transition: transform 150ms ease, -webkit-transform 150ms ease;
  cursor: pointer;
}

.gallery-close-2:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gallery-wildlife {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 20;
  display: block;
  overflow: auto;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-transform: translate(0px, 100%);
  -ms-transform: translate(0px, 100%);
  transform: translate(0px, 100%);
}

.gallery-close-3 {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  width: 40px;
  height: 40px;
  background-image: url('../images/cross.png');
  background-position: 50% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 150ms ease;
  transition: -webkit-transform 150ms ease;
  transition: transform 150ms ease;
  transition: transform 150ms ease, -webkit-transform 150ms ease;
  cursor: pointer;
}

.gallery-close-3:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.about-wrapper {
  position: relative;
  top: 50%;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

.about-wrap {
  position: relative;
  display: block;
  width: 90%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.photographer-video {
  position: relative;
  display: block;
  width: 400px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  border-radius: 10px;
}

.photographer-name-about-page {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 15px;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 30px;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
}

.un-list {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 30px auto 0px;
  padding-left: 0px;
  font-family: Clattering, sans-serif;
  text-align: center;
}

.un-list.contact-links {
  display: inline-block;
  text-align: left;
}

.list-item {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
}

.list-item.con {
  margin-right: 30px;
  margin-left: 0px;
}

.soc-link {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
}

.soc-link:hover {
  color: #c4c4c4;
}

.soc-link.diff-soc {
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.soc-link.updated-soc {
  font-family: Lato, sans-serif;
  font-size: 13px;
}

.label {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
}

.text-fild {
  position: relative;
  display: inline-block;
  width: 168px;
  margin: 5px 10px 15px;
  padding: 0px;
  border-style: none none dotted;
  border-bottom-width: 1px;
  border-bottom-color: #bebebe;
  background-color: hsla(0, 0%, 100%, 0);
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  font-family: Clattering, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
}

.text-fild:hover {
  border-bottom-color: #f90;
}

.text-fild:focus {
  border-bottom-color: #f90;
}

.text-fild.for-name {
  width: 189px;
}

.text-fild.for-message {
  width: 553px;
  height: 42px;
  margin-left: 0px;
}

.contact-but {
  width: auto;
  height: auto;
  margin-left: 15px;
  padding: 0px;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  font-family: Oswald, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 42px;
  font-weight: 500;
}

.contact-but:hover {
  color: #f90;
}

.contact-but:focus {
  color: #f90;
}

.succ {
  padding-right: 0px;
  padding-left: 0px;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.par {
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
}

.error {
  margin-top: 20px;
  padding-left: 0px;
  background-color: rgba(255, 222, 222, 0);
}

.er-pa {
  font-family: Poppins, sans-serif;
  color: #f90;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  text-align: left;
}

.form-wrapper {
  font-family: Oswald, sans-serif;
}

.video {
  margin-bottom: 14px;
}

.paragraph {
  color: silver;
  font-size: 15px;
  font-weight: 300;
}

.hero-section {
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-span {
  color: #fff;
}

.text-span-2 {
  color: #fff;
}

.container-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 750px;
  max-height: none;
  max-width: 100%;
  padding-top: 0px;
  padding-left: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: url('../images/baim-hanif-pywuomhtc6k-unsplash-1-1.png');
  background-position: 0% 50%;
  background-size: cover;
}

.heading {
  width: 555px;
  margin-top: 0px;
  margin-left: 34px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #fff;
  font-size: 54px;
  line-height: 64px;
  text-align: left;
}

.text-block {
  width: 555px;
  margin-top: 34px;
  margin-left: 34px;
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  text-align: left;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand {
  width: 125px;
  margin-top: 15px;
  margin-bottom: 0px;
  margin-left: 20px;
}

.navbar {
  background-color: #fff;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 18px;
}

.container-2 {
  max-width: 90%;
  min-width: 0px;
}

.paragraph-2 {
  margin-top: 39px;
  margin-bottom: 39px;
  color: #fff;
  font-size: 18px;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 46px;
  padding-top: 44px;
  padding-bottom: 67px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f8f8f8;
}

.paragraph-3 {
  max-width: 800px;
  margin-top: 26px;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
}

.image {
  width: 400px;
  height: 400px;
  max-height: none;
  max-width: none;
  margin-top: 33px;
  border-radius: 3%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.div-block {
  margin-top: 12px;
  margin-left: 63px;
}

.heading-2 {
  font-size: 32px;
  line-height: 32px;
  text-align: left;
}

.text-span-3 {
  color: #2581da;
}

.div-block-2 {
  max-width: 80%;
}

.section-2 {
  display: block;
  margin-top: 64px;
  margin-bottom: 25px;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33%;
  max-width: none;
  margin-right: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-icon {
  width: 100px;
  height: 100px;
  padding: 20px 10px 20px 23px;
  border-radius: 15px;
  background-image: radial-gradient(circle farthest-corner at 0% 50%, #e21ef7, #9f1ced 48%);
}

.card-icon.icon-2 {
  background-image: radial-gradient(circle farthest-corner at 0% 50%, #ffeb33, #fdb35c 52%);
}

.card-icon.icon-3 {
  background-image: radial-gradient(circle farthest-corner at 0% 100%, #ff862e, #d41ee8);
}

.card-icon.icon-4 {
  background-image: radial-gradient(circle farthest-corner at 0% 50%, #1df0eb, #1ce66f 48%);
}

.card-icon.card-5 {
  background-image: radial-gradient(circle farthest-corner at 0% 50%, #ff9ef2, #6ca5e0 96%);
}

.card-icon.icon6 {
  background-image: radial-gradient(circle farthest-corner at 0% 50%, #68f656, #ffe369);
}

.image-2 {
  width: 60px;
  color: #fff;
}

.heading-3 {
  text-align: center;
}

.text-block-2 {
  text-align: center;
}

.cards-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.heading-4 {
  font-size: 21px;
  text-align: center;
}

.heading-5 {
  font-size: 21px;
}

.heading-6 {
  font-size: 21px;
}

.heading-7 {
  font-size: 21px;
}

.section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 116px;
  padding-top: 62px;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #bb50fb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bb50fb), to(#e97474));
  background-image: linear-gradient(180deg, #bb50fb, #e97474);
}

.heading-8 {
  margin-bottom: 37px;
  color: #fff;
  text-align: center;
}

.section-4 {
  padding: 31px 50px;
  background-color: #121212;
}

.a-card {
  width: 395px;
  height: 200px;
}

.image-3 {
  width: auto;
  max-height: 100%;
  max-width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0px;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 19px;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #fff7de, #edf0ff);
}

.heading-9 {
  width: 80%;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
}

.image-4 {
  width: 122px;
  margin-bottom: 8px;
  padding-bottom: 0px;
}

.image-4.scholarship-image {
  margin-top: 34px;
  margin-bottom: 0px;
}

.grid {
  width: 80%;
  max-width: 1371px;
  margin-top: 11px;
  padding-bottom: 116px;
}

.heading-10 {
  margin-top: 24px;
  color: #fff;
  text-align: center;
}

.section-5 {
  padding-top: 26px;
  padding-bottom: 46px;
  background-color: #e94820;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #503381, #9e0898);
}

.text-block-3 {
  color: #fff;
  text-align: center;
}

.heading-11 {
  margin-top: 0px;
  color: #fff;
  text-align: center;
}

.container-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 58px;
  margin-bottom: 58px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.heading-12 {
  margin-top: 2px;
  margin-bottom: 36px;
  text-align: center;
}

.programs-container {
  max-width: 80%;
}

.program-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 285px;
  padding: 20px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0px none transparent;
  border-radius: 20px;
  background-color: #bb50fb;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #6f0bbe, #dc49f3);
  box-shadow: 2px 2px 6px 0 #ccc;
}

.program-card.featured {
  height: 418px;
  margin-bottom: 30px;
  padding: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  border-top-width: 106px;
  border-top-color: #291db6;
  background-color: #fff;
  background-image: none;
}

.grid-2 {
  width: 80%;
  min-width: 0px;
  margin-top: 21px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.heading-13 {
  color: #fff;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
}

.text-block-4 {
  color: #fff;
  text-align: center;
}

.text-block-4.updated-txt {
  margin-bottom: 3px;
  font-size: 14px;
}

.image-5 {
  max-width: 79px;
  margin-top: 19px;
}

.image-5.featured-image {
  width: 431px;
  height: 100%;
  max-width: none;
  margin-top: 0px;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.container-4 {
  margin-top: 64px;
}

.cta4-headline-wrap {
  display: inline-block;
  width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta4-headline-extrajumbo {
  margin-top: 10px;
  margin-right: 20px;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}

.text-12 {
  font-size: 12px;
  line-height: 18px;
}

.text-12.text-12-60 {
  margin-top: 32px;
  opacity: 0.6;
  font-size: 17px;
  text-align: left;
}

.wrap {
  display: block;
  width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.wrap.w80-spcbetween {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrap._w-custom.home-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  padding-top: 20px;
  padding-bottom: 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.btn-big {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 16px 35px;
  float: none;
  border-radius: 4px;
  background-color: #1991eb;
  -webkit-transition: color 200ms ease, box-shadow 200ms ease, background-color 200ms ease, -webkit-transform 400ms ease;
  transition: color 200ms ease, box-shadow 200ms ease, background-color 200ms ease, -webkit-transform 400ms ease;
  transition: color 200ms ease, box-shadow 200ms ease, background-color 200ms ease, transform 400ms ease;
  transition: color 200ms ease, box-shadow 200ms ease, background-color 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.btn-big:hover {
  border-color: #0c6eb8;
  background-color: #1386dd;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}

.btn-big:active {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(0px, -1px);
  -ms-transform: translate(0px, -1px);
  transform: translate(0px, -1px);
}

.section-dark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #111112;
  color: #fff;
}

.cta4-action-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.divider-dark-wrap {
  display: block;
  height: 1px;
  margin: 0px auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111212;
}

.divider-dark {
  width: 100%;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.06);
}

.home-footer-socicon {
  opacity: 0.6;
}

.home-footer-socicon:hover {
  opacity: 1;
}

.home-footer-socicon:active {
  opacity: 0.85;
}

.home-footer-link {
  display: inline-block;
  -webkit-transition: color 200ms ease, -webkit-transform 400ms ease;
  transition: color 200ms ease, -webkit-transform 400ms ease;
  transition: color 200ms ease, transform 400ms ease;
  transition: color 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.home-footer-link:hover {
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: hsla(0, 0%, 100%, 0.8);
}

.home-footer-socicon-wrap {
  margin-right: 20px;
}

.home-footer-socicon-wrap.home-footer-socicon-wrap-last {
  margin-right: 0px;
}

.heading-14 {
  font-size: 22px;
}

.heading-15 {
  font-size: 18px;
}

.text-block-5 {
  margin-top: 19px;
}

.text-block-6 {
  margin-top: 16px;
  text-align: left;
}

.text-span-4 {
  font-size: 20px;
}

.text-span-5 {
  font-size: 19px;
}

.text-block-7 {
  margin-left: 40px;
  color: #fff;
  font-size: 15px;
}

.contact-div {
  margin-top: 20px;
  margin-left: 34px;
}

.contact-div.phone {
  margin-top: 5px;
}

.link {
  margin-left: 10px;
  color: #fff;
  font-size: 17px;
}

.image-6 {
  max-width: 20px;
  margin-top: 0px;
  color: #000;
}

.nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin-top: 9px;
  margin-left: 20px;
  padding-left: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 44px;
}

.nav-link.w--current {
  width: auto;
  padding-left: 0px;
  border-radius: 0px;
  box-shadow: none;
  color: #333;
}

.nav-link-2 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
}

.partners-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 86px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 47px 20px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 1px 1px 3px 0 #d1d0d0;
}

.image-f-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  height: 189px;
  min-width: auto;
  margin-top: 0px;
  margin-bottom: 28px;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #f5f5f5;
}

.image-7 {
  width: 300px;
}

.image-7.munich-logo {
  width: 135px;
}

.image-7.times-logo {
  width: 150px;
  border-radius: 6px;
}

.paragraph-4 {
  font-size: 16px;
}

.grid-3 {
  width: 95%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.heading-16 {
  margin-bottom: 42px;
}

.paragraph-5 {
  color: #333;
  font-size: 16px;
}

.paragraph-6 {
  color: #333;
  font-size: 16px;
}

.paragraph-7 {
  color: #333;
  font-size: 16px;
}

.paragraph-8 {
  color: #333;
  font-size: 16px;
}

.nav-link-3 {
  margin-left: 21px;
  padding-top: 10px;
  font-size: 15px;
}

.nav-link-4 {
  height: auto;
  margin-left: 21px;
  padding-top: 10px;
  padding-right: 0px;
  font-size: 15px;
}

.nav-link-5 {
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  font-size: 15px;
  margin-right: 5px;
}

.nav-link-6 {
  margin-left: 21px;
  padding-top: 10px;
  font-size: 15px;
}

.nav-link-7 {
  padding-top: 10px;
  font-size: 15px;
}

.nav-link-7.w--current {
  margin-left: 0px;
  padding-top: 10px;
  font-size: 15px;
}

.destination-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  height: 400px;
  margin-bottom: 46px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 #d8d8d8;
}

.destination-card-at {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  height: auto;
  margin-bottom: 46px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 #d8d8d8;
  padding-bottom: 20px;
}

.section-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 48px;
  padding-bottom: 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fafafa;
}

.image-8 {
  width: 50%;
  height: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-container {
  display: block;
  margin-left: 36px;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
}

.paragraph-9 {
  margin-top: 33px;
  color: #333;
  font-size: 18px;
  text-align: left;
}

.list-item-2 {
  margin-bottom: 19px;
  font-size: 16px;
}

.heading-17 {
  margin-bottom: 31px;
  border-bottom: 4px solid #000;
}

.list {
  padding-left: 20px;
}

.contact-us {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0%;
  margin-left: 0%;
  padding: 50px 10% 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #f7f7f7;
}

.contact-form-grid {
  display: -ms-grid;
  display: grid;
  margin-top: 40px;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.submit-button {
  width: 200px;
  border-radius: 45px;
  box-shadow: 1px 1px 3px 0 #b4b4b4;
}

.heading-18 {
  margin-bottom: 0px;
  margin-left: 34px;
  padding-top: 0px;
  border-top: 0px solid #291db6;
  color: #000;
  font-size: 36px;
  line-height: 117%;
  font-weight: 400;
}

.div-block-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.div-block-5 {
  width: 216px;
  margin-bottom: 35px;
  margin-left: 34px;
  padding: 10px 26px 10px 23px;
  border-radius: 20px;
  background-color: #4998f3;
  color: #fff;
}

.text-block-8 {
  font-size: 17px;
}

.div-block-6 {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 20px;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #6f0bbe, #dc49f3);
}

.div-block-6.second-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 220px;
  margin-top: 3px;
  margin-right: 0px;
  margin-left: 20px;
  padding-top: 32px;
  padding-right: 20px;
  padding-bottom: 37px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 20px;
}

.first-block {
  height: 40%;
  padding-right: 20px;
}

.text-block-9 {
  margin-left: 20px;
  color: #fff;
  font-size: 23px;
  line-height: 117%;
}

.text-block-9.duration {
  margin-top: 0px;
  font-size: 17px;
}

.top-deocration-area {
  height: 300px;
  background-image: url('../images/jane-carmona-hi8zn3d_o_i-unsplash.jpg');
  background-position: 50% 70%;
  background-size: cover;
}

.top-deocration-area.courses-decoration-block {
  height: 250px;
  margin-bottom: 30px;
}

.grid-4 {
  width: 100%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-7 {
  padding: 20px 20px 36px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 #d4d4d4;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.text-block-10 {
  margin-top: 7px;
  margin-bottom: 25px;
  font-weight: 700;
}

.heading-19 {
  margin-bottom: 20px;
}

.heading-19.h3 {
  margin-top: 43px;
}

.highlighted-name {
  margin-bottom: 0px;
  font-size: 28px;
  line-height: 32px;
}

.text-block-11 {
  padding-top: 14px;
  color: #333;
}

.div-block-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.text-span-6 {
  text-decoration: none;
  text-transform: none;
}

.button {
  margin-top: 10px;
  margin-left: 20px;
  padding-right: 28px;
  padding-left: 28px;
  border-radius: 20px;
  background-color: #000;
  font-size: 13px;
}

.text-block-12 {
  margin-left: 37px;
}

.popup-window {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsla(0, 0%, 69.5%, 0.48);
}

.popup-window.first-popup {
  display: none;
}

.popup-window.second-popup {
  display: none;
}

.popup-window.second-popup.third-popup {
  display: none;
}

.div-block-9 {
  width: 300px;
  height: 200px;
  padding: 20px;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: 1px 1px 16px 3px #c1c1c1;
}

.link-2 {
  display: block;
  margin-top: 31px;
  margin-left: 0px;
  text-align: right;
  text-decoration: none;
}

.text-block-13 {
  margin-left: 36px;
}

.text-block-14 {
  margin-left: 36px;
}

.text-block-15 {
  margin-left: 36px;
  color: #ff3f3f;
  font-weight: 700;
}

.text-span-7 {
  color: #fff;
  text-decoration: none;
}

.link-3 {
  text-decoration: none;
}

.contact-form {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-form-2 {
  display: block;
  padding-top: 50px;
  padding-bottom: 100px;
}

.text-field {
  display: none;
}

.container-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding-top: 21px;
  padding-bottom: 144px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.heading-20 {
  margin-top: 30px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 3vw;
  line-height: 3.2vw;
}

.div-block-10 {
  width: auto;
}

.div-block-11 {
  padding-right: 20px;
}

.corner-paddings {
  padding-right: 20px;
  padding-left: 20px;
}

.container-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row.cards-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.filter-make.filter.form-control {
  border: 2px solid #000;
}

.success-message {
  background-color: transparent;
}

.form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.html-embed {
  margin-right: 11px;
}

.html-embed-2 {
  margin-right: 15px;
}

.section-8 {
  display: block;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-21 {
  margin-left: 1%;
}

.text-block-16 {
  width: 80%;
  padding-bottom: 35px;
  text-align: center;
}

.paragraph-10 {
  margin-bottom: 84px;
  color: #121212;
  text-align: left;
}

.text-span-8 {
  font-weight: 700;
}

.text-span-9 {
  font-weight: 700;
}

.text-span-10 {
  font-weight: 700;
}

.text-span-11 {
  font-weight: 700;
}

.text-span-12 {
  font-weight: 700;
}

.text-span-13 {
  font-weight: 700;
}

.text-span-14 {
  font-weight: 700;
}

.text-span-15 {
  font-weight: 700;
}

.container-9 {
  margin-top: 54px;
}

.section-9 {
  padding-top: 60px;
  background-color: #f7f7f7;
}

.heading-22 {
  padding-bottom: 45px;
}

html.w-mod-js *[data-ix="about-click"] {
  opacity: 0;
}

html.w-mod-js *[data-ix="contact-click"] {
  opacity: 0;
}

html.w-mod-js *[data-ix="on-load-1"] {
  opacity: 0;
  -webkit-transform: translate(0px, -60px);
  -ms-transform: translate(0px, -60px);
  transform: translate(0px, -60px);
}

html.w-mod-js *[data-ix="on-load-2"] {
  opacity: 0;
  -webkit-transform: translate(0px, -60px);
  -ms-transform: translate(0px, -60px);
  transform: translate(0px, -60px);
}

html.w-mod-js *[data-ix="on-load-3"] {
  opacity: 0;
  -webkit-transform: translate(0px, 60px);
  -ms-transform: translate(0px, 60px);
  transform: translate(0px, 60px);
}

html.w-mod-js *[data-ix="slider-effect"] {
  opacity: 0.4;
  -webkit-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  transform: scale(0.6, 0.6);
}

html.w-mod-js *[data-ix="slider-effect-2"] {
  opacity: 0.4;
  -webkit-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  transform: scale(0.6, 0.6);
}

html.w-mod-js *[data-ix="slider-effect-3"] {
  opacity: 0.4;
  -webkit-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  transform: scale(0.6, 0.6);
}

@media screen and (max-width: 991px) {
  .about-link {
    font-size: 18px;
  }

  .contact-link {
    font-size: 18px;
  }

  .slider-wrapper {
    bottom: 10%;
  }

  .slider-photo-text {
    font-size: 26px;
  }

  .slider-photo-text-2 {
    font-size: 26px;
  }

  .slider-photo-text-3 {
    font-size: 26px;
  }

  .gallery-masonry {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .label {
    font-size: 21px;
    line-height: 32px;
  }

  .text-fild {
    font-size: 21px;
    line-height: 32px;
  }

  .text-fild.for-message {
    width: 320px;
  }

  .container-a {
    padding-left: 0px;
    background-position: 50% 50%;
  }

  .brand {
    width: 125px;
    margin-top: 5px;
  }

  .nav-menu {
    margin-top: 0px;
    padding-bottom: 22px;
    background-color: #fff;
  }

  .container-2 {
    max-width: 101%;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .paragraph-3 {
    margin-bottom: 56px;
    font-size: 18px;
  }

  .div-block {
    margin-left: 0px;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 32px;
  }

  .section-2 {
    padding-right: 30px;
    padding-left: 30px;
  }

  .card-icon {
    width: 85px;
    height: 85px;
  }

  .image-2 {
    width: 45px;
  }

  .cards-container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .heading-4 {
    font-size: 18px;
    text-align: center;
  }

  .heading-5 {
    font-size: 18px;
    text-align: center;
  }

  .heading-6 {
    font-size: 18px;
    text-align: center;
  }

  .heading-7 {
    font-size: 18px;
    text-align: center;
  }

  .image-3 {
    height: auto;
    max-height: none;
  }

  .div-block-3 {
    margin-left: 0px;
  }

  .heading-9 {
    width: 95%;
    font-size: 18px;
    line-height: 19px;
    font-weight: 400;
  }

  .image-4 {
    width: 70px;
  }

  .program-card {
    height: auto;
  }

  .grid-2 {
    width: 90%;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .image-5.featured-image {
    width: 50%;
    -o-object-position: 100% 50%;
    object-position: 100% 50%;
  }

  .image-5.featured-image.featured-two {
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }

  .cta4-headline-wrap {
    width: 100%;
    text-align: center;

  }

  .cta4-headline-extrajumbo {
    font-size: 26px;
    line-height: 30px;
    text-align: left;
  }

  .cta4-headline {
    color: #1991eb;
  }

  .wrap {
    width: 645px;
  }

  .wrap.w80-spcbetween {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .wrap._w-custom.home-footer {
    width: 90%;
  }

  .section-dark {
    padding-right: 0px;
    padding-left: 0px;
  }

  .home-footer-socicons-wrap {
    margin-top: 20px;
  }

  .menu-button {
    margin-top: 0px;
  }

  .menu-button.w--open {
    margin-top: 0px;
    padding-top: 17px;
    background-color: #fff;
  }

  .heading-15 {
    font-size: 18px;
  }

  .menu-button-2 {
    padding-top: 32px;
  }

  .image-6 {
    margin-top: 0px;
  }

  .icon-5 {
    color: #333;
  }

  .nav-link {
    width: 238px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .nav-link-2 {
    padding-left: 0px;
  }

  .image-f-container {
    width: 80%;
  }

  .nav-link-6 {
    display: block;
  }

  .nav-link-7.w--current {
    margin-left: 21px;
  }

  .destination-card {
    height: 500px;
  }

  .heading-17 {
    font-size: 26px;
  }

  .heading-18 {
    font-size: 33px;
  }

  .text-block-9 {
    font-size: 19px;
  }

  .highlighted-name {
    font-size: 25px;
  }

  .div-block-8 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .photographer-name {
    font-size: 125px;
  }

  .slider-wrapper {
    bottom: 20%;
  }

  .gallery-masonry {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .label {
    font-size: 14px;
    line-height: 26px;
  }

  .text-fild {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 26px;
  }

  .container-a {
    padding-left: 20px;
  }

  .heading {
    width: 95%;
    margin-left: 0px;
  }

  .text-block {
    width: 95%;
    margin-left: 0px;
  }

  .brand {
    margin-left: 10px;
  }

  .image {
    width: 400px;
    height: 400px;
  }

  .heading-4 {
    line-height: 22px;
  }

  .heading-5 {
    line-height: 22px;
  }

  .heading-6 {
    line-height: 22px;
  }

  .heading-7 {
    line-height: 22px;
  }

  .section-3 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .grid {
    width: 95%;
  }

  .program-card.featured {
    margin-right: 10px;
    margin-left: 10px;
  }

  .grid-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .image-5.featured-image {
    -o-object-position: 80% 50%;
    object-position: 80% 50%;
  }

  .cta4-headline-extrajumbo {
    display: block;
    width: 80%;
    margin-right: auto;
    margin-left: 0px;
  }
  .cta4-headline {
    color: #1991eb;
  }
  .wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .wrap.w80-spcbetween {
    padding-right: 0px;
    padding-left: 0px;
  }

  .wrap._w-custom.home-footer {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .home-footer-socicons-wrap {
    margin-top: 20px;
  }

  .home-footer-link {
    margin-left: 0px;
  }

  .menu-button-2 {
    padding-top: 29px;
    padding-right: 0px;
  }

  .text-block-7 {
    margin-left: 5px;
  }

  .contact-div {
    margin-left: 0px;
  }

  .image-6 {
    margin-top: -2px;
  }

  .nav-link {
    margin-left: 15px;
  }

  .nav-link-2 {
    margin-left: 15px;
  }

  .nav-link-3 {
    margin-left: 10px;
  }

  .nav-link-4 {
    margin-left: 10px;
  }

  .nav-link-5 {
    margin-left: 15px;
    padding-left: 0px;
  }

  .nav-link-6 {
    margin-left: 10px;
  }

  .nav-link-7.w--current {
    margin-left: 10px;
  }

  .destination-card {
    height: auto;
    padding-bottom: 29px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-8 {
    width: 100%;
    height: 300px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0px;
  }

  .contact-us {
    padding: 40px 20px;
  }

  .heading-18 {
    margin-bottom: 0px;
    margin-left: 34px;
    font-size: 29px;
  }

  .div-block-5 {
    width: 196px;
    margin-left: 10px;
  }

  .text-block-8 {
    font-size: 15px;
  }

  .text-block-9 {
    margin-left: 20px;
    font-size: 16px;
  }

  .text-block-9.duration {
    font-size: 13px;
  }

  .grid-4 {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .highlighted-name {
    font-size: 20px;
    line-height: 20px;
  }

  .button {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 12px;
  }

  .button.button-one {
    font-size: 12px;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .contact-form-2 {
    padding: 40px 20px;
  }

  .container-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .heading-20 {
    font-size: 4vw;
    line-height: 4.3vw;
  }

  .div-block-11 {
    margin-bottom: 20px;
    padding-right: 0px;
  }

  .lottie-animation {
    width: 50px;
  }

  .container-9 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-9 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .icon-bar {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .photographer-name {
    font-size: 95px;
  }

  .photographer-video {
    width: 80%;
    height: 400px;
  }

  .un-list.contact-links {
    text-align: center;
  }

  .list-item.con {
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 16px;
    text-align: center;
  }

  .label {
    font-size: 12px;
  }

  .form-wrapper {
    display: none;
  }

  .container-a {
    height: 400px;
    padding-right: 10px;
    padding-left: 10px;
    background-position: 50% 50%;
  }

  .heading {
    width: auto;
    margin-left: 0px;
    font-size: 30px;
    line-height: 32px;
  }

  .text-block {
    width: auto;
    margin-left: 0px;
    font-size: 18px;
    line-height: 18px;
  }

  .brand {
    width: 125px;
    margin-top: 11px;
    margin-left: 15px;
    padding-left: 0px;
  }

  .nav-menu {
    margin-top: 0px;
    background-color: #fff;
  }

  .container-2 {
    margin-left: 0px;
  }

  .paragraph-2 {
    font-size: 16px;
    text-align: left;
  }

  .image {
    width: 100%;
    height: 250px;
  }

  .card {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .heading-3 {
    font-size: 26px;
    line-height: 30px;
  }

  .cards-container {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section-3 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section-4 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .heading-9 {
    width: 90%;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
  }

  .grid {
    width: 99%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .heading-10 {
    font-size: 22px;
    line-height: 22px;
    text-align: left;
  }

  .section-5 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .program-card.featured {
    width: auto;
    height: auto;
    margin-bottom: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto;
  }

  .heading-13 {
    font-size: 19px;
    line-height: 23px;
  }

  .image-5.featured-image {
    width: 100%;
    height: auto;
    max-width: none;
    border-radius: 20px;
  }

  .cta4-headline-extrajumbo {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
  }

  .wrap._w-custom.home-footer {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .btn-big {
    display: block;
    padding: 14px 25px;
    text-align: center;
  }

  .container-5 {
    max-width: 98%;
  }

  .menu-button {
    padding-top: 15px;
    padding-right: 18px;
  }

  .menu-button.w--open {
    background-color: #fff;
  }

  .menu-button-2 {
    padding-top: 25px;
    padding-right: 0px;
  }

  .contact-div {
    margin-top: 20px;
  }

  .contact-div.phone {
    margin-top: 5px;
  }

  .link {
    margin-left: 17px;
    color: #fff;
    font-size: 16px;
  }

  .image-6 {
    max-width: 22px;
    margin-top: -2px;
  }

  .icon-5 {
    color: #000;
  }

  .nav-link {
    margin-top: 0px;
    margin-left: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .nav-link.first-link {
    margin-top: 10px;
  }

  .image-f-container {
    width: 90%;
  }

  .grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-link-3 {
    padding-left: 0px;
  }

  .nav-link-4 {
    padding-left: 0px;
  }

  .nav-link-6 {
    padding-left: 0px;
  }

  .nav-link-7.w--current {
    padding-left: 0px;
  }

  .image-9 {
    max-width: 80%;
  }

  .heading-18 {
    margin-top: 0px;
    margin-left: 5px;
    font-size: 25px;
  }

  .div-block-4 {
    display: block;
    width: auto;
    padding-top: 20px;
  }

  .div-block-5 {
    margin-bottom: 17px;
  }

  .div-block-6.second-block {
    height: auto;
    margin-left: 0px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom-left-radius: 20px;
  }

  .text-block-9 {
    margin-right: 10px;
    font-size: 18px;
  }

  .text-block-9.duration {
    margin-top: 8px;
    margin-bottom: 29px;
  }

  .div-block-8 {
    margin-left: 5px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav-links2 {
    padding-left: 5px;
  }

  .popup-window.first-popup {
    display: none;
  }

  .popup-window.second-popup {
    display: none;
  }

  .div-block-9 {
    display: block;
    width: 96%;
    height: auto;
  }

  .text-block-14 {
    margin-bottom: 11px;
    margin-left: 5px;
  }

  .text-block-15 {
    margin-bottom: 11px;
    margin-left: 5px;
  }

  .heading-20 {
    font-size: 24px;
    line-height: 26px;
  }
}

#w-node-_85c4a7e0-f1a3-fb4c-7390-32ac9bd2b0a2-41d7ee91 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_75fa6437-9abe-321f-761d-7965c8e77e77-41d7ee91 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_86685a8d-da2f-e242-56fc-254e185c8382-bc4f88e2 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-fd4b1f15-a5b0-91af-339c-2c1577a90ca8-bc4f88e2 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-ea240c4f-fc6a-9082-3a17-7b469671a705-bc4f88e2 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_204d1aae-e8f8-4431-09fd-98e6dd5a725a-bc4f88e2 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_204d1aae-e8f8-4431-09fd-98e6dd5a7262-bc4f88e2 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_204d1aae-e8f8-4431-09fd-98e6dd5a7266-bc4f88e2 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}

@font-face {
  font-family: 'Clattering';
  src: url('../fonts/clattering.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* External CSS */
.text-container-at {
  display: block;
  padding-right: 30px;
}

.heading-23 {
  margin-bottom: 31px;
  padding-top: 0px;
  color: #000;
  font-size: 18px;
  line-height: 117%;
  font-weight: bold;
  border-bottom: 1px solid #000;
}


table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.highlights > table th,
table td {
  text-align: left;
}

.highlights > table {
  width: 20%;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }


  .highlights > table {
    width: 25%;
  }

  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  table td::before {
    /*
	* aria-label has no advantage, it won't be read inside a table
	content: attr(aria-label);
	*/
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table td:last-child {
    border-bottom: 0;
  }
}

/* Admin Login Button */
.admin-login-btn {
  margin-left: 18px;
  padding: 6px 16px !important;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #1e3c72;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(30, 60, 114, 0.3);
  cursor: pointer;
}

.admin-login-btn:hover {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.45);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.admin-login-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .admin-login-btn {
    margin: 10px 0 10px 10px;
    display: inline-block;
    padding: 8px 18px !important;
  }
}