
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", 'Roboto', "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Noto Serif', serif;
}

/* Colors */
:root {
  --color-default: #303030;
  --color-default-light: #3030308a;
  --color-primary: #0060a9;
  --color-secondary: #00bce7;
  --color-optional: #043673;
  --color-optional-dark: #00b48d;
  --color-white: #ffffff;
  --color-grey: #eee;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-primary);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

strong {
  font-weight: 700;
}

.white {
  color: var(--color-white);
}

.btn {
  font-size: 14px;
  font-family: var(--font-primary);
  line-height: 48px;
  font-weight: 700;
  padding: 0px 38px;
  transition: all 300ms linear 0s;
  text-transform: uppercase;
  border-radius: 0;
}

.btn.btn-primary {
  background: var(--color-secondary);
  border: 1 solid var(--color-secondary);
  color: var(--color-white);
}

.btn.btn-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-secondary {
  background: var(--color-optional-dark);
  border: 1 solid var(--color-optional-dark);
  color: var(--color-white);
}

.btn.btn-secondary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 70px 0 30px;
}

section#survey {
  padding: 0 0 70px;
}

.section-bg {
  background-color: var(--color-grey);
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: var(--color-optional);
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.section-header h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0;
  color: var(--color-default);
  font-family: var(--font-primary);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.section-header p span {
  color: var(--color-primary);
}

@media (max-width: 420px) {
  .section-header p {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 0;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: var(--color-white);
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid var(--color-white);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: var(--color-white);
}

.header .logo img {
  max-height: 45px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-default);
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-default);
    font-weight: 300;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-default)
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 300;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1200px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-family: var(--font-primary);
    border-bottom: 2px solid var(--color-white);
    font-size: 16px;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 700;
  }

  .navbar .active,
  .navbar .active:focus {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 10px rgba(127, 137, 161, 0.25);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-default);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-show:hover {
    color: var(--color-primary);
  }

  .mobile-nav-hide {
    color: var(--color-default-light);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-hide:hover {
    transform: rotate(180deg);
    color: var(--color-default);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Text-image Section
--------------------------------------------------------------*/
.text-image .one-img {
  min-height: 350px;
  background-image: url(../img/hotelga/section-one.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.text-image .two-img {
  min-height: 350px;
  background-image: url(../img/hotelga/section-two.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.text-image .six-img {
  min-height: 400px;
  background-image: url(../img/hotelga/section-six.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.text-image h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.text-image .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: var(--color-white);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.text-image .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.text-image .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.text-image .content ul {
  list-style: none;
  padding: 0;
}

.text-image .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.text-image .content ul i {
  position: absolute;
  font-size: 16px;
  left: 0;
  color: var(--color-optional);
}

.text-image .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) { 
  .text-image .one-img {
    background-position: 40% 0;
  }
  .text-image .two-img {
    background-position: 93% center;
  }   
}

@media (max-width: 767px) {
  .text-image .one-img {
    background-position: 40% 30%;
  }
}

@media (max-width: 420px) {
  .text-image .content ul i {
    display: none;
  }
  .text-image .content.product-info ul li {
    padding: 0 26px 8px;
  }
}

/*--------------------------------------------------------------
# Tools Section
--------------------------------------------------------------*/
.tools .tools-box {
  padding: 30px;
  background: var(--color-primary);
  color: var(--color-white);
}

.tools h4 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.tools .tools-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.tools .tools-box h4 {
  margin-top: 1rem;
}

.tools .tools-box .more-btn i {
  font-size: 14px;
}

.tools .tools-box .more-btn:hover {
  color: var(--color-primary);
  background: var(--color-white);
}

.tools .tools-box.background-light {
  background: #34b4d024;
  color: var(--color-optional);
}

.tools .icon-box {
  text-align: center;
  background: var(--color-grey);
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary);
  transition: 0.3s;
}

.tools .icon-box i {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 35px;
  background: var(--color-optional);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.tools .icon-box p {
  font-size: 15px;
  color: var(--color-default);
}

@media (min-width: 1200px) {
  .tools .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(var(--color-primary),var(--color-secondary),var(--color-optional-dark)), center center;
  background-size: cover;
  padding: 75px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--color-white);
  text-align: center;
  line-height: 3.5rem;
}

.stats-counter .stats-header p span {
  color: var(--color-optional);
}

.stats-counter .stats-item {
  padding: 20px;
}

@media (max-width: 991px) {
  .stats-counter .stats-item {
    padding-bottom: 0;
  }
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.2em;
}

.stats-counter .stats-item span.stats-item-text {
  font-size: 20px;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.stats-counter .stats-item p.mini {
  font-size: 10px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-secondary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--color-white);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-optional);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .container-fluid {
  padding: 0;
}

.products .product-item {
  background-size: cover;
  background-position: center;
  min-height: 450px;
  padding: 30px;
}

.product-info {
  padding-left: 20%;
}

@media (max-width: 575px) {
  .products .product-item {
    min-height: 350px;
  }
}

@media (max-width: 420px) {
  .product-info {
    padding-left: 0;
  }
}


.products .product-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.products .product-item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.products .product-item h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-white);
  position: relative;
  border-bottom: 2px solid var(--color-primary);
}

@media (min-width: 1200px) {
  .products .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.products .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.products .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.products .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Tags Section
--------------------------------------------------------------*/
.tags .tag-name {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
  transition: 0.3s;

}

.tags .tag-name .tag-name-img {
  position: relative;
  overflow: hidden;
}

.tags .tag-name .tag-name-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/automechanika/tags/tag-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.tags .tag-name .tag-info {
  padding: 20px 15px;
  background: var(--color-white);
}

.tags .tag-name .tag-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-optional-dark);
}

.tags .tag-name .tag-info p {
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: var(--color-default-light);
}

.tags .tag-name:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.30);
}

/*--------------------------------------------------------------
# Survey Section
--------------------------------------------------------------*/
.survey .container-fluid {
  padding: 0;
}

@media (min-width: 1200px) {
  .survey .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.survey .swiper-pagination {
  position: relative;
  top: -20px;
}

.survey .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.survey .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  min-height: 60vh;
  padding: 6.68% 0 39% 0;
  background-image: url(../img/hotelga/hero-img.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  align-items: center;
}

.hero .cube-communication {
  margin-top: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  height: auto;
}

.hero h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero p.communication {
  font-weight: 300;
  font-size: 28px;
  color: var(--color-primary);
  font-family: var(--font-primary);
  padding-bottom: 3rem;
}

.hero .cube-product {
  background-color: var(--color-secondary);
  padding-bottom: 2rem;
}

.hero p {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-white);
}

.hero p.venue {
  font-size: 14px;
  font-weight: 400;;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-secondary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: var(--color-primary);
}

@media (max-width: 991px) { 
  .hero {
    align-items: start;
    padding-top: 9%;
  }
  .hero .container .row {
    bottom: -25rem;
  }
  .hero .cube-product {
    padding-bottom: 3rem;
  }
  .hero p {
    font-size: 20px;
  }
  .hero p.venue {
    font-size: 16px;
  }
  br.hide {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 37px;
  }
  .hero p.communication {
    font-size: 25px;
  }
}

@media (max-width: 640px) {
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 575px) { 
  .hero .container .row {
    justify-content: center !important;
    top: 20px;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero p.communication {
    font-size: 20px;
    padding-bottom: 0;
  }
  .hero p {
    font-size: 16px;
  }
  .hero p.venue {
    font-size: 13px;
  }
}

@media (max-width: 450px) {
  .hero h2 {
    font-size: 19px;
    word-break: break-word;
  }
  .hero p.communication {
    font-size: 18px;
  }
  .hero .cube-product {
    padding-bottom: 1rem;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 60vh;
  }
  .hero .container .row {
    top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #eee;
  padding: 50px 0;
  color: var(--color-default);
}

.footer h4 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  color: var(--color-primary);
}

.footer .social-links a {
  width: 30px;
  font-size: 22px;
  color: var(--color-default-light);
  margin-bottom: 13px;
  transition: 0.3s;
}

.footer .social-links a:hover, .footer .links a:hover {
  color: var(--color-secondary);
}

.footer .links a {
  color: var(--color-default-light);
  margin-bottom: 13px;
  transition: 0.3s;
}

.footer .links a img {
  padding-top: 10px;
  width: 80%;
}

@media (max-width: 991px) {
  .footer .links a img {
    width: 40%;
  }
  .footer .social-links a {
    margin-right: 1rem;
  }
}

@media (max-width: 575px) {
  .footer .row {
    padding-left: 2rem;
  }
  .footer .links a img {
    width: 60%;
  }
}

@media (max-width: 320px) {
  .footer .links, .footer .social {
    width: 100%;
  }

  .footer .row {
    padding: 1rem;
  }
}