@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import "../../scss/util/media-query.css";
.hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  z-index: 99999;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #DB1088;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-wrapper {
  display: inline-block;
  padding: 10px;
  border: 1px dashed #DB1088;
  cursor: pointer;
}

.hamburger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px;
}

.hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px;
}

.mobile-menu {
  margin-top: 0;
  background: #000119;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  position: fixed;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 110;
  flex-direction: column;
  overflow-y: scroll;
  top: 0;
  bottom: 0;
}
.mobile-menu a {
  color: #fff;
}
.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all;
  padding-top: 200px;
  font-weight: 900;
  font-size: 25px;
  line-height: 50px;
}
@media only screen and (max-width: 991px) {
  .mobile-menu.active {
    line-height: 20px;
  }
}
.mobile-menu .nav {
  flex-direction: column;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .mobile-menu .nav {
    padding: 0;
    margin-top: 60px;
  }
}
.mobile-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  height: 40px;
}
.mobile-menu .menu a {
  font-size: 25px;
  font-weight: 700;
  color: #7E7F8D;
  padding: 10px;
}
@media only screen and (max-width: 575px) {
  .mobile-menu .menu a {
    font-size: 20px;
  }
}
.mobile-menu .menu a:hover {
  color: #fff;
  background-color: #DB1088;
  transition: 0.2s ease;
}

body {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  margin: 0;
  background: #131313;
}
body.disabled {
  overflow: hidden;
}

a {
  display: inline-block;
  color: inherit;
  font-weight: 400;
}

a, a:hover, a:focus, a:visited, a:focus-within {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, ul, p {
  margin-top: 0;
}

.container {
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

header {
  position: absolute;
  left: 0;
  top: 45px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  header {
    top: 20px;
  }
}
header .nav-toggler {
  display: none;
}
@media only screen and (max-width: 991px) {
  header .nav-toggler {
    display: block;
  }
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  header nav {
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  header nav .logo img {
    max-width: 80px;
    height: auto;
  }
}
header nav ul {
  display: flex;
  list-style-type: none;
}
@media only screen and (max-width: 991px) {
  header nav ul.desktop-menu {
    display: none;
  }
}
header nav ul li {
  position: relative;
}
header nav ul li:not(:last-of-type) {
  margin-right: 30px;
}
header nav ul li:not(:last-of-type):after {
  position: absolute;
  content: "";
  right: -16px;
  top: 2.5px;
  background: #fff;
  width: 2px;
  height: 18px;
}
header nav ul li a {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.2s ease;
}
header nav ul li a:hover {
  color: #DB1088;
  transition: 0.2s ease;
}
@media only screen and (max-width: 991px) {
  header nav ul li a {
    font-size: 16px;
  }
}

section.hero {
  background-image: -webkit-image-set(url("../img/hero.jpg") 1x, url("../img/herox2.jpg") 2x);
  background-image: image-set(url("../img/hero.jpg") 1x, url("../img/herox2.jpg") 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 300px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}
section.hero h1 {
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
  max-width: 840px;
}
@media only screen and (max-width: 1399px) {
  section.hero h1 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
section.hero p {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  max-width: 580px;
  line-height: 1.6;
}
@media only screen and (max-width: 1399px) {
  section.hero p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  section.hero p {
    font-size: 16px;
  }
}

a.main-btn, input[type=submit] {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  background: #DB1088;
  text-transform: uppercase;
  padding: 20px 30px;
  transition: 0.2s ease;
}
a.main-btn:hover, input[type=submit]:hover {
  transition: 0.2s ease;
  background: #8a0c57;
}
@media only screen and (max-width: 991px) {
  a.main-btn, input[type=submit] {
    font-size: 18px;
  }
}

section.about {
  padding-left: 112px;
  padding-right: 125px;
  padding-top: 105px;
  display: grid;
  grid-template-columns: 34fr 27fr;
  gap: 100px;
}
@media only screen and (max-width: 991px) {
  section.about {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.about {
    grid-template-columns: minmax(1px, 1fr);
    gap: 40px;
    padding-top: 40px;
  }
}
section.about h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 96px;
  margin-bottom: 15px;
  font-weight: 900;
}
@media only screen and (max-width: 1399px) {
  section.about h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  section.about h2 {
    font-size: 36px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  section.about h2 {
    font-size: 32px;
  }
}
section.about p {
  font-size: 26px;
  font-weight: 700;
  color: #DB1088;
  max-width: 585px;
}
@media only screen and (max-width: 991px) {
  section.about p {
    font-size: 18px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
section.about .right .img-wrap {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.about .right .img-wrap {
    display: flex;
    justify-content: center;
  }
}
section.about .right .img-wrap:before {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -50px;
  width: 135px;
  height: 135px;
  background: #DB1088;
  z-index: 3;
}
@media only screen and (max-width: 1399px) {
  section.about .right .img-wrap:before {
    bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.about .right .img-wrap:before {
    display: none;
  }
}
section.about .right .img-wrap .dots-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.67) 2px, transparent 2px);
  background-size: 18px 18px;
  height: 630px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  section.about .right .img-wrap .dots-bg {
    height: 400px;
  }
}
@media only screen and (max-width: 991px) {
  section.about .right .img-wrap .dots-bg {
    height: 330px;
  }
}
section.about .right .img-wrap img {
  position: relative;
  z-index: 5;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
}

section.services {
  padding-left: 112px;
  padding-right: 125px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 140px;
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  section.services {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1399px) {
  section.services {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 575px) {
  section.services {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.services .text {
  border: 13px solid #fff;
  margin-top: -130px;
  padding: 100px 35px 0;
  display: flex;
  justify-content: center;
  height: 215px;
}
@media only screen and (max-width: 1699px) {
  section.services .text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 575px) {
  section.services .text {
    height: auto;
    padding-bottom: 35px;
  }
}
section.services .text h3 {
  text-align: center;
  color: #EAEBAD;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1699px) {
  section.services .text h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  section.services .text h3 {
    font-size: 18px;
  }
}
section.services .item img {
  max-width: 100%;
  height: auto;
}
section.services .item .img-wrap {
  display: flex;
  justify-content: center;
}

div.content {
  position: relative;
}
div.content .top-content-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
div.content .top-content-bg img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
div.content .main-content {
  background: linear-gradient(to bottom, rgba(40, 37, 96, 0.67), rgba(30, 30, 30, 0.67));
  height: 100%;
  width: 100%;
}

section.time-board {
  padding-left: 35px;
  padding-right: 35px;
}
section.time-board h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 991px) {
  section.time-board h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
section.time-board .timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.time-board .timeline {
    grid-template-columns: 1fr;
  }
}
section.time-board .timeline:after {
  text-align: center;
  width: 86%;
  content: "";
  height: 5px;
  background: #EAEBAD;
  z-index: 1;
  top: 19.5px;
  left: 7%;
  right: 7%;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.time-board .timeline:after {
    height: 86%;
    right: initial;
    bottom: 7%;
    width: 5px;
    left: 18.5px;
  }
}
section.time-board .timeline .step {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  section.time-board .timeline .step {
    flex-direction: initial;
  }
}
section.time-board .timeline .square {
  width: 42px;
  height: 42px;
  background: #EAEBAD;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.time-board .timeline .square {
    margin-right: 20px;
  }
}
section.time-board .timeline .label {
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.time-board .timeline .label {
    text-align: left;
  }
}
section.time-board .timeline .label span {
  display: block;
}
section.time-board .img-wrap {
  display: flex;
  justify-content: center;
}
section.time-board .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
}

section.why-invest {
  padding-left: 112px;
  padding-right: 125px;
  padding-top: 105px;
  display: grid;
  grid-template-columns: 7fr 6fr;
  gap: 15px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  section.why-invest {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest {
    grid-template-columns: minmax(1px, 1fr);
    gap: 10px;
  }
}
section.why-invest h2 {
  text-transform: uppercase;
  color: #EAEBAD;
  font-size: 96px;
  margin-bottom: 15px;
  font-weight: 900;
}
@media only screen and (max-width: 1399px) {
  section.why-invest h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest h2 {
    font-size: 36px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  section.why-invest h2 {
    font-size: 32px;
  }
}
section.why-invest p {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  max-width: 585px;
}
@media only screen and (max-width: 991px) {
  section.why-invest p {
    font-size: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
section.why-invest .right .img-wrap {
  position: relative;
}
section.why-invest .right .img-wrap:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -50px;
  width: 135px;
  height: 135px;
  background: #EAEBAD;
  z-index: 3;
}
@media only screen and (max-width: 1399px) {
  section.why-invest .right .img-wrap:before {
    left: -20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest .right .img-wrap:before {
    display: none;
  }
}
section.why-invest .right .img-wrap .dots-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.67) 2px, transparent 2px);
  background-size: 18px 18px;
  height: 450px;
  width: 99%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  section.why-invest .right .img-wrap .dots-bg {
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest .right .img-wrap .dots-bg {
    height: 210px;
  }
}
section.why-invest .right .img-wrap img {
  position: relative;
  z-index: 5;
  width: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

section.why-invest-items {
  padding-left: 112px;
  padding-right: 125px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  section.why-invest-items {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-invest-items {
    grid-template-columns: minmax(1px, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest-items {
    margin-bottom: 80px;
  }
}
section.why-invest-items .item {
  border: 13px solid #fff;
  padding: 20px 15px 40px;
  height: auto;
}
@media only screen and (max-width: 991px) {
  section.why-invest-items .item {
    height: 180px;
  }
}
section.why-invest-items .item h3, section.why-invest-items .item p {
  text-align: center;
}
section.why-invest-items .item h3 {
  color: #DB1088;
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
}
@media only screen and (max-width: 1399px) {
  section.why-invest-items .item h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-invest-items .item h3 {
    font-size: 24px;
  }
}
section.why-invest-items .item p {
  margin-bottom: 0;
  color: #fff;
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  section.why-invest-items .item p {
    font-size: 18px;
  }
}

section.from-start {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  section.from-start {
    padding-bottom: 80px;
  }
}
section.from-start h2 {
  max-width: 840px;
  font-weight: 900;
  color: #fff;
  font-size: 96px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (max-width: 1399px) {
  section.from-start h2 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 991px) {
  section.from-start h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  section.from-start h2 {
    font-size: 32px;
  }
}
section.from-start h3 {
  color: #DB1088;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 50px;
}
@media only screen and (max-width: 1399px) {
  section.from-start h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  section.from-start h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
}
section.from-start ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  section.from-start ul {
    align-items: initial;
  }
}
section.from-start ul li {
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  section.from-start ul li {
    font-size: 18px;
  }
}
section.from-start .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.from-start .img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  section.from-start .img-wrap {
    margin-bottom: 40px;
  }
}
section.from-start .img-wrap:after {
  content: "";
  width: calc(100% - 60px);
  height: 200px;
  background: #131313;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  position: absolute;
  z-index: 2;
}
section.from-start .img-wrap img {
  position: relative;
  z-index: 5;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
}

footer {
  background-image: -webkit-image-set(url("../img/footer.jpg") 1x, url("../img/footerx2.jpg") 2x);
  background-image: image-set(url("../img/footer.jpg") 1x, url("../img/footerx2.jpg") 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 105px 135px 120px;
}
@media only screen and (max-width: 1399px) {
  footer {
    padding: 65px 65px 100px;
  }
}
@media only screen and (max-width: 991px) {
  footer {
    padding: 50px 30px;
  }
}
footer .wrap {
  display: grid;
  grid-template-columns: 60fr 53fr;
  gap: 300px;
}
@media only screen and (max-width: 1799px) {
  footer .wrap {
    gap: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  footer .wrap {
    gap: 60px;
  }
}
@media only screen and (max-width: 991px) {
  footer .wrap {
    grid-template-columns: minmax(1px, 1fr);
    gap: 50px;
  }
}
footer .right {
  display: flex;
  flex-direction: column;
}
footer h2 {
  font-size: 96px;
  font-weight: 900;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 1399px) {
  footer h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  footer h2 {
    font-size: 36px;
    text-align: center;
  }
}
footer p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 708px;
  line-height: 1.5;
}
@media only screen and (max-width: 1399px) {
  footer p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  footer p {
    margin-bottom: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
footer input:not([type=submit]), footer textarea {
  border: none;
  background: #fff;
  padding: 30px;
  font-size: 20px;
}
@media only screen and (max-width: 1399px) {
  footer input:not([type=submit]), footer textarea {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  footer input:not([type=submit]), footer textarea {
    padding: 15px;
    font-size: 18px;
  }
}
footer input:not([type=submit])::-moz-placeholder, footer textarea::-moz-placeholder {
  color: #6F6F6F;
  font-size: 20px;
}
footer input:not([type=submit])::placeholder, footer textarea::placeholder {
  color: #6F6F6F;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  footer input:not([type=submit])::-moz-placeholder, footer textarea::-moz-placeholder {
    font-size: 18px;
  }
  footer input:not([type=submit])::placeholder, footer textarea::placeholder {
    font-size: 18px;
  }
}
footer input:not([type=submit]):focus, footer textarea:focus {
  outline: 0;
}
footer .input-wrap {
  display: flex;
  flex-direction: column;
  margin-right: 10%;
}
@media only screen and (max-width: 991px) {
  footer .input-wrap {
    margin-right: initial;
  }
}
footer .form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media only screen and (max-width: 1399px) {
  footer .form-wrapper {
    gap: 25px;
  }
}
@media only screen and (max-width: 991px) {
  footer .form-wrapper {
    gap: 15px;
    display: flex;
    flex-direction: column;
  }
}
footer .submit-wrap {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  footer .submit-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: center;
  }
}
footer input[type=submit] {
  border: none;
  cursor: pointer;
}
footer .socials {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  flex-grow: 1;
  align-items: flex-end;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  footer .socials {
    align-items: center;
    justify-content: center;
  }
}
footer .socials .social {
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  footer .socials .social img {
    height: 35px;
    width: 35px;
  }
}
footer .info-wrap {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  footer .info-wrap {
    margin-bottom: 15px;
  }
}
footer .info-wrap ul {
  list-style-type: none;
  padding-left: 0;
}
footer .info-wrap ul li {
  color: #fff;
  text-align: right;
  font-size: 24px;
}
@media only screen and (max-width: 1399px) {
  footer .info-wrap ul li {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  footer .info-wrap ul li {
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
  }
}
footer .contact-info {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  footer .contact-info {
    margin-bottom: 15px;
  }
}
footer .contact-info a {
  text-decoration: underline;
  color: #DB1088;
  font-size: 50px;
  font-weight: 900;
  text-align: right;
}
@media only screen and (max-width: 1399px) {
  footer .contact-info a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  footer .contact-info a {
    text-align: center;
    font-size: 20px;
  }
}
footer .logo-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 75px;
}
@media only screen and (max-width: 991px) {
  footer .logo-wrap {
    justify-content: center;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  footer .logo-wrap img {
    max-width: 130px;
    height: auto;
  }
}

.footer-area .footer-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 45px 0;
}
@media only screen and (max-width: 767.98px) {
  .footer-area .footer-copyright-area {
    padding: 30px 0;
  }
}

.footer-copyright-area p {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright-content {
  display: flex;
}

.copyright-content a {
  color: #ff9326;
}
.copyright-content a:hover {
  color: #FFFFFF;
}
