:root {
  --navbar-animation-duration: 0.3s;
  --mobile-menu-animation-duration: 0.75s;
  --hover-links-duration: 0.1s;
  --ease-time-links: 0.15s;
  --max-width-1000: 1000px;
  --max-width-1180: 1180px;
  --max-width-1230: 1230px;
  --max-width-1280: 1280px;
  --max-width-1900: 1920px;
  --text-shadow: 1px 5px 9px rgba(var(--dark-shade2-rgb), 0.9);
  --box-shadow-button-hover: inset 0px 0px 7px rgba(66, 59, 58, 0.7),
    1px 5px 30px rgba(var(--dark-shade0-rgb), 0.4);
  --fs-17p: 1.0625rem;
  --fs-18p: 1.125rem;
  --fs-20p: 1.25rem;
  --fs-28p: 1.75rem;
  --fs-48p: 3rem;
  --fs-56p: 3.5rem;
}

/* Margins */
.ml-50p {
  margin-left: 50px;
}
.mr-50p {
  margin-right: 50px;
}

/* Display */
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-iblock {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

/* Font weights */
.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/* Common Font sizes */
.fs-17p {
  font-size: var(--fs-17p);
}

.fs-18p {
  font-size: var(--fs-18p);
}

.fs-20p {
  font-size: var(--fs-20p);
}

.fs-28p {
  font-size: var(--fs-28p);
}

.fs-48p {
  font-size: min(max(1.6rem, 2.5vw), var(--fs-48p));
}

.fs-56p {
  font-size: min(max(2rem, 4vw), var(--fs-56p));
}

/* Common transitions */
a {
  -moz-transition: color var(--ease-time-links) ease 0s;
  -o-transition: color var(--ease-time-links) ease 0s;
  -webkit-transition: color var(--ease-time-links) ease 0s;
  transition: color var(--ease-time-links) ease 0s;
}

/* Text align */
.text-align-center {
  text-align: center !important;
}
.text-align-left {
  text-align: left !important;
}

/* Common container widths */
.w-1000 {
  max-width: var(--max-width-1000);
  margin: 0 auto;
  position: relative;
}
.w-1180 {
  max-width: var(--max-width-1180);
  margin: 0 auto;
  position: relative;
}
.w-1230 {
  max-width: var(--max-width-1230);
  margin: 0 auto;
  position: relative;
}
.w-1280 {
  max-width: var(--max-width-1280);
  margin: 0 auto;
  position: relative;
}
.w-1900 {
  max-width: var(--max-width-1900);
  margin: 0 auto;
  position: relative;
}
.text-shadow {
  text-shadow: var(--text-shadow);
}

/* Translucent overlay */
.overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  height: 100%;
  transition: opacity var(--mobile-menu-animation-duration) ease-in-out 0s;
  width: 100%;
  z-index: 4;
}
.overlay.show {
  opacity: 1;
}

*:focus {
  outline: 1px solid var(--focus-outline);
}
img {
  display: block;
  width: 100%;
}

.responsive {
  height: auto;
  max-width: 100%;
}
section,
.section {
  display: block;
}
.image-background {
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}
.image-background img,
.image-background picture {
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
}
.font-poppins {
  font-family: "Mulish", sans-serif;
}
.loader {
  animation: spin 0.75s linear infinite;
  border-radius: 50%;
  display: none;
  position: absolute;
  z-index: 1001;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  background: var(--site-bg);
  box-sizing: border-box;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 100%;
  font-weight: 400;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  /* scroll-behavior: smooth; */
}
body.stop-overflow {
  overflow: hidden;
}

header {
  background-size: cover;
  height: 100vh;
  max-height: 1080px;
  padding-top: 30px;
  position: relative;
  width: auto;
  z-index: 0;
}
header::after {
  background: rgb(50, 53, 56);
  background: linear-gradient(
    180deg,
    rgba(50, 53, 56, 1) 0%,
    rgba(50, 53, 56, 0.75) 20%,
    rgba(50, 53, 56, 0.05) 51%,
    rgba(248, 248, 248, 0) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
header::before {
  background: rgb(35, 37, 38);
  background: linear-gradient(
    180deg,
    rgba(35, 37, 38, 0.75) 0%,
    rgba(49, 49, 49, 0.5) 15%,
    rgba(65, 62, 62, 0.4) 85%,
    rgba(69, 65, 65, 0) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
#top-header-container {
  align-items: center;
  display: flex;
  height: 120px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
#main-logo-container {
  align-items: center;
  display: flex;
  height: 100%;
  margin-left: 50px;
  max-width: 200px;
}
#main-logo-container svg {
  display: block;
  height: auto;
  margin: 0;
  max-width: 100%;
}
#header-buttons-container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 50px;
}
.button {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
  text-align: center;
  text-transform: uppercase;
}
.header-button {
  align-items: center;
  display: flex;
  height: 45px;
  padding: 0 40px;
}
.common-button {
  align-items: center;
  display: inline-flex;
  height: 55px;
  justify-content: space-between;
  padding: 0 30px 0 40px;
  text-align: left;
  white-space: nowrap;
}
.common-button .caret {
  display: flex;
  margin-left: 54px;
  max-height: 100%;
  width: 7px;
}
.form-button {
  align-items: center;
  display: flex;
  height: 55px;
  padding: 0 40px;
}
.button:hover {
  box-shadow: var(--box-shadow-button-hover);
}
.common-drop-shadow {
  box-shadow: inset 0px 0px 7px rgba(66, 59, 58, 0.7),
    1px 5px 9px rgba(var(--dark-shade2-rgb), 0.9);
  transition: box-shadow var(--hover-links-duration) linear;
}
#contact-button {
  border: 1px solid #fff;
  margin: 0 30px;
  transition: box-shadow var(--hover-links-duration) linear;
}
.header-social-buttons-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.round-icon {
  border-radius: 50%;
}
.round-icon {
  align-items: center;
  box-shadow: 1px 5px 9px rgba(var(--dark-shade0-rgb), 0.4);
  display: flex;
  justify-content: center;
  transition: box-shadow var(--hover-links-duration) linear;
}
.social-media-icon {
  flex-shrink: 0;
  height: 48px;
  margin-left: 20px;
  width: 48px;
}
.person-icon {
  height: 78px;
  width: 78px;
}
.round-icon:hover {
  box-shadow: 1px 5px 20px rgba(var(--dark-shade0-rgb), 0.6);
}
#header-buttons-container a:first-child {
  margin-left: 0;
}
.round-icon svg {
  height: 40%;
  width: auto;
}
.button-text {
  font-weight: 600;
  text-transform: uppercase;
}
#mobile-header-buttons-container {
	display: none;
}

@media only screen and (max-width: 1280px) {
  header {
    max-height: none;
    padding: 20px 0 50px 0;
    z-index: 3;
  }
  #top-header-container {
    flex-direction: column;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main-logo-container {
    margin-bottom: 20px;
    margin-left: 0;
    width: 100px;
  }
  #header-buttons-container {
    display: none;
  }
	#mobile-header-buttons-container {
		display: block;
		margin-top: 0px;
	}
	#mobile-header-buttons-container > * {
		margin: 0;
	}
	#mobile-header-buttons-container > a {
		box-shadow: none;
		height: 55px;
		padding: 0 0 0 20px;
	}
	#mobile-header-buttons-container a:hover {
		box-shadow: none;
	}
	.header-social-buttons-container {
		justify-content: flex-start;
		margin: 20px 0 0 20px !important;
	}
	.header-social-buttons-container a {
		margin-left: 20px;
	}
	.header-social-buttons-container a:first-child {
		margin-left: 0;
	}
	#contact-button {
		border-left: 0;
		border-right: 0;
	}
}

/* Header text and content */
#header-content-container-section {
  height: calc(100% - 192px);
  z-index: 2;
}
.header-text-container {
  margin-left: 50px;
}
.header-text-container h1 {
  font-size: min(max(2rem, 3.5vw), 4.125rem);
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 30px;
  text-shadow: var(--text-shadow);
  text-transform: capitalize;
}

main {
	position: relative;
	z-index: 1;
}


.image-content {
  padding: 120px 0;
}
.image-content > .image-content-inner-container {
  display: flex;
  justify-content: space-between;
}
.image-content-image-container {
  height: 655px;
  max-width: 500px;
}
.image-content-image-container div {
  border: 10px solid rgba(130, 100, 96, 0.7);
  height: 605px;
  position: relative;
  width: 450px;
}
.image-content-image-container img {
  box-shadow: 0px 0px 100px rgba(var(--dark-shade0-rgb), 0.4);
  display: block;
  height: 605px;
  left: 40px;
  position: relative;
  top: 40px;
  width: 450px;
}
.image-content-image-container img {
  width: 100%;
}
.image-content-content-container {
  margin-left: 50px;
  position: relative;
  width: 730px;
}
.section-common-heading {
  color: #bfaeac;
  font-size: var(--fs-28p);
  font-size: min(max(1.2rem, 2vw), var(--fs-28p));
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 20px;
}
.section-common-subheading {
  font-weight: 800;
  line-height: 120%;
}
.section-common-subheading span {
  font-weight: 500;
	letter-spacing: -0.25px;
}
.section-common-subheading em {
  font-style: italic;
}
.p-container {
  margin-top: 30px;
}
.p-container ~ .button,
.section-common-subheading ~ .button {
  margin-top: 30px;
}
.p-container > p {
  font-size: var(--fs-17p);
  font-weight: 500;
  line-height: 140%;
  text-shadow: var(--text-shadow);
  margin-top: 30px;
}
.p-container > p:first-child {
  margin: 0;
}
.info-modules-container.small {
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 50px;
  width: 104%;
}
.info-modules-container.large {
  margin-top: 40px;
}
.info-module {
  box-shadow: 0px 2px 25px var(--dark-shade1);
  display: flex;
}
.small .info-module {
  width: 360px;
}
.large .info-module {
  width: 100%;
}
.info-module-icon {
  align-items: center;
  box-shadow: inset 0px 0px 7px rgba(66, 59, 58, 0.7);
  display: flex;
  justify-content: center;
}
.info-module-icon svg {
  width: 56%;
}
.small .info-module-icon {
  height: 118px;
  width: 118px;
}
.large .info-module-icon {
  width: min(max(75px, 15vw), 170px);
}
.info-module-content {
  align-items: flex-start;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: var(--dark-shade2);
  display: flex;
	justify-content: center;
  flex-direction: column;
  font-weight: 800;
  line-height: 120%;
  text-align: left;
}
.info-module-content .p-container {
  margin-top: 10px;
}
.small .info-module-content {
  font-size: min(max(0.8rem, 2vw), var(--fs-18p));
  padding: 20px;
  width: 242px;
}
.large .info-module-content {
  font-size: min(max(1rem, 2vw), 1.375rem);
  padding: 5.3%;
  width: calc(100% - min(max(75px, 15vw), 170px));
}
@media only screen and (max-width: 1600px) {
	.header-text-container {
		width: 63% !important;
	}
}
@media only screen and (max-width: 1280px) {
  .image-content {
    overflow: hidden;
    padding: 80px 20px;
    position: relative;
  }
  .image-content > .image-content-inner-container {
    position: static;
  }
  .image-content-image-container {
    max-width: 300px;
		height: auto;
    z-index: 0;
  }
  .image-content-image-container div {
    border: none;
    height: auto;
    position: relative;
    width: auto;
  }
	.image-content-image-container img {
		border: 5px solid rgba(130, 100, 96, 0.7);
    box-shadow: 0px 0px 100px rgba(var(--dark-shade0-rgb), 0.4);
    display: block;
		height: auto;
    left: 0;
    position: relative;
    top: 0;
		width: 100%;
  }
  .image-content-content-container {
    margin-left: 30px;
    position: relative;
    width: 100%;
  }
  .info-modules-container {
    position: static;
    right: 0;
  }
  .info-modules-container.small {
    margin: 30px auto 0 auto;
    position: static;
    width: 100%;
  }
  .small .info-module {
    flex-direction: column;
    width: 48%;
  }
  .small .info-module-icon {
    height: 60px;
    padding: 10px;
    width: 100%;
  }
  .small .info-module-icon svg {
    height: 100%;
  }
  .small .info-module-content {
    height: 100%;
    padding: 20px;
    width: auto;
  }
}
@media only screen and (max-width: 800px) {
	.image-content > .image-content-inner-container {
		align-items: center;
    flex-direction: column;
  }
	.image-content-content-container {
    margin-left: 0px;
		text-align: center;
	}
	.image-content-image-container {
		margin-bottom: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .image-content {
    padding: 40px 20px;
  }
}

/* Image collage section */
.image-collage-container {
  display: flex;
  justify-content: center;
}
.image-collage-container:first-of-type {
  margin-top: 110px;
}
.image-collage-container li {
  position: relative;
  transition: all var(--navbar-animation-duration)
    cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}
.image-collage-container:not(.no-hover) li:hover {
  box-shadow: 10px 10px 30px var(--dark-shade1);
  transform: scale(1.17);
  z-index: 2;
}
.image-collage-container:not(.no-hover) li:first-child:hover {
  transform: scale(1.17) translate3d(7.5%, 0, 0);
}
.image-collage-container:not(.no-hover) li:last-child:hover {
  transform: scale(1.17) translate3d(-7.5%, 0, 0);
}
.image-collage-container li::after {
  background: rgb(33, 41, 51);
  background: linear-gradient(
    180deg,
    rgba(33, 41, 51, 0) 0%,
    rgba(33, 41, 51, 0.05) 50%,
    rgba(33, 41, 51, 0.85) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.image-collage-wrapper {
  align-items: flex-start;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  left: 50%;
  position: absolute;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - 100px);
  z-index: 2;
}
.image-collage-wrapper .p-container,
.image-collage-container .button-container {
  margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--navbar-animation-duration) ease 0s;
}
.image-collage-container li:hover .button-container {
	transition: max-height var(--navbar-animation-duration) ease 0.2s;
	max-height: 80px;
}
.image-collage-container li:hover .p-container {
	max-height: 175px;
	transition: max-height var(--navbar-animation-duration) ease 0.2s;
}
.image-collage-wrapper .p-container > p {
  margin-top: 10px;
}
.image-collage-icon {
  margin-bottom: 8px;
  max-height: 78px;
  max-width: 78px;
}
.image-collage-icon svg {
  height: 100%;
  width: 100%;
}
.image-collage-content {
  font-size: 1.75rem;
  font-weight: 800;
  width: 100%;
}
.image-collage-wrapper .common-button {
  margin-top: calc(30px * 0.83);
  font-size: calc(0.875rem * 0.83);
  white-space: normal;
  z-index: 2;
  height: calc(55px * 0.83);
  padding: 0 calc(30px * 0.83) 0 calc(40px * 0.83);
}
.image-collage-container .common-button .caret {
  margin-left: calc(54px * 0.83);
  width: 7px;
}
.image-collage-container li img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
	.image-collage-container li:hover {
    box-shadow: none;
    transform: none;
    z-index: auto;
  }
  .image-collage-container li:first-child:hover {
    transform: none;
  }
  .image-collage-container li:last-child:hover {
    transform: none;
  }
	.image-collage-container .button-container {
		max-height: none;
	}
	.image-collage-container .p-container {
		max-height: none;
	}
	.image-collage-container li:hover .button-container {
		transition: none;
	}
	.image-collage-container li:hover .p-container {
		transition: none;
	}
}
@media only screen and (max-width: 1424px) {
  .image-collage-container {
    flex-wrap: wrap;
  }
  .image-collage-container:first-of-type {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .image-collage-container:first-of-type {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .image-collage-wrapper {
    bottom: 50px;
    width: calc(100% - 50px);
  }
  .common-button {
    white-space: normal;
  }
}

/* Why choose TMG section */
#why-choose-section {
  padding-top: 120px;
}
#why-choose-modules-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  grid-gap: 40px;
}
@media only screen and (max-width: 1024px) {
  #why-choose-section {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  #why-choose-modules-container {
    grid-template-columns: 1fr;
    gap: min(max(12px, 3vw), 20px);
    grid-gap: min(max(12px, 3vw), 20px);
  }
}

/* Staggered images and content sections */
.staggered-module {
  display: flex;
	position: relative;
}
.staggered-module .image {
  height: auto;
  flex-basis: 50%;
}
.staggered-module .image img {
	margin-top: -75px;
}
.staggered-module:first-child .image img {
	margin-top: 0;
}
.staggered-module .content-container {
  display: flex;
  padding: 100px 0 0 0;
  justify-content: flex-start;
  flex-basis: 50%;
}
.staggered-module .content-container.single {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.staggered-module.right-image .content-container {
  justify-content: flex-end;
}
.staggered-module .content {
  margin: 0 50px;
  max-width: 540px;
}
.section-common-heading {
  line-height: 108%;
}
.section-common-subheading {
  line-height: 108%;
}
@media only screen and (max-width: 1600px) {
  
	.staggered-module .content-container {
    min-height: auto;
    padding: 20px 0 0 0;
  }
	.staggered-module .content {
    margin: 0 50px;
    max-width: none;
	}
}
@media only screen and (max-width: 1425px) {
	.staggered-images-section {
    padding-left: 60px;
    padding-right: 60px;
	}
	.staggered-module {
		flex-direction: column;
		margin: 0 auto 50px auto;
		width: 90%;
	}
	.staggered-module:last-child {
		margin-bottom: 0;
	}
  .staggered-module .content-container,
	.staggered-module .content-container.single {
    display: block;
		padding: 40px 20px;
  }
	.staggered-module.right-image .content-container {
		order: 2;
	}
	.staggered-module.right-image .image {
		order: 1;
	}
	.staggered-module .image img {
		margin-top: 0;
	}
}
@media only screen and (max-width: 1280px) {
  
}
@media only screen and (max-width: 960px) {
  .staggered-module {
		/* display: block;	 */
		width: 100%;
	}
  .staggered-module .content-container {
    width: 100%;
  }
  .staggered-module .content {
    display: flex;
    flex-direction: column;
    margin: 0;
    max-width: none;
  }
  .staggered-images-section .content .common-button {
    align-self: center;
    justify-self: center;
  }
}
@media only screen and (max-width: 600px) {
  .staggered-images-section {
		padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
}

/* Hero section */
.hero-section {
	margin-bottom: -140px;
  position: relative;
  width: 100%;
}
.hero-section .image-background {
  height: 890px;
  /* padding: 12.25% 0; */
  justify-content: flex-start;
}
.hero-section .image-background picture {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero-section .image-background > div {
  align-items: center;
  display: flex;
  height: 100%;
}
.hero-section .image-background::before {
  background: rgb(35, 37, 38);
  background: linear-gradient(
    180deg,
    rgba(35, 37, 38, 0.75) 0%,
    rgba(49, 49, 49, 0.5) 15%,
    rgba(65, 62, 62, 0.4) 85%,
    rgba(69, 65, 65, 0) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.hero-content-container {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1280px) {
	.hero-section {
		margin-bottom: -50px;
	}
  .hero-section .image-background {
		height: auto;
		padding: 156px 20px;
  }
}
@media only screen and (max-width: 640px) {
  .hero-section .image-background {
		padding-top: 50px;
    width: 100%;
  }
}

/** Request a quote section **/
#request-quote-section {
  padding: min(max(30px, 8vw), 120px) 0;
  position: relative;
  width: 100%;
}
#request-quote-section > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#request-quote-content-container {
  max-width: 480px;
}
#request-quote-content-container .content {
  line-height: 120%;
  margin-bottom: 30px;
}
#request-quote-content-container div:nth-child(2) {
  line-height: 150%;
  margin-bottom: 50px;
}
#request-quote-content-container div:nth-child(3) {
  line-height: 120%;
  margin-bottom: 15px;
}
#request-quote-content-container div:nth-child(4) {
  color: #bfaeac;
}

@media only screen and (max-width: 1280px) {
  #request-quote-section > div {
    flex-direction: column;
    padding: 0 20px;
  }
  #request-quote-content-container {
    max-width: none;
    margin-bottom: 30px;
    text-align: center;
    width: 80%;
  }
}

#back-to-top {
  align-items: center;
  background: var(--dark-shade2);
  border-radius: 50%;
  bottom: 5%;
  box-shadow: 10px 10px 30px var(--dark-shade1);
  cursor: pointer;
  display: flex;
  height: 80px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  transition: background-color var(--hover-links-duration) ease-in-out 0s,
    opacity var(--navbar-animation-duration) ease-in-out 0s;
  right: 2.5%;
  visibility: hidden;
  width: 80px;
  z-index: 100;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: var(--gray-shade7);
}
#back-to-top svg {
  display: block;
  fill: var(--gray-shade5);
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #back-to-top {
    height: 48px;
    width: 48px;
  }
}
