@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap");
:root {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #999;
  background-color: #282828;
}

header.zHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0px 0px 50px 0px;
  transition: 0.5s all ease;
}
header.zHeader .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: 0.5s all ease;
}
header.zHeader .container > .navBrand {
  padding-left: 15px;
  padding-right: 15px;
  transition: 0.5s all ease;
}
header.zHeader .container > .navBrand img {
  transition: 0.5s all ease;
  width: 150px;
  height: auto;
}
header.zHeader .navBtn {
  display: none;
}
header.zHeader .navCollapse .closeNav,
header.zHeader .navCollapse a.navBrand {
  display: none;
}
header.zHeader ul.navList {
  list-style-type: none;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  align-items: center;
}
header.zHeader ul.navList li:not(:last-child) {
  margin-right: 25px;
}
header.zHeader ul.navList li:nth-last-child(2) {
  margin-right: 5px;
}
header.zHeader ul.navList li a.navLink {
  padding: 10px 0;
  text-decoration: none;
  color: #000;
}
header.zHeader.scrolled {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 30px 0;
}
header.zHeader.scrolled .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
header.zHeader.scrolled .container > .navBrand {
  padding-top: 15px;
  padding-bottom: 15px;
}
header.zHeader.scrolled .container > .navBrand img {
  width: 130px;
}

.languageDropdown {
  position: relative;
}
.languageDropdown .selectedLanguage {
  text-decoration: none;
  padding: 15px 40px 15px 25px;
  border-radius: 15px;
  background-color: #eee;
  color: #000;
  border: none;
  display: inline-block;
  text-align: left;
  position: relative;
  min-width: 150px;
  transition-delay: 0.5s;
}
.languageDropdown .selectedLanguage::after {
  content: "\f0dd";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 16px;
  top: calc(50% - 11px);
  color: #000;
}
.languageDropdown .selectedLanguage.active {
  color: #EA3033;
  border-radius: 15px 15px 0 0;
  transition-delay: 0s;
  transition: none;
  background-color: #e7e7e7;
}
.languageDropdown .languageList {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #eee;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  border-radius: 0 0 15px 15px;
  padding: 5px 15px;
  width: 100%;
  display: none;
}
.languageDropdown .languageList li {
  padding: 10px 5px;
}
.languageDropdown .languageList li:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.languageDropdown .languageList li input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.languageDropdown .languageList li input[type=radio]:checked + label {
  font-weight: 600;
  color: #000;
}
.languageDropdown .languageList li input[type=radio]:checked + label .icon {
  background-color: #EA3033;
}
.languageDropdown .languageList li input[type=radio]:checked + label .icon::before {
  border-color: #fff;
  animation: checkAnim 0.3s ease;
  animation-fill-mode: forwards;
}
.languageDropdown .languageList li label {
  display: block;
  cursor: pointer;
  display: flex;
  gap: 5px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.languageDropdown .languageList li label .icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  position: relative;
  transition: 0.3s all ease;
}
.languageDropdown .languageList li label .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
  width: 0px;
  height: 0px;
  border: solid transparent;
  border-width: 0 0 2px 2px;
}
.languageDropdown .languageList li label:hover {
  color: #000;
}

@keyframes checkAnim {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 0;
    height: 6px;
  }
  100% {
    width: 12px;
    height: 6px;
  }
}
.mainBtn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 15px;
  background-color: #EA3033;
  color: #fff;
  border: none;
  display: inline-block;
  transition: 0.3s all ease;
}
.mainBtn:hover {
  background-color: #9f2b2d;
}
.mainBtn:active {
  transform: scale(0.95);
}
.mainBtn.alt {
  background-color: #aaa;
  color: #000;
}
.mainBtn.alt:hover {
  background-color: #888;
  color: #000;
}
.mainBtn.sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}
.mainBtn.white {
  background-color: #fff;
  color: #000;
}
.mainBtn.white:hover {
  background-color: #9f2b2d;
  color: #fff;
}

main .mainBanner {
  min-height: 100svh;
  width: 100%;
  position: relative;
}
main .mainBanner img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  border-radius: 0rem 0rem 120px 0rem;
}
main .mainBanner .content {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 0rem 0rem 120px 0rem;
  background-color: rgba(44, 44, 44, 0.5);
  color: #fff;
}
main .mainBanner .content h1 {
  font-size: 4rem;
  font-weight: 900;
}
main .mainBanner .content p {
  font-size: 1.25rem;
  font-weight: 600;
}
main #services {
  border-radius: 0px 120px 0px 0px;
  background: #2C2C2C;
}
main #services .row {
  row-gap: 24px;
}
main #classes {
  background: linear-gradient(0deg, #2c2c2c, #282828);
}
main #voucher {
  background-color: #2C2C2C;
}
main #voucher .mainTitle::before {
  left: calc(50% - 25px);
}
main #voucher ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
main #voucher ul li {
  flex: 0 0 25%;
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  z-index: 1;
}
main #voucher ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #EA3033;
  left: 0;
  top: 79px;
  z-index: -1;
}
main #voucher ul li:first-child::before {
  width: 50%;
  left: 50%;
}
main #voucher ul li:last-child::before {
  width: 50%;
}
main #voucher ul li .number {
  background-color: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  line-height: 1;
  border-radius: 15px;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  place-content: center;
  font-weight: 700;
  transform: translate(35px, 15px);
}
main #voucher ul li .icon {
  width: 100px;
  height: 100px;
  font-size: 48px;
  border-radius: 50px;
  line-height: 1;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  place-content: center;
  background-color: #EA3033;
  color: #2C2C2C;
  margin-bottom: 10px;
}
main #howitwork {
  background-color: #2c2c2c;
}
main #howitwork ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
main #howitwork ul li {
  flex: 0 0 20%;
  width: 20%;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  z-index: 1;
}
main #howitwork ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #EA3033;
  left: 0;
  top: 49px;
  z-index: -1;
}
main #howitwork ul li:first-child::before {
  width: 50%;
  left: 50%;
}
main #howitwork ul li:last-child::before {
  width: 50%;
}
main #howitwork ul li .icon {
  width: 100px;
  height: 100px;
  font-size: 30px;
  border-radius: 50px;
  line-height: 1;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  place-content: center;
  background-color: #282828;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  margin-bottom: 10px;
  border: 1px solid #EA3033;
}
main #howitwork ul li p {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
}
main #membership {
  background-image: url(../img/gym-pattern.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main #membership .app-icon {
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 35px;
}
main #membership .membershipCard {
  background-color: #fff;
  padding: 40px 20px 20px;
  border-radius: 30px;
}
main #membership .membershipCard h4 {
  font-weight: 700;
  color: #2C2C2C;
}
main #membership .membershipCard ul {
  padding-left: 0;
  list-style-type: none;
}
main #membership .membershipCard ul li {
  padding: 10px;
  font-size: 0.875rem;
}
main #membership .membershipCard ul li:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
main #partners {
  background-color: #2c2c2c;
}
main #partners #partnerList img {
  aspect-ratio: 1/1;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main #contact {
  background: linear-gradient(180deg, #2C2C2C 0%, rgba(40, 40, 40, 0) 50.52%, #3f1515 100%), linear-gradient(0deg, rgba(94, 35, 36, 0.87) 0%, rgba(94, 35, 36, 0.87) 100%), url(https://images.unsplash.com/photo-1637666133087-23b7138ea721?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D), lightgray 50%/cover no-repeat;
}
main #contact form > .text-center {
  margin-top: 20px;
}
main #careers {
  background-color: #3f1515;
  background-position: center;
  color: #fff;
}
main .serviceCard {
  border-radius: 30px;
  background: #303030;
  padding: 0px 0px 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 30px -10px;
}
main .serviceCard .icon {
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
}
main .serviceCard h6 {
  font-weight: 600;
  margin-bottom: 0;
  padding-left: 30px;
  color: #fff;
  padding-right: 30px;
}

.zFooter .topFooter {
  padding-top: 70px;
  padding-bottom: 40px;
}
.zFooter .topFooter .navBrand {
  margin-bottom: 20px;
  display: inline-block;
}
.zFooter .topFooter .navBrand img {
  filter: invert(1);
  width: 150px;
  height: auto;
}
.zFooter .topFooter .otherSection {
  padding-top: 70px;
}
.zFooter .topFooter .otherSection h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.zFooter .topFooter .otherSection ul.linkList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style-type: none;
}
.zFooter .topFooter .otherSection ul.iconList {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
}
.zFooter .topFooter .otherSection ul.iconList li {
  display: flex;
  gap: 10px;
}
.zFooter .topFooter .otherSection ul.iconList li .icon {
  width: 16px;
  flex: 0 0 16px;
  height: 24px;
  display: grid;
  place-content: center;
  color: #fff;
}
.zFooter .copy {
  padding: 10px;
  background-color: #2c2c2c;
  text-align: center;
}

.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
  scroll-margin-top: 72px;
}
.sectionPad .row {
  row-gap: 24px;
}

.link {
  color: #999;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #999;
  bottom: 0;
  left: 0;
  transition: 0.3s width ease;
}
.link:hover {
  color: #999;
}
.link:hover::after {
  width: 100%;
  right: 0;
  left: auto;
}

.img-4_3 {
  position: relative;
  padding-top: 75%;
}
.img-4_3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px 20px 120px 20px;
}

.mainTitle {
  font-weight: 700;
  color: #fff;
  position: relative;
  margin-bottom: 1.75rem;
}
.mainTitle::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 5px;
  border-radius: 2.5px;
  background: #EA3033;
  left: 0;
  top: 100%;
}
.mainTitle.text-center::before {
  left: calc(50% - 25px);
}

.para {
  line-height: 2;
}

.zInpGrp {
  margin-bottom: 10px;
}
.zInpGrp .zLbl {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
.zInpGrp .zInp {
  padding: 14px 20px;
  background-color: #393939;
  border-radius: 15px;
  width: 100%;
  border: none;
  color: #fff;
  resize: none;
}
.zInpGrp .zInp:focus {
  outline: none;
  box-shadow: 0 0 0 1px #ea3033;
}
.zInpGrp select.zInp {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  header.zHeader .container {
    max-width: 100%;
  }
  main #press .row {
    flex-direction: column-reverse;
  }
  main #voucher ul {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  main #voucher ul li {
    flex: 0 0 50%;
    width: 50%;
  }
  main #voucher ul li:first-child::before {
    width: 100%;
  }
  main #voucher ul li:nth-child(2)::before {
    height: 90px;
    width: 50%;
    background-color: transparent;
    border: solid #EA3033;
    border-width: 0 2px 2px 0;
    border-bottom-right-radius: 80px;
  }
  main #voucher ul li:nth-child(3) {
    z-index: 2;
  }
  main #voucher ul li:nth-child(3)::before {
    height: 114px;
    transform: translateY(-43px);
    width: 50%;
    top: 0%;
    left: 50%;
    background-color: transparent;
    border: solid #EA3033;
    border-width: 2px 0 0 2px;
    border-top-left-radius: 80px;
  }
  main #voucher ul li:last-child::before {
    width: 100%;
    right: 50%;
    left: auto;
  }
  .zFooter .topFooter .navBrand img {
    width: 250px;
    max-width: 100%;
  }
}
/* Popup Styles */
.popup-container {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000; /* Ensure it's on top */
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Semi-transparent black overlay */
  backdrop-filter: blur(3px); /* Optional blur effect */
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
}

.popup-icon {
  font-size: 4em;
  margin-bottom: 15px;
  color: #28a745; /* Success green color */
}

.popup-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.popup-message {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.popup-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #777;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.popup-close-button:hover {
  opacity: 1;
}
/* Loading Screen Styles */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 78%); /* Slightly transparent background, same as body */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top of everything */
}

.loading-icon {
  font-size: 4em; /* Adjust icon size */
  color:#9f2b2d; /* Icon color */
  margin-bottom: 15px;
  animation: pulse-dumbbell 1.5s infinite ease-in-out; /* Apply pulse animation */
}

.loading-text {
  font-size: 1.2em;
  color: #d1cbcb; /* Text color */
}

/* Dumbbell Pulse Animation */
@keyframes pulse-dumbbell {
  0% {
      transform: scale(1);
      opacity: 0.8;
  }
  50% {
      transform: scale(1.1);
      opacity: 1;
  }
  100% {
      transform: scale(1);
      opacity: 0.8;
  }
}

/* Initially hide loading screen (optional, if you want to control its display with JS) */
.loading-container {
  display: none; /* Initially hidden */
}
@media (max-width: 767px) {
  :root {
    font-size: 14px;
  }
  header.zHeader .navBtn {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background-color: #EA3033;
    color: #fff;
    border: none;
    padding: 0;
    line-height: 0;
  }
  header.zHeader .navCollapse {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1020;
    background-color: #fff;
    min-width: 300px;
    height: 100%;
    display: grid;
    align-content: center;
    padding: 30px;
    transform: translateX(100%);
    transition: 0.5s all ease-in;
  }
  header.zHeader .navCollapse::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    right: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transition: 0.5s all ease-in;
  }
  header.zHeader .navCollapse a.navBrand {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  header.zHeader .navCollapse a.navBrand img {
    width: 150px;
  }
  header.zHeader .navCollapse .closeNav {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background-color: #EA3033;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    padding: 0;
    line-height: 0;
  }
  header.zHeader .navCollapse.open {
    transform: translateX(0);
  }
  header.zHeader .navCollapse.open::before {
    width: calc(100vw - 300px);
  }
  header.zHeader ul.navList {
    flex-direction: column;
    align-content: flex-end;
  }
  header.zHeader ul.navList li {
    text-align: right;
  }
  header.zHeader ul.navList li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  header.zHeader ul.navList li:nth-last-child(2) {
    margin-bottom: 10px;
  }
  header.zHeader.scrolled ul.navList li a.navLink {
    color: #000;
  }
  main .mainBanner .content h1 {
    font-size: 2.5rem;
  }
  main .mainBanner .content p {
    font-size: 1rem;
  }
  main #voucher ul li:nth-child(2)::before {
    height: 88px;
  }
  main #voucher ul li:nth-child(3)::before {
    transform: translateY(-40px);
  }
  main #howitwork ul {
    flex-direction: column;
  }
  main #howitwork ul li {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
  }
  main #howitwork ul li::before {
    width: 1px;
    left: 40px;
    top: 0;
    height: 100%;
  }
  main #howitwork ul li:first-child::before {
    width: 1px;
    left: 40px;
    height: 50%;
    top: 50%;
  }
  main #howitwork ul li:last-child::before {
    width: 1px;
    height: 50%;
  }
  main #howitwork ul li .icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    margin-left: 0;
    margin-right: 0;
  }
  main #howitwork ul li p {
    flex: 1 1 auto;
    text-align: left;
    font-size: 1rem;
  }
  main #membership br {
    display: none;
  }
  main #membership .storeIcon {
    margin: 10px;
  }
  main #membership .storeIcon img {
    height: 50px;
    width: auto;
  }
  .zFooter .topFooter .otherSection {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  header.zHeader {
    border-radius: 0 0 31px 0;
  }
  header.zHeader .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  main .mainBanner .content,
  main .mainBanner img {
    border-radius: 0 0 50px 0;
  }
  main #services {
    border-radius: 0 50px 0 0;
  }
  main #voucher .mainTitle::before {
    left: 0;
  }
  main #voucher ul {
    row-gap: 0;
  }
  main #voucher ul li {
    padding-left: 0;
    padding-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  main #voucher ul li .number {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
  }
  main #voucher ul li p {
    text-align: left;
    flex: 1 1 auto;
    font-size: 1rem;
  }
  main #voucher ul li .icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-left: 0;
    margin-right: 0;
  }
  main #voucher ul li:first-child::before {
    width: 2px;
    height: 50%;
    left: 39px;
    top: 50%;
  }
  main #voucher ul li:nth-child(2)::before, main #voucher ul li:nth-child(3)::before {
    width: 2px;
    height: 100%;
    left: 39px;
    top: 0;
    transform: none;
  }
  main #voucher ul li:last-child::before {
    width: 2px;
    height: 50%;
    top: 0;
    left: 39px;
  }
  main .serviceCard {
    border-radius: 20px;
    padding: 0px 0px 20px;
  }
  main .serviceCard .icon {
    border-radius: 20px;
  }
  .img-4_3 img {
    border-radius: 10px 10px 40px 10px;
  }
  .sectionPad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}/*# sourceMappingURL=main.css.map */