@font-face {
  font-family: "Roboto-400";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Roboto-500";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "Roboto-600";
  src: url("../fonts/Roboto/Roboto-Semibold.ttf") format("ttf");
}
@font-face {
  font-family: "Roboto-700";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Open-Sans-400";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Open-Sans-700";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("ttf");
}
::-webkit-scrollbar {
  width: 0.5rem;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
}
:root {
  --decor-bold: "Open-Sans-700";
  --decor-reg: "Open-Sans-400";
  --normal-bold: "Roboto-700";
  --normal-semibold: "Roboto-600";
  --normal-medium: "Roboto-500";
  --normal-reg: "Roboto-400";

  --orange: #ff5a00;
  --black: #020105;
  --blue: #080038;
  --border: #d6d6d7;
}
html {
  scroll-behavior: smooth;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:active,
:focus {
  outline: none;
}
a:active,
a:focus {
  outline: none;
}
aside,
footer,
header,
nav {
  display: block;
}
body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
button,
input,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
p,
ul,
li {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--normal-reg);
}
.nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: transparent;
  padding: 20px 0 20px 0;
  transition: 0.3s;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}
.nav__top,
.nav__bottom,
.nav__links ul,
.nav__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand img {
  width: 190px;
  object-fit: contain;
}
.nav__info {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__num a {
  font-family: var(--normal-medium);
  gap: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: black;
  transition: 0.3s;
}
.nav__num a:hover {
  color: #ff5a00;
}
.nav__links ul {
  gap: 80px;
}
.nav__links li {
  position: relative;
}
.nav__link {
  font-family: var(--normal-medium);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: black;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.nav__link:hover {
  color: var(--orange);
}
.nav__link::after {
  width: 10px;
  height: 10px;
  background: var(--orange);
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.nav__lang {
  position: relative;
  cursor: pointer;
}
.current__lang {
  background: #f5f5f7;
  border-radius: 4px;
  padding: 10px 20px;
}
.current__lang,
.next__lang a {
  font-family: var(--normal-medium);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: black;
}
.drop__link:first-child {
  padding-top: 0;
}
.drop__link {
  padding: 1rem 0;
}
.next__lang {
  display: block;
  position: absolute;
  right: 0;
  top: 48px;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
  transition: 0.3s;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  text-align: center;
}
.drop-btn:hover .next__lang {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.menu__drop {
  right: -14px;
  top: 48px;
  min-width: 180px;
}
.next__lang::after {
  width: 1rem;
  height: 1rem;
  content: "";
  background: white;
  position: absolute;
  top: -0.4rem;
  transform: rotate(45deg);
  right: 24px;
  border-radius: 2px;
}
.next__lang a {
  color: black;
  transition: 0.3s;
}
.next__lang a:hover {
  color: var(--purple);
}
.drop__link {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: block;
  width: 100%;
}
.drop__link:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.nav__search {
  display: flex;
  align-items: center;
}
.rotater i {
  transition: 0.3s;
}
.rotater:hover i {
  transform: rotate(180deg);
}
.mobile {
  display: none;
}

.home__slide {
  height: 90vh !important;
  background: url(../img/home.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home__content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home__title {
  font-family: "Open-Sans-700";
  font-weight: 600;
  font-size: 96px;
  line-height: 96px;
  color: #ffffff;
  margin-bottom: 40px;
}
.home__sub {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: white;
  max-width: 50%;
  margin-bottom: 24px;
}
.home__btn {
  width: 233px;
  height: 233px;
  color: white;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid #ffffff;
  backdrop-filter: blur(33px);
  border: 1px solid white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  position: relative;
  overflow: hidden;
}
.home__btn::after {
  background: var(--orange);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.home__btn:hover {
  color: white;
}
.home__btn:hover.home__btn::after {
  transform: scale(1);
}
.home__btn p {
  position: relative;
  z-index: 9;
}
.home__slide::after {
  /* background: #012964; */
  opacity: 0.35;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
}
.container {
  max-width: 1440px;
  padding: 0;
}
.next__btn {
  right: 40px;
}
.prev__btn {
  left: 40px;
}
.next__btn::after,
.prev__btn::after {
  color: white;
  font-size: 20px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 50%;
}
.about {
  padding: 114px 0 60px 0;
  overflow: hidden;
}
.section__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
}
.about__title {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 32px;
}
.about__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.orange__txt {
  color: var(--orange);
}
.about__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 1rem;
  display: block;
  max-width: 90%;
}
.about__items {
  gap: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about__num {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #010036;
}
.about__sub {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.7;
}
.about__pic {
  width: 100%;
  height: 466px;
  object-fit: cover;
  border-radius: 2px;
}
.services {
  padding: 60px 0 120px 0;
}
.services__title {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 32px;
}
.service__item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 45% 55%;
}
.serv__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 1rem;
}
.serv__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 90%;
  display: block;
  margin-bottom: 1rem;
}
.serv__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .serv__cont ul {
  padding-left: 1rem;
  list-style: disc !important;
} */
.serv__cont li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 90%;
  display: block;
}
.banner {
  background: var(--blue);
  color: white;
  position: relative;
  padding: 98px 0;
}
.banner__pic {
  width: 614px;
  height: 614px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner__left {
  width: 50%;
}
.flexer {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 90%;
}
.banner__sup {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--orange);
  margin-bottom: 24px;
}
.banner__title {
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 24px;
}
.banner__sub {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}
.banner__btn {
  width: 322px;
  padding: 14px 0;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s;
}
.banner__btn:hover {
  background: white;
  color: var(--orange);
}

.about__btn:hover {
  background: var(--blue);
}
.about__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px;
}
.about__btn {
  width: 100%;
}
.form {
  padding: 120px 0 60px 0;
}
.contact__form {
  padding: 88px;
  background: #f5f5f7;
  border-radius: 2px;
  background-image: url(../img/form.png);
  background-size: 100%;
}
.form__title {
  font-family: var(--normal-medium);
  color: black;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
}
.form__input {
  background: #f5f5f7;
  border: 1px solid #dcd9ee;
  border-radius: 2px;
  padding: 12px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #8b8b8b;
}
.form__flexer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 24px;
}
#file {
  display: none;
}
.file__label {
  font-size: 32px;
  cursor: pointer;
  background: #f5f5f7;
  border: 1px solid #dcd9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 1rem;
}
.file__label i {
  transform: rotate(-45deg);
  color: #080038;
}
.form__flexer-2 {
  display: flex;
}
.form__btn {
  width: 100%;
  background: var(--blue);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: white;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  transition: 0.3s;
  border-radius: 4px;
}

.form__btn:hover {
  background: var(--orange);
}
.contacts {
  padding: 60px 0 120px 0;
}
.contact__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.con__title,
.details__title {
  font-family: var(--normal-medium);
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  color: var(--orange);
  margin-bottom: 48px;
}
.contacts__items-wrap {
  display: flex;
  flex-direction: column;
}
.con__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: black;
  font-weight: 500;
  font-family: var(--normal-medium);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.details__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.details__question {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #575757;
}
.details__answer {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-family: var(--normal-medium);
}
.footer {
  background: #f5f5f7;
  padding: 40px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 30% 20% 25% 25%;
  margin-bottom: 94px;
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #d6d6d7;
}
.footer__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
  max-width: 80%;
}
.footer__socs p {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 12px;
}
.soc__item {
  font-size: 24px;
  color: black;
  margin-right: 12px;
}
.ul__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  font-family: var(--normal-medium);
  margin-bottom: 24px;
}
.footer__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #020105;
  margin-bottom: 1rem;
  display: block;
  transition: 0.3s;
}
.con__item i {
  font-size: 20px;
}
.footer__col .con__item {
  font-family: var(--normal-reg);
  transition: 0.3s;
}
.footer__col form {
  display: flex;
  flex-direction: column;
}
.footer__input {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  background: transparent;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.footer__btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  background: #ff5a00;
  border-radius: 4px;
  color: white;
  padding: 1rem 0;
  margin-bottom: 24px;
}
.footer__info {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.mobile__links {
  padding: 16px 0;
}
.active__ul {
  display: flex;
  flex-direction: column;
}
.mobile__link {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: transparent;
  width: 100%;
}
.mobile__link:hover {
  color: white;
}
.active__ul li:last-child .mobile__link {
  border-bottom: none;
}
.mobile__num a {
  margin-bottom: 32px;
  color: var(--blue);
}
.mobile__lang select,
.mobile__lang option {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.mobile {
  display: none;
  transition: 0.3s;
}
.burger__btn {
  padding: 10px 0;
  background: transparent;
}
.stick {
  width: 30px;
  height: 2px;
  background: var(--blue);
  position: relative;
  transition: 0.5s;
}
.stick::after {
  width: 30px;
  height: 2px;
  background: var(--blue);
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transition: 0.3s;
}
.stick::before {
  width: 30px;
  height: 2px;
  background: var(--blue);
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  transition: 0.3s;
}
.mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  position: fixed;
  width: 100%;
  background: white;
  z-index: 9;
  top: 0;
  left: 0;
}
.mobile__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.mobile__search {
  background: transparent;
  font-size: 24px;
  color: white;
  display: flex;
  align-items: center;
}
.mobile__search i {
  transform: translateY(2px);
}
.mobile__bottom {
  position: fixed;
  width: 80%;
  height: 100%;
  z-index: 9;
  transition: 0.7s;
  transform: translateX(-100%);
  background: white;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.show-menu {
  transform: translateY(0);
}
.mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.mobile__pic {
  width: 100px;
}
.x__japan {
  font-size: 40px;
  background: transparent;
  color: white;
}
.mobile__wrapper {
  background: var(--blue);
  padding: 12px;
  height: 75%;
  position: relative;
}
.ul__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: white;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}
.mobile__langs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  padding: 0 1rem;
}
.mobile__lang a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: white;
}
.mobile__lang-active a {
  text-decoration: underline;
}
.second__wrapper {
  padding: 0 12px;
}
.mobile__reg button {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  text-transform: uppercase;
  margin: 56px 0 48px 0;
}
.mobile__num a {
  align-items: center;
  justify-content: center;
}
.active__ul .ul__title {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1320px;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .nav {
    display: none;
  }
  .mobile {
    display: block;
  }
  .container {
    max-width: 540px;
  }
  .home__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 1rem;
  }
  .home__sub {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .home__content {
    flex-direction: column;
  }
  .home__right {
    width: 100%;
    padding-top: 56px;
  }
  .home__btn {
    width: 100%;
    height: initial;
    padding: 10px 0;
    background: var(--orange);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
  }
  .home__slide {
    display: flex;
    align-items: flex-end;
    padding-bottom: 56px;
  }
  .prev__btn,
  .next__btn {
    display: none;
  }
  .about__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .section__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
  }
  .about__title,
  .services__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .about__txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0.5rem;
  }
  .about__num {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
  }
  .about__sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
  .about__items {
    gap: 1rem;
  }
  .banner__btn {
    margin-top: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
  }
  .about__pic,
  .serv__pic {
    height: 242px;
  }
  .service__item {
    padding: 1rem 0 32px 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .service__item:last-child {
    padding-bottom: 0;
  }
  .about {
    padding: 80px 0 40px 0;
  }
  .services {
    padding: 40px 0 32px 0;
  }
  .banner {
    padding: 32px 0;
  }
  .flexer {
    flex-direction: column;
  }
  .banner__pic {
    position: static;
    transform: translateY(0);
    margin-top: 32px;
    height: 332px;
    width: 100%;
  }
  .banner__left {
    width: 100%;
  }
  .banner__sup {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
  }
  .banner__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 1rem;
    max-width: 70%;
  }
  .banner__sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
  .banner__btn {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
  }
  .contact__form {
    padding: 32px 1rem;
  }
  .form__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .form__flexer,
  .form__flexer-2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .file__label {
    width: 100%;
    border-radius: 0;
    margin: 1rem 0 0 0;
  }
  .footer__btn {
    margin-top: 1rem;
  }
  .contact__items {
    gap: 80px;
    grid-template-columns: repeat(1, 1fr);
  }
  .con__title,
  .details__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .con__item {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1rem;
  }
  .details__question {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
  .details__answer {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    max-width: 50%;
    text-align: end;
  }
  .details__item {
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
  }
  .map iframe {
    height: 242px !important;
  }
  .contacts {
    padding: 0 0 80px 0;
  }
  .footer__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .footer__btn {
    margin-top: 0;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media screen and (max-width: 546px) {
  .container {
    max-width: 100%;
  }
  .row {
    padding: 0 0.5rem !important;
  }
}
