@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
body {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

img {
  max-width: 100%;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 1250px) {
  .container {
    max-width: 1193px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-bottom: 10px;
  background-color: #fff;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}
header.with-shadow {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  header {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  }
}
header .con {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .con .logos {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-bottom: 5px;
}
header .con .logos .logo a {
  display: block;
}
header .con .logos .logo a img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1140px) {
  header .con .logos .slogan {
    display: none;
  }
}
header .con .logos .slogan img {
  display: block;
  max-width: 100%;
}
header .con .header-nav {
  flex: 1;
}
header .con .header-nav .hn-top {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 18px;
  justify-content: flex-end;
}
header .con .header-nav .hn-top .phone-block {
  display: flex;
  align-items: center;
}
header .con .header-nav .hn-top .phone-block img {
  display: block;
  margin-right: 8px;
}
header .con .header-nav .hn-top .phone-block .phone {
  font-weight: 700;
  white-space: nowrap;
}
header .con .header-nav .hn-top .logo1 img {
  display: block;
}
header .con .header-nav .hn-top .logo2 img {
  display: block;
}
header .con .header-nav .hn-top .text-block {
  font-size: 13px;
  color: #000;
}
header .con .header-nav .hn-top .text-block strong {
  font-weight: 700;
}
header .con .header-nav .hn-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .con .header-nav .hn-bottom nav {
  border: 1px solid #e3e3e3;
  height: 44px;
  display: flex;
  align-items: center;
}
header .con .header-nav .hn-bottom nav ul {
  display: flex;
  list-style: none;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
}
@media (max-width: 1140px) {
  header .con .header-nav .hn-bottom nav ul {
    -moz-column-gap: 2px;
         column-gap: 2px;
    padding-left: 2px;
    padding-right: 2px;
  }
}
header .con .header-nav .hn-bottom nav ul li a {
  font-weight: 600;
  font-size: 15px;
  padding: 9px 0px;
  color: #121212;
  display: inline-block;
  position: relative;
  transition: color 0.25s ease, transform 0.15s ease;
  will-change: transform;
}
@media (max-width: 1250px) {
  header .con .header-nav .hn-bottom nav ul li a {
    font-size: 13px;
  }
}
header .con .header-nav .hn-bottom nav ul li a:hover {
  color: #000;
}
header .con .header-nav .hn-bottom nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background: #c8172a;
  transition: width 0.25s ease;
}
header .con .header-nav .hn-bottom nav ul li a:hover::after {
  width: 100%;
}
header .con .header-nav .hn-bottom .header-search {
  display: flex;
  align-items: center;
  height: 44px;
}
header .con .header-nav .hn-bottom .header-search button.search-btn {
  border: 1px solid #e3e3e3;
  border-left: none;
  background: transparent;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .con .header-nav .hn-bottom .header-search button.search-btn img {
  display: block;
  height: 20px;
  width: 20px;
  max-width: initial;
}
header .con .header-nav .hn-bottom .header-search button.lang-btn {
  border: 1px solid #e3e3e3;
  border-left: none;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  height: 100%;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
  border-radius: 2px;
  display: flex;
  align-items: center;
}
header .con .header-nav .mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}
header .con .header-nav .mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #121212;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  header {
    padding-bottom: 0px;
  }
  header .con {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    padding-bottom: 15px;
  }
  header .con .logos {
    padding-bottom: 0;
  }
  header .con .logos .slogan {
    display: block;
  }
  header .con .header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .con .header-nav .hn-top {
    display: none;
  }
  header .con .header-nav .hn-bottom {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #111111;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 9;
  }
  header .con .header-nav .hn-bottom nav {
    border: none;
    height: auto;
    width: 100%;
  }
  header .con .header-nav .hn-bottom nav ul {
    flex-direction: column;
    row-gap: 10px;
    padding: 0;
  }
  header .con .header-nav .hn-bottom nav ul li {
    width: 100%;
  }
  header .con .header-nav .hn-bottom nav ul li a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }
  header .con .header-nav .hn-bottom nav ul li a::after {
    display: none;
  }
  header .con .header-nav .hn-bottom .header-search {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    height: auto;
    justify-content: center;
  }
  header .con .header-nav .hn-bottom .header-search button.search-btn,
  header .con .header-nav .hn-bottom .header-search button.lang-btn {
    border-left: 1px solid #e3e3e3;
    height: 44px;
  }
  header .con .header-nav .mobile-menu-btn {
    display: flex;
  }
  header.menu-open .con .header-nav .hn-bottom {
    transform: translateX(0);
  }
}

.home-slider {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  background: #fff;
  width: 100%;
  border-bottom: 5px solid #24426e;
}
.home-slider.home-slider-mobile {
  min-height: 220px;
}
@media (max-width: 992px) {
  .home-slider {
    margin-top: 60px;
  }
}
.home-slider .swiper-wrapper {
  align-items: center;
}
.home-slider img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .home-slider img {
    height: 240px;
    -o-object-fit: initial;
       object-fit: initial;
  }
}
.home-slider .swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: calc((100% - 1250px) / 2);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
  z-index: 5;
}
.home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 74px;
  height: 6px;
  border-radius: 2px;
  background: #ccc;
  opacity: 1;
  transition: background 0.3s ease;
}
.home-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0b315f;
}
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  display: none;
}
@media (max-width: 992px) {
  .home-slider .swiper-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
  }
}

@media (max-width: 1250px) {
  .home-slider .swiper-pagination {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .home-slider .swiper-pagination {
    bottom: 18px;
    left: 16px;
  }
}
.home-products {
  padding: 80px 0 40px 0;
}
.home-products .phead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 800;
  color: #24426e;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.home-products .phead::before {
  content: attr(data-text);
  position: absolute;
  font-size: 58px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #eef2f7;
  z-index: -1;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-products .plist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  justify-content: center;
}
.home-products .plist .pitem {
  position: relative;
  flex: 0 0 calc(12.5% - 9px);
  height: 203px;
  border: 1px solid #d1d1d1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.home-products .plist .pitem .pbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.home-products .plist .pitem .pbg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 66, 110, 0.85);
}
.home-products .plist .pitem .pcontent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 10px 25px 10px;
}
.home-products .plist .pitem .picon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-products .plist .pitem .picon img {
  height: 60px;
  width: auto;
  transition: filter 0.3s ease;
}
.home-products .plist .pitem .ptitle {
  text-align: center;
  color: #333;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  white-space: nowrap;
}
.home-products .plist .pitem .ptitle span {
  display: block;
  line-height: 1.1;
}
.home-products .plist .pitem .ptitle .first-word {
  font-weight: 800;
  font-size: 17px;
}
.home-products .plist .pitem .ptitle .rest {
  font-weight: 500;
  font-size: 17px;
}
.home-products .plist .pitem .pbar {
  width: 80%;
  height: 4px;
  background: #be1e2d;
  transition: background 0.3s ease;
}
.home-products .plist .pitem:hover {
  border-color: #24426e;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.home-products .plist .pitem:hover .pbg {
  opacity: 1;
}
.home-products .plist .pitem:hover .picon img {
  filter: brightness(0) invert(1);
}
.home-products .plist .pitem:hover .ptitle {
  color: #fff;
}
.home-products .plist .pitem:hover .pbar {
  background: #fff;
}

@media (max-width: 1200px) {
  .home-products .plist .pitem {
    max-width: calc(25% - 15px);
    min-width: calc(25% - 15px);
  }
}
@media (max-width: 992px) {
  .home-products {
    padding: 60px 0 30px 0;
  }
  .home-products .plist {
    gap: 10px;
  }
  .home-products .plist .pitem {
    max-width: calc(33.33% - 10px);
    min-width: calc(33.33% - 10px);
  }
  .home-products .plist .pitem .ptitle .first-word {
    font-size: 17px;
  }
  .home-products .plist .pitem .ptitle .rest {
    font-size: 15px;
  }
  .home-products .phead {
    font-size: 28px;
  }
  .home-products .phead::before {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .home-products {
    padding: 40px 0 20px 0;
  }
  .home-products .plist .pitem {
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .home-products .phead {
    font-size: 24px;
  }
  .home-products .phead::before {
    font-size: 44px;
  }
}
.home-info {
  padding: 0px 0;
  overflow: hidden;
  background: #fff;
}
.home-info .container {
  max-width: 1250px;
}
.home-info .info-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 480px;
}
.home-info .info-content {
  flex: 0 0 700px;
  z-index: 5;
  position: relative;
}
.home-info .info-title {
  font-size: 33px;
  color: #24426e;
  font-weight: 400;
  margin-bottom: 25px;
}
.home-info .info-title strong {
  display: block;
  font-weight: 900;
  font-size: 49px;
}
.home-info .info-text {
  font-size: 17px;
  color: #b1b1b1;
  line-height: 1.3;
  max-width: 500px;
  margin-bottom: 60px;
}
.home-info .info-row {
  display: flex;
  align-items: flex-end;
  gap: 23px;
}
.home-info .info-stats {
  display: flex;
  align-items: center;
}
.home-info .info-stats .stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 25px;
}
.home-info .info-stats .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, rgba(36, 66, 110, 0.8) 0%, rgba(36, 66, 110, 0) 100%);
}
.home-info .info-stats .stat-item:last-child::after {
  display: none;
}
.home-info .info-stats .stat-item:first-child {
  padding-left: 0;
}
.home-info .info-stats .stat-item .icon {
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.home-info .info-stats .stat-item .icon img {
  height: 100%;
  width: auto;
}
.home-info .info-stats .stat-item .text span {
  display: block;
  line-height: 1.3;
}
.home-info .info-stats .stat-item .text .val {
  font-weight: 900;
  color: #909090;
  font-size: 14px;
  white-space: nowrap;
}
.home-info .info-stats .stat-item .text .lab {
  font-weight: 500;
  color: #909090;
  font-size: 15px;
  white-space: nowrap;
}
.home-info .info-badge img {
  width: auto;
}
.home-info .info-map {
  position: absolute;
  top: 63%;
  right: -158px;
  transform: translateY(-50%);
  width: 60%;
  z-index: 1;
  pointer-events: none;
}
.home-info .info-map img {
  height: auto;
}
.home-info .info-map .map-pulse {
  position: absolute;
  top: 50%;
  left: 61.05%;
  width: 20px;
  height: 20px;
  background: #be1e2d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.home-info .info-map .map-pulse::before, .home-info .info-map .map-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 2.5s infinite;
  opacity: 0;
}
.home-info .info-map .map-pulse::after {
  animation-delay: 1.25s;
}

@keyframes mapPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.6;
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
@media (max-width: 1100px) {
  .home-info .info-content {
    flex: 0 0 100%;
  }
  .home-info .info-map {
    opacity: 0.2;
    right: -100px;
  }
}
@media (max-width: 992px) {
  .home-info {
    padding: 80px 0;
  }
  .home-info .info-wrapper {
    flex-wrap: wrap;
  }
  .home-info .info-content {
    flex: 0 0 100%;
    text-align: center;
  }
  .home-info .info-title {
    font-size: 34px;
  }
  .home-info .info-title strong {
    font-size: 46px;
  }
  .home-info .info-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .home-info .info-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .home-info .info-stats {
    justify-content: center;
  }
  .home-info .info-stats .stat-item {
    padding: 0 20px;
  }
  .home-info .info-map {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    opacity: 1;
    margin-top: 60px;
    pointer-events: auto;
  }
  .home-info .info-map .map-pulse {
    left: 61.7%;
  }
}
@media (max-width: 767px) {
  .home-info {
    padding: 60px 0;
  }
  .home-info .info-wrapper {
    min-height: auto;
  }
  .home-info .info-title {
    font-size: 26px;
  }
  .home-info .info-title strong {
    font-size: 32px;
  }
  .home-info .info-text {
    font-size: 15px;
  }
  .home-info .info-stats {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .home-info .info-stats .stat-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .home-info .info-stats .stat-item::after {
    display: none;
  }
  .home-info .info-stats .stat-item:last-child {
    border-bottom: none;
  }
  .home-info .info-stats .stat-item .text .val {
    font-size: 16px;
  }
  .home-info .info-stats .stat-item .text .lab {
    font-size: 14px;
  }
  .home-info .info-badge img {
    height: 70px;
  }
  .home-info .info-map {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 40px;
  }
}
.home-pages {
  padding: 0px 0;
  padding-bottom: 50px;
}
.home-pages .pages-list {
  display: flex;
  gap: 30px;
}
.home-pages .pages-list .page-item {
  flex: 1;
  position: relative;
  padding-top: 20px;
  text-decoration: none;
  display: block;
}
.home-pages .pages-list .page-item:first-child .page-decor-box {
  top: 0;
  left: -15px;
}
.home-pages .pages-list .page-item:last-child .page-decor-box {
  top: 0;
  right: -15px;
}
.home-pages .pages-list .page-item:last-child .page-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-pages .pages-list .page-item .page-decor-box {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #f0f0f0;
  z-index: 1;
}
.home-pages .pages-list .page-item .page-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
}
.home-pages .pages-list .page-item .page-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(36, 66, 110, 0.18) 0%, rgba(36, 66, 110, 0.2) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.home-pages .pages-list .page-item .page-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
}
.home-pages .pages-list .page-item:hover .page-inner::after {
  opacity: 0;
}
.home-pages .pages-list .page-item:hover .page-inner img {
  transform: scale(1.1);
}
.home-pages .pages-list .page-item .page-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  padding-bottom: 30px;
  width: 100%;
}
.home-pages .pages-list .page-item .page-title {
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1;
}
.home-pages .pages-list .page-item .page-bar {
  width: 120px;
  height: 6px;
  background: #be1e2d;
}
.home-pages .pages-list .page-item .dots-pattern {
  position: absolute;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3333333333) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 1;
}
.home-pages .pages-list .page-item:nth-child(1) .dots-pattern {
  left: 20px;
}
.home-pages .pages-list .page-item:nth-child(2) .dots-pattern {
  right: 20px;
}

@media (max-width: 992px) {
  .home-pages {
    padding: 60px 0;
  }
  .home-pages .pages-list {
    flex-direction: column;
    gap: 40px;
  }
  .home-pages .pages-list .page-item .page-title {
    font-size: 24px;
  }
  .home-pages .pages-list .page-item .page-decor-box {
    display: none;
  }
}
.home-brands {
  padding: 0px 0;
  background: #fff;
  padding-bottom: 20px;
}
.home-brands .brands-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.home-brands .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d1d1d1;
  padding: 30px;
  transition: all 0.3s ease;
}
.home-brands .brand-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-brands .brand-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: #24426e;
}
.home-brands .brands-top {
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-brands .brands-top .brand-item {
  width: 234px;
  height: 140px;
}
.home-brands .brands-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}
.home-brands .brands-list .brand-item {
  height: 140px;
}

@media (max-width: 1200px) {
  .home-brands .brands-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .home-brands {
    padding: 40px 0;
  }
  .home-brands .brands-top .brand-item {
    width: 100%;
    height: 150px;
  }
  .home-brands .brands-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .home-brands .brands-list .brand-item {
    height: 100px;
    padding: 15px;
  }
}
.footer-top {
  background-image: url("../img/footer-top-bg.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  border-top: 5px solid #f8f8f8;
  border-bottom: 5px solid #f8f8f8;
}
.footer-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.footer-top .footer-slogan img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-top {
    background-position: center;
  }
  .footer-top .container {
    justify-content: center;
  }
}
footer {
  position: relative;
  padding: 31px 0 13px;
  background-color: #fff;
  overflow: hidden;
  background-image: url("../img/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
footer .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
footer .footer-main {
  display: flex;
  justify-content: space-between;
}
footer .footer-left {
  width: 38%;
  padding-right: 40px;
}
footer .footer-left .footer-logo {
  display: block;
  margin-bottom: 40px;
}
footer .footer-left .footer-logo img {
  max-width: 280px;
  height: auto;
}
footer .footer-left .contact-info .c-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
footer .footer-left .contact-info .c-item .icon {
  width: 32px;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
footer .footer-left .contact-info .c-item .icon img {
  max-width: 100%;
  height: auto;
}
footer .footer-left .contact-info .c-item .text {
  font-size: 15px;
  line-height: 1.2;
  color: #272727;
  font-weight: 500;
}
footer .footer-left .contact-info .c-item .text strong {
  color: #002d5c;
  font-weight: 700;
}
footer .footer-left .contact-info .c-item.phone-row {
  align-items: center;
  margin-top: 30px;
}
footer .footer-left .contact-info .c-item.phone-row .icon {
  width: 40px;
}
footer .footer-left .contact-info .c-item.phone-row .text {
  display: flex;
  flex-direction: column;
}
footer .footer-left .contact-info .c-item.phone-row .text .label {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}
footer .footer-left .contact-info .c-item.phone-row .text .label strong {
  font-weight: 900;
  color: #000;
}
footer .footer-left .contact-info .c-item.phone-row .text .phone {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  text-decoration: none;
  margin-top: 5px;
}
footer .footer-divider {
  width: 1px;
  background-color: #ccc;
  margin: 0 40px;
}
footer .footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
footer .footer-right .f-col h3 {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin-bottom: 13px;
}
footer .footer-right .f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-right .f-col ul li {
  margin-bottom: 9px;
}
footer .footer-right .f-col ul li a {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  text-decoration: none;
  color: #272727;
  font-size: 16px;
  transition: color 0.25s ease;
  font-weight: 500;
  margin-left: -10px;
}
footer .footer-right .f-col ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#111, #111), linear-gradient(#111, #111);
  background-position: left top, left bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 0% 2px, 0% 2px;
  transition: background-size 0.25s ease;
  pointer-events: none;
}
footer .footer-right .f-col ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#111, #111), linear-gradient(#111, #111);
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 2px 0%, 2px 0%;
  transition: background-size 0.25s ease 0.05s;
  pointer-events: none;
}
footer .footer-right .f-col ul li a:hover {
  color: #002d5c;
}
footer .footer-right .f-col ul li a:hover::before {
  background-size: 100% 2px, 100% 2px;
}
footer .footer-right .f-col ul li a:hover::after {
  background-size: 2px 100%, 2px 100%;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
footer .footer-bottom .fb-left {
  display: flex;
  align-items: center;
}
footer .footer-bottom .fb-left img {
  margin-right: 20px;
  width: auto;
}
footer .footer-bottom .fb-left span {
  font-size: 13px;
  color: #000;
}
footer .footer-bottom .fb-left span strong {
  font-weight: 800;
}
footer .footer-bottom .fb-right a {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

@media (max-width: 1200px) {
  footer .footer-left {
    width: 45%;
    padding-right: 20px;
  }
  footer .footer-divider {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 50px 0 20px;
  }
  footer .footer-main {
    flex-direction: column;
  }
  footer .footer-left {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
  footer .footer-divider {
    display: none;
  }
  footer .footer-right {
    padding-left: 0;
    flex-wrap: wrap;
  }
  footer .footer-right .f-col {
    width: 50%;
    margin-bottom: 30px;
  }
  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-bottom .fb-left {
    flex-direction: column;
    margin-bottom: 15px;
  }
  footer .footer-bottom .fb-left img {
    margin: 0 0 15px 0;
  }
}
@media (max-width: 576px) {
  footer .footer-right .f-col {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */