@charset "UTF-8";

html {
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */

a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */

ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */

table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */

input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */

textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */

:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */

::placeholder {
  color: unset;
}

/* remove default dot (•) sign */

::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */

:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */

:where(dialog:modal) {
  all: revert;
}

body {
  outline: none;
  background: #000;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.download-buttons-mob {
  display: none;
}

.heading-first {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 112.5%;
}

.heading-second {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 120%;
}

.heading-third {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}

.download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  margin: 0 auto 7px;
  padding: 16px 32px;
  white-space: nowrap;
  background: #EB622B;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}

.download-btn:hover {
  background: #F18536;
}

.download-btn .mobile {
  display: none;
}

.download-buttons {
  display: flex;
  justify-content: center;
  margin: 36px auto 0;
  flex-direction: row;
}

.download-btn .first-hidden {
  display: none;
}

.download-btn .first-hidden.visible {
  display: flex;
}

.download-btn .first-visible {
  display: flex;
}

.download-btn .first-visible.hidden {
  display: none;
}

.download-btn.mac.hidden,
.download-btn.pc.hidden {
  display: none;
}

.cf-forge-mob {
  display: none;
}

.item-text {
  color: #B2B2B2;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 23px auto 0;
  color: #B2B2B2;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.to-top svg {
  width: 24px;
  height: 24px;
  margin: 0 0 10px;
}

.to-top-section {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.to-top-section .content-wrapper {
  padding-top: 41px;
}

@keyframes OpacityLinkAppear {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 0;
  opacity: 1;
  z-index: 27;
}

header.fixed.mob {
  display: none;
}

header .download-buttons {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

header .download-buttons.desktop {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  flex-direction: row;
}

header .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 15px 22px 16px 15px;
}

header .hero-logo.mob {
  max-width: unset;
  width: auto;
  height: 26px;
  margin: 0 0 0 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .hero-logo.desktop {
  display: flex;
  align-items: center;
  max-width: unset;
  width: auto;
  height: 34px;
  height: 37px;
  margin-top: -3px;
}

header .download-buttons {
  margin: 0;
}

.header-link {
  margin-left: 1px;
  padding: 7px 25px;
  color: #DFDFDF;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  border: 1px solid transparent;
  background: transparent;
  transition: .3s ease-in-out;
}

.header-link:hover {
  color: #F18536;
}

.header-link.border {
  margin-left: 40px;
  padding: 7px 29px;
  border: 1px solid #DFDFDF;
  color: #DFDFDF;
  text-align: center;
  font-weight: 600;
  line-height: 24px;
  opacity: 0;
  transition: .2s ease;
}

.header-link.border:hover {
  color: #fff;
  background: #F18536;
  border: 1px solid #F18536;
}

.header-link.border.mac,
.header-link.border.pc {
  animation: OpacityLinkAppear 1s linear forwards;
  animation-delay: .3s;
}

.header-link.border.mac.hidden,
.header-link.border.pc.hidden {
  display: none;
}

.header-link.orange {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #EB622B;
  text-align: center;
  font-weight: 600;
  line-height: 24px;
  max-width: 284px;
  margin: 0 auto 120px;
  padding: 11px 30px;
  white-space: nowrap;
}

.header-link.orange:hover {
  background: #F18536;
}

.header-buttons {
  flex-direction: row;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #000;
  z-index: 100;
  transition: .3s;
}

.site-header .download-btn {
  padding: 16px 32px;
}

.site-header .header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  row-gap: 2px;
}

.site-header .header-inner {
  display: flex;
  max-width: 1720px;
  margin: 0 auto;
  padding: 11px 20px;
  position: relative;
  z-index: 10;
  transition: .3s;
  min-height: 80px;
  align-items: center;
  justify-content: flex-start;
}

.site-header .header-inner nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.submenu-icon {
  display: none;
}

.site-header .header-inner nav ul li {
  margin: 0 12px;
}

.site-header .header-inner nav ul li.mob-only.decor a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.site-header .header-inner nav ul.header-menu {
  display: flex;
}

.site-header .hamburger-menu-button {
  display: none;
  margin-left: 8px;
}

.header-link-container {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}

.hamburger-menu-button {
  z-index: 1;
  display: block;
  background: transparent;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu-button > div {
  position: relative;
  width: 24px;
  height: 20px;
  left: 2px;
  right: 0;
  margin: 0 auto;
  transition: .4s ease-in-out;
}

.hamburger-menu-button > div span {
  background: white;
  display: block;
  width: 100%;
  max-width: 20px;
  height: 2px;
  position: absolute;
  transition: .4s ease-in-out;
  border-radius: 0;
}

.hamburger-menu-button > div span:first-child {
  top: 3px;
  left: 0;
}

.hamburger-menu-button > div span:nth-child(2) {
  top: 9px;
  left: 0;
}

.hamburger-menu-button > div span:nth-child(3) {
  top: 15px;
  left: 0;
}

.hamburger-menu-button.close > div span {
  background: #DFDFDF;
}

.hamburger-menu-button.close > div span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-menu-button.close > div span:nth-child(2) {
  transform: scaleX(0);
}

.hamburger-menu-button.close > div span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header .header-inner nav .header-menu .header-menu-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out;
  position: relative;
}

.site-header .header-inner nav .header-menu svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  transition: all .15s;
  fill: #D6D6D6;
  position: absolute;
  right: 18px;
  top: 12px;
  bottom: 0;
  margin: 0 auto;
}

.header-link.mob {
  position: relative;
  display: none;
}

.header-link.mob::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 24px;
  transform: translateY(-50%);
  content: '';
  background-color: #EB622B;
  opacity: 0;
  height: 0;
  transition: .2s ease-in-out;
}

.header-link.mob.active::before {
  opacity: 1;
  height: 24px;
}

.header-link.mob :hover {
  color: #D6D6D6;
}

.opening-section {
  max-width: 100%;
  background-position: top;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 750px;
  padding: 0 20px;
  background-color: #191919;
  background: url("./../images/MainBGVisual.webp") no-repeat 50% 50%;
  background-size: cover;
  z-index: 2;
}

.opening-section .small-text {
  display: none;
  margin: 23px 0 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.opening-section * {
  box-sizing: border-box;
}

.opening-section .intro-text-container {
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 15px;
}

.opening-section .intro-text-container .opening-sims-logo {
  width: 390px;
  height: auto;
}

.opening-section .intro-text-container .heading-first {
  margin-top: 15px;
}

.opening-section .intro-text-container p.txt {
  font-family: 'Montserrat', sans-serif;
  line-height: 145%;
  color: #DFDFDF;
  max-width: 521px;
  margin: 25px 0 46px;
  align-self: stretch;
  font-size: 22px;
  font-weight: 500;
  line-height: 145.455%;
}

.opening-section .dude-img {
  position: absolute;
  right: unset;
  top: 0;
  height: 100%;
  transition: all .1s ease;
  display: flex;
  align-items: flex-end;
}

.opening-section .dude-img.desktop {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  right: 0;
}

.opening-section .dude-img.mob {
  display: none;
}

.opening-section .dude-img img {
  position: relative;
  z-index: 1;
}

.opening-section .shadow-bg {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: -2px;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

.opening-section .shadow-bg img {
  display: flex;
  width: 100%;
}

.hero-logo.mob {
  display: none;
}

.txt.desktop {
  display: none;
}

.txt.mob {
  display: flex;
}

.txt-decorated {
  display: block;
  margin-top: 182px;
  color: #DFDFDF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.opening-section .download-buttons {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.opening-section .download-buttons div:not(:first-child) {
  position: relative;
  margin-left: 22px;
}

.opening-section .download-buttons .desktop {
  display: flex;
}

.opening-section .download-buttons .download-btn {
  margin: 0;
}

@keyframes a {
  0% {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

.features-section {
  position: relative;
  margin-top: 49px;
  padding: 0 0 80px;
  z-index: 2;
}

.features-section .content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1726px;
  padding: 80px 20px 72px;
  margin: 0 auto;
}

.features-section .swiper {
  position: relative;
}

.features-section .swiper-wrapper {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 10px;
}

.features-section .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.features-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-section .carousel-item {
  display: flex;
  position: relative;
  overflow: hidden;
  max-height: 560px;
  max-width: 544px;
  width: auto;
  margin: 29px 0;
  padding: 20px;
  transition: .2s ease-in-out;
  cursor: pointer;
  height: auto;
}

.features-section .carousel-item-text-small {
  display: block;
  margin: 0px auto 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #9F9F9F;
}

.features-section .carousel-item-img img {
  transform: translateY(0px);
  transition: .6s ease-in-out;
}

.features-section .carousel-item-block {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-grow: 1;
  justify-content: stretch;
}

.features-section .carousel-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  justify-content: space-between;
  transform: translateY(0px);
  flex-grow: 1;
}

.features-section .carousel-item-text-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
}

.features-section .carousel-item-text-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}

.features-section .carousel-item-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  padding-bottom: 0;
}

.features-section .carousel-item-title {
  display: inline-block;
  margin: 0 auto;
  padding: 20px 0 0;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 160%;
}

.features-section .carousel-item-description {
  display: inline-block;
  max-width: 363px;
  min-height: 109px;
  margin: 0 auto;
  padding-bottom: 26px;
  color: #DFDFDF;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.features-section .carousel-item .decorated-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 23px;
  margin-bottom: 21px;
  padding: 1px 14px;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border: 0.661441px solid #999;
  border-radius: 4px;
  white-space: nowrap;
}

.features-section .carousel-item .decorated-text.mob {
  display: none;
}

.features-row {
  background: #000;
}

.features-row .carousel-item {
  background: #262626;
}

.features-row .carousel-item-text-small {
  color: #9F9F9F;
}

.features-row.gradient {
  position: relative;
  background: #202020;
  background-position: 172% 253%;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}

.features-row.gradient .carousel-item {
  background: #0D0D0D;
}

.btn-view,
.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 39px;
  margin: 3px 10px;
  padding: 6px 16px 6px 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.btn-view span,
.btn-action span {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.btn-view svg,
.btn-action svg {
  min-width: 20px;
  height: 20px;
  margin-right: 8px;
}

.btn-view {
  border: 1px solid #DFDFDF;
  background: transparent;
}

.btn-view:hover {
  background: #F18536;
  border: 1px solid #F18536;
}

.btn-action {
  background: #EB622B;
}

.btn-action:hover {
  background: #F18536;
}

.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  background: #202020 url("./../images/ModsChoiceBG.webp") 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.intro-section .heading-four {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}

.intro-section .heading-four.orange {
  color: #EB622B;
}

.intro-section .content-right.mob {
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  width: auto;
  max-width: 651px;
  padding: 12px 44px 48px;
  border-radius: 20px;
  background: #000;
  margin: 25px 20px 64px;
}

.intro-hero {
  width: 100%;
}

.intro-hero .heading-second {
  margin: 0px 0 21px;
  display: inline-block;
}

.intro-hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 1720px;
  width: 100%;
  padding: 66px 20px 12px;
  margin: 0 auto;
}

.intro-hero .content-left p {
  color: #DFDFDF;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  margin: 19px 0 0;
}

.intro-hero .content-right {
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 686px;
  padding: 24px 24px 31px;
  border-radius: 20px;
  background: #000;
}

.intro-hero .content-right p {
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.intro-hero-img {
  min-width: 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 8px;
  margin-right: 33px;
}

.intro-hero-img img {
  width: 100%;
  height: 100%;
}

.intro-hero-text {
  max-width: 576px;
  padding-top: 0px;
}

.intro-hero-text p {
  margin-bottom: 30px;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.intro-hero-text p b {
  font-weight: 700;
  font-family: Lato, sans-serif;
}

.intro-hero-text p span {
  font-family: Lato, sans-serif;
}

.intro-hero-text p span.color {
  color: #EB622B;
}

.intro-details {
  width: 100%;
}

.intro-details .content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  max-width: 1720px;
  width: 100%;
  padding: 4px 0 155px;
  margin: 0 auto;
}

.intro-details .content-wrapper-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
}

.intro-details .heading-third {
  padding: 0 20px;
  text-align: left;
  margin: 0;
  width: 100%;
}

.swiper-intro {
  position: relative;
}

.swiper-intro .swiper {
  position: relative;
}

.swiper-intro .swiper-wrapper {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 10px;
}

.swiper-intro .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.swiper-intro .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-intro .carousel-item {
  display: flex;
  position: relative;
  overflow: hidden;
  max-height: 560px;
  max-width: 544px;
  width: auto;
  margin: 29px 0;
  padding: 20px;
  transition: .2s ease-in-out;
  height: auto;
  background: #0D0D0D;
}

.swiper-intro .carousel-item-text-small {
  display: block;
  margin: 0px auto 7px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #9F9F9F;
}

.swiper-intro .carousel-item-img img {
  transform: translateY(0px);
  transition: .6s ease-in-out;
}

.swiper-intro .carousel-item-block {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-grow: 1;
  height: 100%;
  justify-content: stretch;
}

.swiper-intro .carousel-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  justify-content: space-between;
  transform: translateY(0px);
  flex-grow: 1;
}

.swiper-intro .carousel-item-text-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
}

.swiper-intro .carousel-item-text-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}

.swiper-intro .carousel-item-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  padding-bottom: 0;
}

.swiper-intro .carousel-item-title {
  display: inline-block;
  margin: 0 auto;
  padding: 22px 0 2px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 142.857%;
}

.swiper-intro .carousel-item-description {
  display: inline-block;
  max-width: 356px;
  min-height: 109px;
  margin: 0 auto;
  padding-bottom: 26px;
  color: #DFDFDF;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.swiper-intro .carousel-item .decorated-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 23px;
  margin-bottom: 21px;
  padding: 1px 14px;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border: 0.661441px solid #999;
  border-radius: 4px;
  white-space: nowrap;
}

.swiper-intro .carousel-item .decorated-text.mob {
  display: none;
}

.swiper-intro .btn-view,
.swiper-intro .btn-action {
  margin: 0;
}

.swiper-intro .btn-view {
  margin-right: 10px;
}

.detail-downloads {
  margin-left: 10px;
  background-position: 100% 0%;
  position: relative;
  padding-right: 29px;
  color: #999;
  text-align: right;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  background-size: 24px;
}

.detail-downloads span {
  display: inline-block;
  position: relative;
  color: #999;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.detail-downloads span::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -29px;
  width: 24px;
  height: 24px;
  background: url("./../images/download_update.svg") no-repeat 50% 50%;
  background-size: contain;
}

.detail-downloads::before,
.detail-downloads::after {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  transition: opacity .1s, transform .2s;
}

.detail-downloads::before {
  content: "Downloads";
  margin-top: -5px;
  background-color: #333;
  color: #e5e5e5;
  font-weight: 400;
  padding: 4px 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -4px);
  white-space: nowrap;
  transition: opacity .2s;
  pointer-events: none;
  z-index: 1;
}

.detail-downloads::after {
  content: "";
  margin-top: -10px;
  width: 0;
  height: 0;
  transform: translateY(2px);
  border-color: transparent transparent #333;
  border-style: solid;
  border-width: 0 6px 6px;
  transform: translate(-50%, -4px);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.detail-downloads:hover::after,
.detail-downloads:hover::before {
  opacity: 1;
  transform: translate(-50%);
}

.subscribe-section {
  background: #101010 url("./../images/WhyCFbg.webp") no-repeat 50% 50%;
  background-size: cover;
}

.subscribe-section .content-wrapper {
  max-width: 827px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 163px 20px 274px;
}

.subscribe-section .main-text {
  max-width: 460px;
  color: #DFDFDF;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 160%;
  margin: 21px auto 48px;
}

.subscr-alarm {
  width: 150px;
  height: 148px;
  margin-bottom: 47px;
}

.bottom-section {
  background-size: cover;
  position: relative;
}

.bottom-section .heading-third {
  width: 100%;
  max-width: 460px;
}

.bottom-section .heading-third br {
  display: none;
}

.bottom-section .content-wrapper {
  display: flex;
  justify-content: center;
  max-width: 1471px;
  margin: 0 auto;
  padding: 292px 20px 103px;
  position: relative;
  z-index: 2;
}

.bottom-section .content-wrapper-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 602px;
  margin: 0;
  text-align: left;
}

.bottom-section .bottom-characters {
  position: absolute;
  left: 2%;
  bottom: 0px;
  width: 999.35px;
  height: 740px;
  margin: 0;
}

.bottom-section .heading-second {
  text-align: left;
}

.bottom-section .download-btn {
  height: 62px;
  margin: 0 auto 5px;
}

.bottom-section .download-buttons {
  display: flex;
  justify-content: flex-start;
  margin: 39px 0 0;
  flex-direction: column;
}

.bottom-character-mob {
  display: none;
}

.download-btn.standalone {
  opacity: 0;
  z-index: -2;
  transition: .2s ease-in-out;
}

.download-btn.standalone.visible {
  opacity: 1;
  z-index: 1;
}

.btn-divider.hero,
.btn-divider.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .2s ease-in-out;
  height: 25px;
  cursor: pointer;
  width: 264px;
}

.btn-divider.hero span,
.btn-divider.bottom span {
  display: flex;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  color: #808080;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  width: 100%;
  width: 264px;
  display: block;
  text-align: center;
  justify-content: center;
}

.btn-divider.hero .visible,
.btn-divider.bottom .visible {
  display: flex;
  text-decoration: underline;
}

.btn-divider.hero .visible.hide,
.btn-divider.bottom .visible.hide {
  display: none;
}

.btn-divider.hero .hidden,
.btn-divider.bottom .hidden {
  display: flex;
  text-decoration: none;
}

.btn-divider.hero .hidden.hide,
.btn-divider.bottom .hidden.hide {
  display: none;
}

.btn-divider.hero.mob,
.btn-divider.bottom.mob {
  display: none;
}

.btn-divider.hero {
  margin: 0;
}

.btn-divider.bottom {
  margin: 0 16px;
}

img {
  pointer-events: none;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: px;
  margin: 0 auto;
  padding: 30px 20px 18px;
}

.footer-line {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: #101010;
  width: 100%;
}

.footer-line .content-wrapper {
  position: relative;
  flex-direction: column;
  max-width: 1678px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 10px;
}

.footer-line p,
.footer-line span,
.footer-line a {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-line a {
  text-decoration-line: underline;
  transition: .2s ease-in-out;
}

.footer-line a:hover {
  color: #fff;
}

.footer-line-left {
  display: flex;
  flex-direction: column;
}

.footer-line-left ul {
  display: flex;
  align-items: center;
}

.footer-line-left ul li {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-line-right {
  display: flex;
}

.footer-line-right p,
.footer-line-right span,
.footer-line-right a,
.footer-line-right li {
  color: #9F9F9F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 48px;
  width: 100%;
}

.footer-col p {
  margin-top: 24px;
}

.footer-col p,
.footer-col span,
.footer-col a {
  color: #B2B2B2;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: .2s ease-in-out;
}

.footer-col a {
  text-decoration: underline;
  transition: .2s ease-in-out;
}

.footer-col a:hover {
  color: #fff;
}

.footer-fire {
  position: absolute;
  top: -47px;
  right: -100px;
  width: 375px;
  max-height: 228px;
}

.footer-logo {
  width: 177px;
}

.footer-socials {
  display: flex;
  margin-top: -2px;
}

.footer-socials-item {
  margin-left: 20px;
}

.footer-line ul.mob-only {
  display: none;
}

@media only screen and (min-width: 1025px) {
  header .content-wrapper {
    min-height: 80px;
  }

  .header-link {
    opacity: 0;
    animation: OpacityLinkAppear 1s linear forwards;
    animation-delay: .3s;
  }

  .opening-section .small-text {
    display: block;
    text-align: left;
  }

  .opening-section .dude-img img {
    right: 8%;
    right: 96px;
    bottom: 0px;
    max-width: unset;
    width: 100%;
    right: 8%;
    width: 100%;
    bottom: 1px;
    height: 762px;
  }

  .txt.desktop {
    display: flex;
  }

  .txt.mob {
    display: none;
  }

  .features-section .carousel-item-block {
    height: 100%;
  }

  .features-section .carousel-item-text-bottom {
    padding-bottom: 7px;
  }

  .intro-section .content-right.mob {
    display: none;
  }

  .intro-hero .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding: 181px 20px 83px;
  }

  .intro-hero .content-left {
    padding-right: 20px;
  }

  .intro-hero .content-left p {
    max-width: 697px;
    margin: 4px 0 30px;
    font-size: 18px;
    line-height: 155.455%;
    text-align: left;
  }

  .intro-hero .content-right {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 0;
    padding: 32px 28px 34px;
    border-radius: 20px;
    background: #000;
  }

  .intro-hero .content-right::before {
    position: absolute;
    left: -8px;
    bottom: 5px;
    width: 27.927px;
    height: 59.011px;
    content: '';
  }

  .intro-hero .content-right p {
    max-width: 445px;
    margin: 4px 0 0;
    text-align: left;
  }

  .swiper-intro {
    min-height: 522px;
  }

  .swiper-intro .carousel-item-text-bottom {
    padding-bottom: 7px;
  }

  .bottom-section .content-wrapper {
    justify-content: flex-end;
  }

  .footer {
    padding: 0;
  }

  .footer .content-wrapper {
    max-width: 1720px;
    padding: 70px 20px 0;
    align-items: flex-start;
  }

  .footer-line .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1720px;
    margin: 0 auto;
    padding: 16px 20px;
  }

  .footer-line-left {
    flex-direction: row;
  }

  .footer-line-left ul li {
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1100px) {
  .site-header .header-inner nav ul li ul.header-menu-inner {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .opening-section .dude-img img {
    right: 0%;
  }
}

@media only screen and (max-width: 1800px) {
  .footer-fire {
    right: -3vw;
  }
}

@media only screen and (max-width: 1730px) {
  .opening-section .dude-img {
    transform: translateX(0);
    bottom: 0;
    top: unset;
  }
}

@media only screen and (max-width: 1400px) {
  .opening-section .dude-img img {
    transform: translateX(20%);
  }
}

@media only screen and (max-width: 1324px) {
  .bottom-section .bottom-characters {
    left: -13%;
  }
}

@media only screen and (max-width: 1250px) {
  .site-header .header-inner nav ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .opening-section .dude-img img {
    transform: translateX(25%);
  }
}

@media only screen and (max-width: 1175px) {
  .bottom-section .bottom-characters {
    left: -19%;
  }
}

@media only screen and (max-width: 1150px) {
  .opening-section .dude-img img {
    transform: translateX(50%);
  }
}

@media only screen and (max-width: 1100px) {
  .site-header .hamburger-menu-button {
    display: block;
  }

  .submenu-icon {
    display: flex;
  }

  .site-header .header-inner .action-items {
    width: fit-content;
    margin: auto auto 10vh;
    display: flex;
    gap: 8px;
  }

  .site-header .header-inner nav .header-menu {
    position: absolute;
    left: 0;
    top: 75px;
    margin: 0;
    flex-direction: column;
    background-color: #202020;
    text-align: center;
    width: 100%;
    overflow: overlay;
    height: 100vh;
    padding-top: 21px;
    padding-bottom: 64px;
    gap: 0;
    flex-grow: 1;
  }

  .site-header .header-menu-inner {
    background: #000;
  }

  .site-header .header-inner nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity .3s ease-out;
    animation: quick-hide-mobile-menu .2s 1;
  }

  .site-header .header-inner nav ul li {
    margin-left: unset;
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    margin: 0;
    flex-direction: column;
  }

  .site-header .header-inner nav ul li a {
    display: flex;
    align-items: center;
  }

  .site-header .header-inner nav ul li a.download-btn {
    max-width: 224px;
  }

@keyframes quick-hide-mobile-menu {
    0% {
      opacity: 0;
    }

    to {
      opacity: 0;
    }
}

  .site-header .header-inner nav.is-open {
    opacity: 1;
  }

  .site-header .header-inner nav:not(.is-open) {
    pointer-events: none;
  }

  .site-header .header-inner nav ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #808080;
  }

  .site-header .header-inner nav ul::-webkit-scrollbar-thumb {
    border-width: 0;
    background-color: #808080;
    background-clip: padding-box;
  }

  .opening-section .dude-img img {
    transform: translateX(50%);
  }
}

@media only screen and (max-width: 1024px) {
  .download-buttons-mob {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .heading-first {
    max-width: 332px;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
  }

  .heading-second {
    font-size: 32px;
  }

  .heading-third {
    font-size: 32px;
    font-weight: 700;
    line-height: 125%;
    text-align: center;
  }

  .download-btn {
    width: 210px;
    margin: 0px auto;
    padding: 8px;
    font-size: 16px;
  }

  .download-btn .desktop {
    display: none;
  }

  .download-buttons {
    display: none;
  }

  .cf-forge-mob {
    display: flex;
    margin: 39px auto 0;
  }

  .item-text {
    font-size: 12px;
  }

  .to-top {
    margin: 13px auto 0;
    font-size: 16px;
  }

  .to-top-section .content-wrapper {
    padding-top: 0;
  }

  header.fixed.desktop {
    display: none;
  }

  header.fixed.mob {
    display: flex;
  }

  header .download-buttons {
    flex-direction: column;
  }

  header .download-buttons.desktop {
    display: none;
  }

  header {
    display: none;
  }

  .header-link {
    margin-left: 0;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 28px;
    opacity: 1;
  }

  .opening-section {
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: unset;
    width: 100%;
    padding: 0;
    background-attachment: unset;
    height: unset;
    background: none;
  }

  .opening-section .intro-text-container {
    max-width: 370px;
    padding: 0 20px;
  }

  .opening-section .intro-text-container .opening-sims-logo {
    display: flex;
    width: 206px;
    height: auto;
    margin: 12px auto;
  }

  .opening-section .intro-text-container .opening-sims-logo svg {
    width: auto;
    height: auto;
  }

  .opening-section .intro-text-container .heading-first {
    margin-top: 7px;
  }

  .opening-section .intro-text-container p.txt {
    margin: 8px auto 25px;
    max-width: 355px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
  }

  .opening-section .intro-text-content {
    display: flex;
    flex-direction: column;
    padding-top: 53px;
  }

  .opening-section .dude-img {
    right: unset;
    position: relative;
    bottom: unset;
    left: unset;
    top: unset;
    width: 100%;
    max-width: 100%;
    height: unset;
    transform: translateX(0);
    overflow: hidden;
  }

  .opening-section .dude-img img {
    position: relative;
    height: auto;
    right: unset;
    bottom: unset;
    margin-top: 0;
    width: 100%;
    z-index: 1;
    transform: translateX(0%);
  }

  .opening-section .dude-img.desktop {
    display: none;
  }

  .opening-section .dude-img.mob {
    display: flex;
    margin-bottom: 0;
    transform: translate(0px, 0px);
  }

  .opening-section .shadow-bg img {
    min-width: 1920px;
  }

  .txt-decorated {
    margin-top: 47px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2.6px;
  }

  .opening-section .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .opening-section .download-buttons div:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }

  .opening-section .download-btn {
    display: flex;
  }

  .features-section {
    margin-top: 0px;
    padding: 0;
  }

  .features-section .heading-third {
    padding: 64px 5px 0;
  }

  .features-section .content-wrapper {
    padding: 0;
  }

  .features-section .carousel-item {
    display: flex;
    align-items: stretch;
    min-height: 530px;
    margin: 25px 0px 64px;
    padding: 16px 16px 13px;
  }

  .features-section .carousel-item-text-small {
    margin: 2px auto 11px;
  }

  .features-section .carousel-item-img {
    height: 240px;
    min-height: 240px;
    overflow: hidden;
  }

  .features-section .carousel-item-text {
    padding: 0;
    align-items: flex-start;
  }

  .features-section .carousel-item-title {
    padding: 17px 0 0px;
    font-size: 18px;
    line-height: 136%;
  }

  .features-section .carousel-item-description {
    max-width: 280px;
    min-height: unset;
    padding-bottom: 4px;
  }

  .features-section .carousel-item .decorated-text.mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 19px;
    margin-bottom: 12px;
    height: 23px;
    padding: 3px 12px;
  }

  .features-row:first-of-type {
    margin-top: -14px;
    z-index: 4;
  }

  .features-row:first-of-type .heading-third {
    padding-top: 71px;
  }

  .features-row:last-of-type .carousel-item {
    margin: 31px 0px 64px;
  }

  .features-row.gradient .carousel-item {
    margin: 30px 0px 66px;
  }

  .intro-section {
    background: #202020;
  }

  .intro-section .heading-four {
    text-align: center;
  }

  .intro-hero .heading-second {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
  }

  .intro-hero-img {
    min-width: 140px;
    width: 140px;
    height: 140px;
    margin: 35px auto 5px;
    margin-right: auto;
  }

  .intro-hero-text {
    padding-top: 24px;
    text-align: center;
  }

  .intro-hero-text p {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .intro-details .content-wrapper {
    padding: 5px 0px;
  }

  .intro-details .content-wrapper-inner {
    padding: 0;
  }

  .intro-details .heading-third {
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }

  .swiper-intro .carousel-item {
    display: flex;
    margin: 31px 0px 17px;
    padding: 16px 16px 22px;
  }

  .swiper-intro .carousel-item-text-small {
    margin: 0px auto 11px;
  }

  .swiper-intro .carousel-item-img {
    height: 240px;
    min-height: 240px;
    overflow: hidden;
  }

  .swiper-intro .carousel-item-text {
    padding: 0;
    align-items: flex-start;
  }

  .swiper-intro .carousel-item-title {
    padding: 20px 0 0px;
    font-size: 18px;
    line-height: 136%;
  }

  .swiper-intro .carousel-item-description {
    min-height: unset;
    padding-bottom: 4px;
  }

  .swiper-intro .carousel-item-description {
    max-width: 267px;
  }

  .swiper-intro .carousel-item .decorated-text.mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 19px;
    margin-bottom: 12px;
    height: 23px;
    padding: 3px 12px;
  }

  .subscribe-section {
    background: #101010 url("./../images/WhyCFbg-mob.webp") no-repeat 50% 50%;
    background-size: cover;
  }

  .subscribe-section .heading-second {
    font-size: 32px;
  }

  .subscribe-section .content-wrapper {
    padding: 81px 20px 167px;
  }

  .subscribe-section .main-text {
    font-size: 15px;
    margin: 12px auto 35px;
  }

  .subscr-alarm {
    width: 126px;
    height: 108.811px;
    margin-bottom: 38px;
  }

  .bottom-section {
    margin: 0 auto;
    padding: 5px 0 0;
    overflow: hidden;
    margin: 0;
    background-size: cover;
  }

  .bottom-section .heading-third {
    margin-bottom: 24px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.16px;
  }

  .bottom-section .heading-third br {
    display: flex;
  }

  .bottom-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 76px 20px 0;
    background-size: cover;
  }

  .bottom-section .content-wrapper-inner {
    align-items: center;
  }

  .bottom-section .bottom-characters {
    display: none;
  }

  .bottom-section .heading-second {
    text-align: center;
  }

  .bottom-section .download-btn {
    height: 56px;
  }

  .bottom-section .download-buttons {
    margin: 40px 0 0;
  }

  .bottom-character-mob {
    display: flex;
    width: 100%;
    margin-top: -7px;
  }

  .download-btn {
    display: none;
  }

  .download-buttons-mob .download-btn {
    display: flex;
  }

  .btn-divider.hero,
  .btn-divider.bottom {
    width: 256px;
    margin: 7px 16px;
  }

  .btn-divider.hero span,
  .btn-divider.bottom span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }

  .btn-divider.hero.desktop,
  .btn-divider.bottom.desktop {
    display: none;
  }

  .btn-divider.hero.mob,
  .btn-divider.bottom.mob {
    display: flex;
    z-index: 3;
  }

  .footer-line {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    align-items: center;
    margin: 0 auto 8px;
  }

  .footer-col p {
    margin-top: 30px;
    text-align: center;
  }

  .footer-fire {
    display: none;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-socials {
    margin-top: 44px;
    justify-content: center;
    margin: 29px auto 6px;
  }

  .footer-line ul.mob-only {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 16px 16px;
  }

  .footer-line ul.mob-only li {
    margin: 0 4px;
  }

  .footer-line ul.desktop-only {
    display: none;
  }

  .footer-socials-item {
    margin-left: unset;
    margin: 0 10px;
  }

  .footer-socials-item:first-of-type {
    order: 1;
  }

  .footer-socials-item:nth-of-type(2) {
    order: 3;
  }

  .footer-socials-item:last-of-type {
    order: 2;
  }
}

@media only screen and (max-width: 900px) {
  .features-section .carousel-item-description br {
    display: none;
  }
}

@media only screen and (max-width: 899px) {
  .features-section .swiper-wrapper {
    display: flex;
    grid-gap: unset;
  }

  .swiper-intro .swiper-wrapper {
    display: flex;
    grid-gap: unset;
  }
}

@media only screen and (max-width: 768px) {
  .intro-section br {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .features-section .carousel-item {
    max-width: 308px;
    min-width: 308px;
    max-height: 530px;
    width: 308px;
    height: 530px;
  }

  .features-section .carousel-item-description {
    max-width: 243px;
  }

  .swiper-intro .carousel-item {
    max-width: 308px;
    min-width: 308px;
    max-height: 530px;
    width: 270px;
    height: 530px;
  }
}

@media only screen and (max-width: 370px) {
  .intro-section .content-right.mob {
    padding: 12px 24px 48px;
  }
}

@media only screen and (max-width: 359px) {
  .intro-hero .heading-second {
    font-size: 28px;
  }
}

@media only screen and (max-width: 350px) {
  .features-section .carousel-item {
    max-width: 280px;
    min-width: 280px;
    height: auto;
  }

  .swiper-intro .carousel-item {
    max-width: 280px;
    min-width: 280px;
  }
}

@media only screen and (max-width: 1260px) and (min-width: 1024px) {
  .bottom-section {
    background-size: cover;
  }
}