@font-face {
  font-family: "ITC Avant Garde";
  src: url("../assets/fonts/ITCAvantGardeStd-Bk.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "ITC Avant Garde";
  src: url("../assets/fonts/ITCAvantGardeStd-Md.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "ITC Avant Garde";
  src: url("../assets/fonts/ITCAvantGardeStd-Demi.otf") format("opentype");
  font-weight: 600;
}

@font-face {
  font-family: "ITC Avant Garde";
  src: url("../assets/fonts/ITCAvantGardeStd-Bold.otf") format("opentype");
  font-weight: 700;
}

:root {
  --gaf-dark: #101820;
  --gaf-red: #d71920;
  --gaf-red-deep: #cf0a2b;
  --white: #ffffff;
  --text: #101820;
  --footer-muted: rgba(255, 255, 255, 0.82);
  --page-width: 1440px;
  --content-left: 135px;
  --content-width: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e9e9e9;
  color: var(--text);
  font-family: "ITC Avant Garde", Arial, sans-serif;
  font-weight: 400;
}

body.is-embedded {
  background: var(--white);
  overflow-x: hidden;
}

.embed-scale-viewport {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 721px) {
  body.is-embedded .embed-scale-viewport {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  body.is-embedded .page-shell {
    flex: 0 0 var(--page-width);
    width: var(--page-width);
    max-width: none;
    margin: 0;
    transform: scale(var(--embed-scale, 1));
    transform-origin: top center;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(100%, var(--page-width));
  min-height: 1953px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 80px;
  background: var(--gaf-dark);
}

.gaf-logo {
  position: absolute;
  left: 135px;
  top: 15px;
  width: 50px;
  height: 50px;
}

.gaf-logo img {
  display: block;
  width: 50px;
  height: 50px;
}

.report-title {
  position: absolute;
  left: 444px;
  top: 22px;
  width: 553px;
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
  line-height: 37px;
  text-align: center;
  text-transform: uppercase;
}

.hamburger {
  position: absolute;
  right: 135px;
  top: 26px;
  display: grid;
  width: 35px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 35px;
  height: 4px;
  background: var(--white);
}

.report-menu {
  position: absolute;
  z-index: 30;
  inset: 80px 0 auto;
  background: var(--gaf-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  width: var(--content-width);
  margin: 0 auto;
  padding: 36px 0 42px;
}

.menu-close {
  position: absolute;
  right: 0;
  top: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.report-menu h2,
.footer-columns h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.report-menu a,
.footer-columns a {
  display: block;
  margin: 0 0 8px;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.2;
}

.hero {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  left: -270px;
  top: -220px;
  width: 1710px;
  height: auto;
  max-width: none;
}

.section-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--tab-width, 195px);
  justify-content: center;
  height: var(--tab-height, 50px);
  background: var(--gaf-red);
  color: var(--white);
}

.section-tabs a {
  display: grid;
  height: var(--tab-height, 50px);
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
}

.section-tabs a.active {
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow:
    -2px 0 0 var(--white),
    2px 0 0 var(--white),
    0 2px 0 var(--white);
  color: var(--gaf-red);
  font-weight: 700;
}

.mobile-section-menu {
  display: none;
}

.content {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 50px;
}

.section-kicker {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

h1 {
  margin: 0 0 10px;
  color: var(--gaf-red);
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
}

.intro-copy,
.closing-copy {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}

.goals-graphic {
  width: 1170px;
  margin: 34px 0 45px;
}

.goals-graphic img {
  display: block;
  width: 1170px;
  height: auto;
}

.closing-copy {
  margin-bottom: 150px;
}

.section-page {
  min-height: var(--source-page-height);
}

.section-page .source-hero img {
  left: 0;
  top: 0;
  width: 1440px;
  height: var(--hero-height, 360px);
  object-fit: cover;
}

.section-page .source-hero {
  height: var(--hero-height, 360px);
}

.source-body {
  display: block;
  width: 1440px;
  margin: 0;
}

.source-body img {
  display: block;
  width: 1440px;
  height: auto;
}

.video-image-frame {
  position: relative;
}

.source-body .video-image-frame {
  width: 1440px;
}

.energy-video-slot {
  position: absolute;
  left: 37.9167%;
  top: 14.245%;
  z-index: 1;
  display: block;
  width: 52.7778%;
  height: 60.9687%;
  background: #d8d8d8;
  object-fit: cover;
}

.ras-video-slot {
  position: absolute;
  left: 51.8056%;
  top: 7.2597%;
  z-index: 1;
  display: block;
  width: 38.8889%;
  height: 16.1043%;
  background: #d8d8d8;
  object-fit: cover;
}

.latinos-roofing-video-slot {
  position: absolute;
  left: 37.9167%;
  top: 81.7907%;
  z-index: 1;
  display: block;
  width: 52.7778%;
  height: 16.1315%;
  background: #d8d8d8;
  object-fit: cover;
}

.product-building-image-fix {
  position: absolute;
  z-index: 2;
  left: 36.4583%;
  top: 64.4172%;
  width: 54.2361%;
  height: 29.1411%;
  background: #fff;
  overflow: hidden;
}

.product-building-image-fix img {
  position: absolute;
  left: 0;
  top: 1.75%;
  display: block;
  width: 100%;
  height: 98.25%;
  object-fit: cover;
  object-position: 50% 54%;
}

.about-gaf-body-frame {
  position: relative;
}

.about-sustainability-photo-fix {
  position: absolute;
  z-index: 2;
  left: 9.375%;
  top: 62.899%;
  width: 40.625%;
  height: 23.017%;
  overflow: hidden;
  background: #d8d8d8;
}

.about-sustainability-photo-fix img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.business-body-frame {
  position: relative;
}

.business-program-center-fix {
  position: absolute;
  z-index: 2;
  left: 36.9444%;
  top: 76.0208%;
  width: 26.1806%;
  height: 12.6398%;
  overflow: hidden;
  background: #fff;
}

.business-program-center-fix::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 18.3%;
  background: #f2f2f2;
}

.business-program-center-fix img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 77.572%;
  object-fit: cover;
  object-position: 50% 50%;
}

.image-gallery {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  background: #d8d8d8;
}

.rollover-set,
.award-toggle-card {
  position: absolute;
  z-index: 2;
}

.rollover-card,
.award-toggle-card {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.rollover-card {
  position: absolute;
  overflow: hidden;
}

.rollover-card img,
.award-toggle-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: opacity 160ms ease;
}

.rollover-card .rollover-back,
.award-toggle-card .award-base {
  opacity: 0;
}

.rollover-card:hover .rollover-back,
.rollover-card:focus-visible .rollover-back,
.rollover-card.is-active .rollover-back,
.award-toggle-card:not(.is-active) .award-base {
  opacity: 1;
}

.rollover-card:focus-visible,
.award-toggle-card:focus-visible {
  outline: 3px solid var(--gaf-red);
  outline-offset: 4px;
}

.life-highlights-rollovers {
  left: 12.1528%;
  top: 27.4995%;
  width: 75.8333%;
  height: 5.2917%;
}

.life-highlights-rollovers .rollover-card {
  top: 0;
  width: 22.3853%;
  height: 100%;
}

.life-highlights-rollovers .rollover-card:nth-child(1) {
  left: 0;
}

.life-highlights-rollovers .rollover-card:nth-child(2) {
  left: 25.8725%;
}

.life-highlights-rollovers .rollover-card:nth-child(3) {
  left: 51.7431%;
}

.life-highlights-rollovers .rollover-card:nth-child(4) {
  left: 77.6147%;
}

.award-toggle-card {
  overflow: hidden;
  color: var(--white);
}

.awards-baltimore-card {
  left: 9.375%;
  top: 15.8761%;
  width: 54.1667%;
  height: 22.8920%;
}

.awards-plant-leader-card {
  left: 36.5278%;
  top: 46.1770%;
  width: 54.1667%;
  height: 22.8920%;
}

.award-toggle-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  min-width: 82px;
  height: 34px;
  place-items: center;
  padding: 0 12px;
  background: var(--gaf-red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}

.award-toggle-card:not(.is-active) .award-toggle-label {
  opacity: 1;
}

.water-gallery {
  left: 51.7361%;
  top: 15.1786%;
  width: 38.9583%;
  height: 68.1919%;
}

.urban-heat-gallery {
  left: 51.7361%;
  top: 8.7108%;
  width: 38.9583%;
  height: 36.0627%;
}

.gcm-partner-gallery {
  left: 9.375%;
  top: 43.1484%;
  width: 81.3194%;
  height: 11.0230%;
}

.gcm-academy-repair {
  position: absolute;
  z-index: 2;
  left: 9.375%;
  top: 59.6451%;
  width: 81.25%;
  height: 20.3851%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  background: #fff;
  overflow: hidden;
}

.gcm-academy-photo {
  position: relative;
  overflow: hidden;
}

.gcm-academy-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcm-academy-training img {
  object-position: 47% 45%;
}

.gcm-academy-graduation img {
  object-position: 50% 48%;
}

.gcm-academy-panel,
.gcm-academy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(11, 24, 31, 0.94);
  color: #fff;
  padding: 8.5%;
}

.gcm-academy-panel h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}

.gcm-academy-panel p,
.gcm-academy-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.38;
  color: #fff;
}

.gcm-academy-panel strong {
  margin: 20px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.inclusion-erg-gallery {
  left: 9.375%;
  top: 32.3763%;
  width: 81.3194%;
  height: 22.0627%;
}

.source-body .gallery-image,
.gallery-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-image[hidden] {
  display: none;
}

.water-gallery .gallery-image:nth-of-type(1) {
  object-position: 50% 50%;
}

.water-gallery .gallery-image:nth-of-type(2) {
  object-position: 50% 50%;
}

.water-gallery .gallery-image:nth-of-type(3) {
  object-position: 50% 50%;
}

.water-gallery .gallery-image:nth-of-type(4) {
  object-position: 46% 51%;
}

.water-gallery .gallery-image:nth-of-type(5) {
  object-position: 50% 50%;
}

.urban-heat-gallery .gallery-image:nth-of-type(1) {
  object-position: 50% 50%;
}

.urban-heat-gallery .gallery-image:nth-of-type(2) {
  object-position: 50% 46%;
}

.urban-heat-gallery .gallery-image:nth-of-type(3) {
  object-position: 50% 50%;
}

.gcm-partner-gallery .gallery-image:nth-of-type(1) {
  object-position: 50% 47%;
}

.gcm-partner-gallery .gallery-image:nth-of-type(2) {
  object-position: 50% 47%;
}

.gcm-partner-gallery .gallery-image:nth-of-type(3) {
  object-position: 50% 50%;
}

.inclusion-erg-gallery .gallery-image:nth-of-type(1) {
  object-position: 50% 50%;
}

.inclusion-erg-gallery .gallery-image:nth-of-type(2) {
  object-position: 50% 45%;
}

.inclusion-erg-gallery .gallery-image:nth-of-type(3) {
  object-position: 50% 46%;
}

.inclusion-erg-gallery .gallery-image:nth-of-type(4) {
  object-position: 50% 48%;
}

.gallery-controls {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  gap: 18px;
}

.gallery-button {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--gaf-red);
  cursor: pointer;
}

.gallery-button span {
  display: block;
  width: 22px;
  height: 22px;
  border-top: 6px solid var(--white);
  border-left: 6px solid var(--white);
}

.gallery-prev span {
  margin-left: 8px;
  transform: rotate(-45deg);
}

.gallery-next span {
  margin-right: 8px;
  transform: rotate(135deg);
}

.gallery-button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -8px;
}

.urban-heat-gallery .gallery-controls {
  left: 31px;
  bottom: 30px;
  gap: 11px;
}

.urban-heat-gallery .gallery-button,
.gcm-partner-gallery .gallery-button,
.inclusion-erg-gallery .gallery-button {
  width: 50px;
  height: 50px;
}

.urban-heat-gallery .gallery-button span,
.gcm-partner-gallery .gallery-button span,
.inclusion-erg-gallery .gallery-button span {
  width: 18px;
  height: 18px;
  border-top-width: 5px;
  border-left-width: 5px;
}

.urban-heat-gallery .gallery-prev span,
.gcm-partner-gallery .gallery-prev span,
.inclusion-erg-gallery .gallery-prev span {
  margin-left: 6px;
}

.urban-heat-gallery .gallery-next span,
.gcm-partner-gallery .gallery-next span,
.inclusion-erg-gallery .gallery-next span {
  margin-right: 6px;
}

.gcm-partner-gallery .gallery-controls,
.inclusion-erg-gallery .gallery-controls {
  left: 31px;
  bottom: 30px;
  gap: 11px;
}

.mobile-proof-video {
  position: relative;
  margin: 34px 0;
}

.mobile-proof-video .mobile-proof-image {
  margin: 0;
}

.ras-mobile-video-slot {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #d8d8d8;
  object-fit: cover;
}

.mobile-derived-content {
  display: none;
}

.site-footer {
  color: var(--white);
}

.page-nav {
  display: flex;
  justify-content: space-between;
  height: 50px;
  padding: 0 135px;
  background: #f3f3f3;
  color: var(--gaf-dark);
}

.page-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
}

.nav-chevron {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 20px;
}

.nav-chevron::before {
  content: "";
  position: absolute;
  inset: 3px 1px;
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--gaf-dark);
  border-right: 3px solid var(--gaf-dark);
}

.nav-chevron-right {
  margin-left: 2px;
}

.nav-chevron-right::before {
  transform: rotate(45deg);
}

.nav-chevron-left {
  margin-right: 2px;
}

.nav-chevron-left::before {
  transform: rotate(-135deg);
}

.footer-main {
  position: relative;
  min-height: 272px;
  background: var(--gaf-dark);
}

.back-to-top {
  position: absolute;
  right: 135px;
  top: 37px;
  z-index: 2;
  width: 55px;
  height: 55px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.back-to-top img {
  display: block;
  width: 55px;
  height: 55px;
}

.footer-columns {
  position: relative;
  display: grid;
  grid-template-columns: 115px 115px 130px 135px 275px;
  column-gap: 42px;
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 40px;
}

.connect {
  margin-left: 57px;
}

.social-icons {
  display: block;
  width: 275px;
  height: 25px;
  margin-top: 9px;
}

.visit-title {
  margin-top: 96px !important;
}

.visit-links {
  display: flex;
  gap: 22px;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 218px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 12px;
}

@media (max-width: 720px) {
  :root {
    --content-left: 30px;
    --content-width: calc(100% - 60px);
  }

  body {
    background: var(--white);
  }

  .page-shell {
    width: 100%;
    min-height: 2444px;
  }

  .site-header {
    height: 70px;
  }

  .gaf-logo {
    left: 30px;
    top: 14px;
    width: 42px;
    height: 42px;
  }

  .gaf-logo img {
    width: 42px;
    height: 42px;
  }

  .report-title {
    left: 98px;
    top: 24px;
    width: calc(100% - 196px);
    font-size: 16px;
    line-height: 18px;
    text-align: left;
  }

  .hamburger {
    right: 30px;
    top: 23px;
    width: 28px;
    height: 24px;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
  }

  .report-menu {
    inset: 70px 0 auto;
  }

  .menu-inner {
    grid-template-columns: 1fr;
    width: var(--content-width);
    gap: 20px;
  }

  .hero {
    height: 270px;
  }

  .hero img {
    left: -333px;
    top: -150px;
    width: 1119px;
  }

  .section-page {
    min-height: 0;
  }

  .section-page .source-hero img {
    left: 0;
    top: 0;
    width: 100%;
    height: 270px;
    object-fit: cover;
  }

  .desktop-tabs {
    display: none;
  }

  .mobile-section-menu {
    display: block;
    background: var(--gaf-red);
  }

  .mobile-section-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 0;
    background: var(--gaf-red);
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
  }

  .mobile-section-list {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .mobile-section-list a {
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 0 30px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    font-size: 20px;
    font-weight: 600;
  }

  .content {
    padding-top: 30px;
  }

  .source-body {
    display: none;
  }

  .mobile-derived-content {
    display: block;
    width: var(--content-width);
    margin: 0 auto;
    padding: 30px 0 92px;
  }

  .mobile-source-body {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-video-layout .video-image-frame {
    width: 100%;
  }

  .mobile-derived-content p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 32px;
  }

  .mobile-derived-content h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }

  .mobile-proof-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 34px 0;
  }

  .mobile-numbered {
    margin: 0 0 30px;
    padding-left: 22px;
    font-size: 17px;
    line-height: 30px;
  }

  .mobile-numbered li {
    margin-bottom: 12px;
  }

  .mobile-feature {
    margin: 34px 0;
  }

  .image-feature {
    min-height: 520px;
    padding: 28px;
    color: var(--white);
    background-image:
      linear-gradient(90deg, rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.36)),
      var(--feature-image);
    background-position: center;
    background-size: cover;
  }

  .image-feature div {
    max-width: 330px;
  }

  .image-feature p,
  .dark-feature p {
    font-size: 16px;
    line-height: 28px;
  }

  .dark-feature {
    padding: 30px;
    color: var(--white);
    background: #404040;
  }

  .split-feature img {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }

  .mobile-quote {
    margin: 34px 0;
    padding: 36px 32px;
    background: #f2f2f2;
  }

  .mobile-quote p {
    font-size: 24px;
    font-style: italic;
    line-height: 34px;
  }

  .mobile-quote cite {
    display: block;
    margin-top: 28px;
    font-size: 15px;
    line-height: 24px;
    font-style: normal;
  }

  .section-kicker {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 30px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 36px;
  }

  .intro-copy,
  .closing-copy {
    font-size: 17px;
    line-height: 32px;
  }

  .goals-graphic {
    width: calc(100% + 38px);
    margin: 76px -19px 44px;
  }

  .goals-graphic img {
    width: 100%;
  }

  .closing-copy {
    margin-bottom: 132px;
  }

  .page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 70px;
    padding: 0;
  }

  .page-nav a {
    justify-content: center;
    height: 70px;
    padding: 0 16px;
    font-size: 16px;
    text-align: center;
  }

  .footer-main {
    min-height: 825px;
  }

  .footer-columns {
    display: block;
    width: var(--content-width);
    height: 825px;
    padding-top: 0;
  }

  .footer-columns h2 {
    font-size: 22px;
  }

  .footer-columns a {
    font-size: 17px;
    line-height: 1.25;
  }

  .footer-columns > div {
    position: absolute;
    width: 180px;
  }

  .footer-columns > div:nth-child(1) {
    left: 0;
    top: 45px;
  }

  .footer-columns > div:nth-child(2) {
    left: 300px;
    top: 45px;
  }

  .footer-columns > div:nth-child(3) {
    left: 0;
    top: 278px;
  }

  .footer-columns > div:nth-child(4) {
    left: 300px;
    top: 278px;
  }

  .connect {
    left: 0;
    top: 546px;
    width: 422px !important;
    margin-left: 0;
  }

  .visit-title {
    margin-top: 47px !important;
  }

  .copyright {
    position: absolute;
    left: 0;
    top: 760px;
    width: 300px;
    font-size: 14px;
    line-height: 18px;
  }

  .back-to-top {
    right: 30px;
    top: 715px;
    width: 62px;
    height: 62px;
  }

  .back-to-top img {
    width: 62px;
    height: 62px;
  }

  .social-icons {
    width: 374px;
    height: 34px;
    margin-top: 14px;
  }
}
