@media (min-width: 1720px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    /* max-width: 1320px; */
    max-width: 1720px;
  }
}
html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: white;
  position: relative;
  color: #333333;
  scroll-behavior: smooth;
}

body {
  padding-top: 100px;
}

a {
  text-decoration: none;
  color: white;
  transition: all 0.3s linear;
}

button {
  background-color: transparent;
  border: none;
}

p {
  font-weight: 300;
  font-size: 1.25rem;
}

.bg-dark {
  background-color: #333333;
}

.c-white {
  color: #fff;
}

section,
main {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.strong {
  font-weight: 700;
}

.h3,
h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}
.h3 span,
h3 span {
  color: #ccc1ae;
}

.header-section {
  position: relative;
  width: 50vw;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
  font-family: "Lato", sans-serif;
}
.header-section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5em;
  display: initial;
  background-color: white;
  z-index: 2;
  position: relative;
  padding: 0 1em;
  font-weight: 200;
}
.header-section h3 {
  display: initial;
  background-color: white;
  z-index: 2;
  position: relative;
  padding: 0 1em;
  font-weight: 200;
}
.header-section .line {
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #333333;
}
.header-section.white h2 {
  background-color: #000000;
  color: white;
}
.header-section.white h3 {
  background-color: #000000;
  color: white;
}
.header-section.white .line {
  background-color: white;
}

.header-sub {
  height: 7vh;
  width: 100%;
  height: 21vh;
  position: relative;
  font-family: "Lato", sans-serif;
}
.header-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2;
  opacity: 0.5;
}
.header-sub img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.header-sub h1 {
  z-index: 3;
  position: relative;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 8px;
  text-align: center;
  width: 80vw;
}

.text-img .content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.text-img .content.multiple .grid-wrap {
  flex: 1;
  display: grid;
  grid-template: 1fr 1f/1fr 1fr;
  gap: 10px;
}
.text-img .content.multiple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-img .content.multiple img:nth-child(1) {
  grid-column: 1/3;
}
.text-img .content .img {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  flex: 1;
}
.text-img .content .img::before {
  display: block;
  content: "";
  padding-top: 107%;
  transition: all 0.4s ease-in-out;
}
.text-img .content .img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.text-img .content .text {
  flex: 1;
  padding-right: 8rem;
}
.text-img .content .text p {
  margin-bottom: 1.5em;
}

.swiper-realization {
  overflow: hidden;
  position: relative;
}
.swiper-realization .swiper-slide {
  height: auto;
  position: relative;
}
.swiper-realization .swiper-slide .item {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.swiper-realization .swiper-slide .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-realization .swiper-slide .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.swiper-realization .swiper-slide .item:hover::before {
  opacity: 0.1;
}
.swiper-realization .swiper-slide h4 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  z-index: 4;
}

.realization-slider .container {
  position: relative;
}

.s-nav {
  color: white;
  transition: all 0.3s linear;
}
.s-nav:hover {
  color: #ccc1ae;
}
.s-nav.swiper-button-next {
  top: 60%;
  right: -5%;
}
.s-nav.swiper-button-next::after {
  font-size: 2rem;
}
.s-nav.swiper-button-prev {
  top: 60%;
  left: -5%;
}
.s-nav.swiper-button-prev::after {
  font-size: 2rem;
}

/*RWD*/
@media only screen and (max-width: 1720px) {
  .s-nav.swiper-button-next {
    right: -2%;
  }
  .s-nav.swiper-button-prev {
    left: -2%;
  }
}
@media only screen and (max-width: 1399.98px) {
  .header-section h2 {
    font-size: 3rem;
  }
  .h3, h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  body {
    padding-top: 70px;
  }
  .header-section {
    margin-bottom: 3rem;
  }
  .header-section h2 {
    font-size: 2.2rem;
  }
  section,
  main {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .h3,
  h3 {
    font-size: 1.25rem;
    margin-bottom: 1em;
  }
  .text-img .content .text {
    padding-right: 3rem;
  }
  .header-sub h1 {
    font-size: 3rem;
  }
  .realization-slider {
    padding-bottom: 7rem;
  }
  .s-nav.swiper-button-next {
    top: 120%;
    right: 30%;
  }
  .s-nav.swiper-button-next::after {
    font-size: 1.5rem;
  }
  .s-nav.swiper-button-prev {
    left: 30%;
    top: 120%;
  }
  .s-nav.swiper-button-prev::after {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .header-section h2 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1rem;
  }
  .header-sub h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .text-img .content {
    flex-direction: column-reverse;
  }
  .text-img .content .text {
    padding-right: 0;
    margin-bottom: 2em;
  }
  .h3,
  h3 {
    font-size: 1.375rem;
  }
  p {
    font-size: 0.875rem;
  }
  .header-section {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .header-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1em;
  }
  section, main {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .header-sub {
    height: 25vh;
  }
  .header-sub h1 {
    width: 90vw;
    word-break: break-word;
    font-size: 1.9rem;
  }
  section,
  main {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .header-section {
    margin-bottom: 1.5rem;
    margin: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
  .text-img .content.multiple .text {
    margin-bottom: 0;
  }
  .realization-slider {
    padding-bottom: 5rem;
  }
  .s-nav.swiper-button-next {
    top: 110%;
  }
  .s-nav.swiper-button-next::after {
    font-size: 1rem;
  }
  .s-nav.swiper-button-prev {
    top: 110%;
  }
  .s-nav.swiper-button-prev::after {
    font-size: 1rem;
  }
  .h3, h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
}
.btn-offcanvas {
  z-index: 1;
  margin: 0 2rem;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #333333;
  padding: 3px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.2s linear;
}
.btn-offcanvas .line {
  height: 2px;
  width: 100%;
  background-color: #333333;
  transition: all 0.2s linear;
}
.btn-offcanvas:hover {
  border-color: #ccc1ae;
}
.btn-offcanvas:hover .line {
  background-color: #ccc1ae;
}
.btn-offcanvas:hover .line:nth-child(1) {
  margin-right: 6px;
}
.btn-offcanvas:hover .line:nth-child(2) {
  margin-left: 3px;
}
.btn-offcanvas:hover .line:nth-child(3) {
  margin-right: 6px;
}

.link-more {
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  position: relative;
  width: auto;
  padding-left: 37px;
  transition: all 0.2s linear;
  float: left;
  font-size: 1.125rem;
}
.link-more::before {
  content: "";
  width: 27px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.2s linear;
}
.link-more::after {
  content: "";
  width: 100px;
  background-color: #fff;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 111%;
  transition: all 0.2s linear;
}
.link-more:hover {
  padding-left: 100px;
}
.link-more:hover::before {
  width: 80px;
  background-color: #ccc1ae;
}
.link-more:hover::after {
  width: 37px;
  background-color: #ccc1ae;
}
.link-more.black {
  color: #333333;
}
.link-more.black::after {
  background-color: #333333;
}
.link-more.black::before {
  background-color: #333333;
}
.link-more.primary::after {
  background-color: #ccc1ae;
}
.link-more.primary::before {
  background-color: #ccc1ae;
}
.link-more.primary:hover::after {
  background-color: white;
}
.link-more.primary:hover::before {
  background-color: white;
}

.btn.btn-submit {
  border: 1px solid #ccc1ae;
  background-color: #ccc1ae;
  color: black;
  border-radius: 0;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 0.75rem 3rem;
  transform-origin: center;
  transition: all 0.3s linear;
}
.btn.btn-submit:hover {
  padding-left: 4rem;
  padding-right: 4rem;
}

/*RWD*/
@media only screen and (max-width: 575.98px) {
  .link-more {
    font-size: 1rem;
  }
}
.navbar {
  height: 100px;
  background-color: #f8f9fa;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: 0px 9px 21px 4px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 9px 21px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 9px 21px 4px rgba(0, 0, 0, 0.06);
}
.navbar .nav-info {
  z-index: 1;
  display: flex;
  align-items: center;
}
.navbar .nav-info a {
  width: 30px;
  height: 30px;
  color: #333333;
  margin-left: 15px;
  transition: all 0.2s linear;
}
.navbar .nav-info a svg {
  width: 100%;
  height: 100%;
}
.navbar .nav-info a:hover {
  color: #ccc1ae;
}
.navbar .nav-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.navbar .nav-list li {
  width: auto;
  text-align: center;
}
.navbar .nav-list li .nav-link {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1em;
  display: block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
}
.navbar .nav-list li .nav-link.dropdown-item {
  font-size: 0.875rem;
}
.navbar .nav-list li .nav-link::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: all 0.2s linear;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.navbar .nav-list li .nav-link:hover {
  background-color: transparent;
}
.navbar .nav-list li .nav-link:hover::before {
  width: 100%;
}
.navbar .nav-list li .nav-link.active {
  color: black;
  background-color: transparent;
}
.navbar .nav-list li .nav-link.active::before {
  width: 100%;
}
.navbar .nav-list li .nav-link svg {
  margin-right: 10px;
}
.navbar .nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.offcanvas-header {
  justify-content: flex-end;
}

.offcanvas-backdrop.fade.show {
  pointer-events: none;
}

.dropdown {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.dropdown .dropdown-menu {
  transition: all 0.3s linear;
}
.dropdown .dropdown-menu.show {
  position: static;
  float: none;
  width: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  transition: all 0.3s linear;
}

/*RWD*/
@media only screen and (max-width: 1199.98px) {
  .navbar {
    height: 70px;
  }
  .navbar.navbar-subpage .container-fluid {
    height: 100%;
  }
  .navbar .nav-logo img {
    height: 54px;
  }
}
@media only screen and (max-width: 575.98px) {
  .navbar .nav-info a {
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
  .navbar .nav-info a:first-child {
    margin-left: 0;
  }
  .btn-offcanvas {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }
}
/**
 * Animacja logotypu
 */
#main-logo {
  width: 800px;
}
#main-logo.moveToTop {
  animation: animate-move-to-top 500ms cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
}
@keyframes animate-move-to-top {
  0% {
    top: 0;
    width: 800px;
  }
  100% {
    transform: translateY(calc(-100% + 285px));
    width: 400px;
  }
}
#main-logo.noAnimation {
  animation: none !important;
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 247.4914245605px;
    stroke-dasharray: 247.4914245605px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 247.4914245605px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 247.4914245605px;
    stroke-dasharray: 247.4914245605px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 247.4914245605px;
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
  animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
}

.noAnimation .svg-elem-1,
.noAnimation .svg-elem-2,
.noAnimation .svg-elem-3,
.noAnimation .svg-elem-4,
.noAnimation .svg-elem-5,
.noAnimation .svg-elem-6,
.noAnimation .svg-elem-7,
.noAnimation .svg-elem-8,
.noAnimation .svg-elem-9,
.noAnimation .svg-elem-10,
.noAnimation .svg-elem-11,
.noAnimation .svg-elem-12,
.noAnimation .svg-elem-13,
.noAnimation .svg-elem-14,
.noAnimation .svg-elem-15,
.noAnimation .svg-elem-16,
.noAnimation .svg-elem-17,
.noAnimation .svg-elem-18,
.noAnimation .svg-elem-19,
.noAnimation .svg-elem-1a,
.noAnimation .svg-elem-1b,
.noAnimation .svg-elem-1c,
.noAnimation .svg-elem-1d,
.noAnimation .svg-elem-1e,
.noAnimation .svg-elem-1f,
.noAnimation .svg-elem-20,
.noAnimation .svg-elem-21,
.noAnimation .svg-elem-22,
.noAnimation .svg-elem-23 {
  animation: none;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 997.0416870117px;
    stroke-dasharray: 997.0416870117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 997.0416870117px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 997.0416870117px;
    stroke-dasharray: 997.0416870117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 997.0416870117px;
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.16s both;
  animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.16s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 735.2253417969px;
    stroke-dasharray: 735.2253417969px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 735.2253417969px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 735.2253417969px;
    stroke-dasharray: 735.2253417969px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 735.2253417969px;
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.32s both;
  animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.32s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 340.4234313965px;
    stroke-dasharray: 340.4234313965px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 340.4234313965px;
  }
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 340.4234313965px;
    stroke-dasharray: 340.4234313965px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 340.4234313965px;
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both;
  animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 660.3321533203px;
    stroke-dasharray: 660.3321533203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 660.3321533203px;
  }
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 660.3321533203px;
    stroke-dasharray: 660.3321533203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 660.3321533203px;
  }
}
.svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.64s both;
  animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.64s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 240.7893829346px;
    stroke-dasharray: 240.7893829346px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.7893829346px;
  }
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 240.7893829346px;
    stroke-dasharray: 240.7893829346px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.7893829346px;
  }
}
.svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 26.6009292603px;
    stroke-dasharray: 26.6009292603px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 26.6009292603px;
  }
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 26.6009292603px;
    stroke-dasharray: 26.6009292603px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 26.6009292603px;
  }
}
.svg-elem-7 {
  -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both;
  animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 173.2737426758px;
    stroke-dasharray: 173.2737426758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 173.2737426758px;
  }
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 173.2737426758px;
    stroke-dasharray: 173.2737426758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 173.2737426758px;
  }
}
.svg-elem-8 {
  -webkit-animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, animate-svg-fill-8 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.12s both;
  animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, animate-svg-fill-8 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.12s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 39.4465026855px;
    stroke-dasharray: 39.4465026855px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.4465026855px;
  }
}
@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 39.4465026855px;
    stroke-dasharray: 39.4465026855px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.4465026855px;
  }
}
.svg-elem-9 {
  -webkit-animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, animate-svg-fill-9 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.28s both;
  animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, animate-svg-fill-9 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.28s both;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 39.0034484863px;
    stroke-dasharray: 39.0034484863px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.0034484863px;
  }
}
@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 39.0034484863px;
    stroke-dasharray: 39.0034484863px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.0034484863px;
  }
}
.svg-elem-10 {
  -webkit-animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both;
  animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both;
}

@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 301.5864868164px;
    stroke-dasharray: 301.5864868164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 301.5864868164px;
  }
}
@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 301.5864868164px;
    stroke-dasharray: 301.5864868164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 301.5864868164px;
  }
}
.svg-elem-11 {
  -webkit-animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, animate-svg-fill-11 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, animate-svg-fill-11 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 64.918712616px;
    stroke-dasharray: 64.918712616px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 64.918712616px;
  }
}
@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 64.918712616px;
    stroke-dasharray: 64.918712616px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 64.918712616px;
  }
}
.svg-elem-12 {
  -webkit-animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, animate-svg-fill-12 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.76s both;
  animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, animate-svg-fill-12 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.76s both;
}

@-webkit-keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 565.7529296875px;
    stroke-dasharray: 565.7529296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 565.7529296875px;
  }
}
@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 565.7529296875px;
    stroke-dasharray: 565.7529296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 565.7529296875px;
  }
}
.svg-elem-13 {
  -webkit-animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, animate-svg-fill-13 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both;
  animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, animate-svg-fill-13 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both;
}

@-webkit-keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 315.3215332031px;
    stroke-dasharray: 315.3215332031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 315.3215332031px;
  }
}
@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 315.3215332031px;
    stroke-dasharray: 315.3215332031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 315.3215332031px;
  }
}
.svg-elem-14 {
  -webkit-animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both, animate-svg-fill-14 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.08s both;
  animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both, animate-svg-fill-14 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.08s both;
}

@-webkit-keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 152.6759033203px;
    stroke-dasharray: 152.6759033203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 152.6759033203px;
  }
}
@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 152.6759033203px;
    stroke-dasharray: 152.6759033203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 152.6759033203px;
  }
}
.svg-elem-15 {
  -webkit-animation: animate-svg-stroke-15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both, animate-svg-fill-15 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.24s both;
  animation: animate-svg-stroke-15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both, animate-svg-fill-15 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.24s both;
}

@-webkit-keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 277.2201843262px;
    stroke-dasharray: 277.2201843262px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 277.2201843262px;
  }
}
@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 277.2201843262px;
    stroke-dasharray: 277.2201843262px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 277.2201843262px;
  }
}
.svg-elem-16 {
  -webkit-animation: animate-svg-stroke-16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, animate-svg-fill-16 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
  animation: animate-svg-stroke-16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, animate-svg-fill-16 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@-webkit-keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 585.5101928711px;
    stroke-dasharray: 585.5101928711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 585.5101928711px;
  }
}
@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 585.5101928711px;
    stroke-dasharray: 585.5101928711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 585.5101928711px;
  }
}
.svg-elem-17 {
  -webkit-animation: animate-svg-stroke-17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both, animate-svg-fill-17 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.56s both;
  animation: animate-svg-stroke-17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both, animate-svg-fill-17 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.56s both;
}

@-webkit-keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 216.086517334px;
    stroke-dasharray: 216.086517334px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 216.086517334px;
  }
}
@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 216.086517334px;
    stroke-dasharray: 216.086517334px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 216.086517334px;
  }
}
.svg-elem-18 {
  -webkit-animation: animate-svg-stroke-18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both, animate-svg-fill-18 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.72s both;
  animation: animate-svg-stroke-18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both, animate-svg-fill-18 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.72s both;
}

@-webkit-keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 896.4259033203px;
    stroke-dasharray: 896.4259033203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 896.4259033203px;
  }
}
@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 896.4259033203px;
    stroke-dasharray: 896.4259033203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 896.4259033203px;
  }
}
.svg-elem-19 {
  -webkit-animation: animate-svg-stroke-19 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both, animate-svg-fill-19 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s both;
  animation: animate-svg-stroke-19 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both, animate-svg-fill-19 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s both;
}

@-webkit-keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 247.4914245605px;
    stroke-dasharray: 247.4914245605px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 247.4914245605px;
  }
}
@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 247.4914245605px;
    stroke-dasharray: 247.4914245605px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 247.4914245605px;
  }
}
.svg-elem-20 {
  -webkit-animation: animate-svg-stroke-20 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s both, animate-svg-fill-20 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.04s both;
  animation: animate-svg-stroke-20 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s both, animate-svg-fill-20 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.04s both;
}

@-webkit-keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 854.7928466797px;
    stroke-dasharray: 854.7928466797px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 854.7928466797px;
  }
}
@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 854.7928466797px;
    stroke-dasharray: 854.7928466797px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 854.7928466797px;
  }
}
@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
.svg-elem-21 {
  -webkit-animation: animate-svg-stroke-21 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both, animate-svg-fill-21 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
  animation: animate-svg-stroke-21 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both, animate-svg-fill-21 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
}

@-webkit-keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 884.8931884766px;
    stroke-dasharray: 884.8931884766px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 884.8931884766px;
  }
}
@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 884.8931884766px;
    stroke-dasharray: 884.8931884766px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 884.8931884766px;
  }
}
@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
.svg-elem-22 {
  -webkit-animation: animate-svg-stroke-22 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s both, animate-svg-fill-22 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s both;
  animation: animate-svg-stroke-22 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s both, animate-svg-fill-22 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s both;
}

@-webkit-keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 895.4146118164px;
    stroke-dasharray: 895.4146118164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 895.4146118164px;
  }
}
@keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 895.4146118164px;
    stroke-dasharray: 895.4146118164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 895.4146118164px;
  }
}
@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 0, 0);
  }
}
.svg-elem-23 {
  -webkit-animation: animate-svg-stroke-23 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s both, animate-svg-fill-23 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.52s both;
  animation: animate-svg-stroke-23 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s both, animate-svg-fill-23 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3.52s both;
}

@media only screen and (max-width: 767.98px) {
  #main-logo {
    width: 300px;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
}
.preloader .window {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader.show {
  opacity: 1;
  display: block;
}
.preloader.show h6 {
  transition: all 500ms ease-in-out;
  opacity: 1;
}
.preloader.hide {
  transition: all 500ms ease-out;
  opacity: 0;
  display: none;
}
.preloader.hide h6 {
  opacity: 0;
}

header .swiper-header {
  height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
}
header .swiper-header .swiper-slide {
  background-color: #000000;
  position: relative;
}
header .swiper-header .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}
header .swiper-header .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
header .swiper-header .swiper-slide .content {
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 11;
  width: 40vw;
}
header .swiper-header .swiper-slide .content h1 {
  font-size: 4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 3rem;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 2px !important;
  background-color: white;
  opacity: 1;
  border-radius: none !important;
  border-radius: 0 !important;
  margin: 10px !important;
  transform-origin: top !important;
  transition: all 0.3s linear;
}
.swiper-pagination-bullet:hover {
  background-color: #ccc1ae;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px !important;
}

/*RWD*/
@media only screen and (max-width: 1399.98px) {
  header .swiper-header .swiper-slide .content h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  header .swiper-header {
    height: calc(100vh - 70px);
  }
  header .swiper-header .swiper-slide .content {
    width: 60vw;
  }
  header .swiper-header .swiper-slide .content h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 767.98px) {
  header .swiper-header {
    height: calc(90vh - 70px);
  }
  header .swiper-header .swiper-slide .content h1 {
    font-size: 2.5rem;
  }
  .swiper-pagination {
    text-align: right;
  }
}
@media only screen and (max-width: 575.98px) {
  header .swiper-header .swiper-slide .content {
    width: 100%;
    bottom: 10%;
    left: 0%;
  }
  header .swiper-header .swiper-slide .content h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .header-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7em;
  }
}
.offer {
  padding-bottom: 7rem;
  position: relative;
}
.offer .wrapper-grid {
  display: grid;
  grid-column: 1fr, 1fr, 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
}
.offer .wrapper-grid .offer-box {
  position: relative;
}
.offer .wrapper-grid .offer-box .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.offer .wrapper-grid .offer-box .img::after::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}
.offer .wrapper-grid .offer-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
  overflow: hidden;
}
.offer .wrapper-grid .offer-box .img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.offer .wrapper-grid .offer-box h4 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 1rem;
}
.offer .wrapper-grid .offer-box:hover .img::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/*RWD*/
@media only screen and (max-width: 991.98px) {
  .offer .wrapper-grid {
    column-gap: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .offer .wrapper-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 80px;
  }
  .offer {
    padding-bottom: 5rem;
  }
}
.banner {
  width: 100%;
  height: 40vh;
  position: relative;
}
.banner .blur {
  clip-path: polygon(10% 20%, 90% 20%, 90% 80%, 10% 80%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(15px);
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
  font-size: 2.5rem;
}

/*RWD*/
@media only screen and (max-width: 1199.98px) {
  .banner h3 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner {
    height: 30vh;
  }
  .banner h3 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner {
    height: 40vh;
  }
  .banner h3 {
    font-size: 1rem;
  }
}
.services {
  padding-bottom: 7rem;
}
.services .link-more {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.grid-services {
  display: grid;
  grid-template: auto/1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
}
.grid-services .box {
  display: flex;
  align-items: flex-start;
}
.grid-services .box svg {
  color: #ccc1ae;
  margin-top: 3px;
  margin-right: 10px;
  height: 20px;
  width: auto;
}
.grid-services .box .text {
  flex: 1;
}
.grid-services .box .text h4 {
  line-height: 1;
  margin-bottom: 0.5em;
  font-weight: 300;
}

/*RWD*/
@media only screen and (max-width: 1399.98px) {
  .grid-services .box .text p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  .services {
    padding-bottom: 5rem;
  }
  .grid-services .box .text h4 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .services {
    padding-bottom: 3rem;
  }
  .grid-services {
    grid-template: auto/1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .services {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .grid-services {
    grid-template: auto/1fr;
    column-gap: 0;
    row-gap: 20px;
  }
  .grid-services .box .text h4 {
    font-size: 1.125rem;
  }
  .grid-services .box svg {
    margin-top: 1px;
    height: 16px;
  }
}
.realizations {
  padding-bottom: 7rem;
}
.realizations .grid-realizations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 600px;
  row-gap: 15px;
  column-gap: 15px;
}
.realizations .grid-realizations .box {
  position: relative;
}
.realizations .grid-realizations .box span {
  transition: all 0.3s linear;
  z-index: 3;
  position: absolute;
  top: -20px;
  left: 20px;
  text-transform: uppercase;
  opacity: 0;
}
.realizations .grid-realizations .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.realizations .grid-realizations .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  opacity: 0.4;
  transition: all 0.3s linear;
}
.realizations .grid-realizations .box:hover::before {
  opacity: 0.1;
}
.realizations .grid-realizations .box:hover span {
  opacity: 1;
  top: 20px;
}
.realizations .grid-realizations .box:nth-child(3) {
  grid-row: 2/4;
}
.realizations .grid-realizations .box:nth-child(2) {
  grid-row: 1/3;
}
.realizations .grid-realizations .box:nth-child(7) {
  grid-row: 5/7;
}
.realizations .link-more {
  margin-top: 2rem;
  margin-left: 3rem;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  grid-auto-rows: 500px;
}
.tab-grid .box {
  position: relative;
  cursor: pointer;
}
.tab-grid .box:focus-visible {
  outline: none;
}
.tab-grid .box img,
.tab-grid .box a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab-grid .box h4 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1rem;
  z-index: 2;
}
.tab-grid .box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.4;
  transition: all 0.3s linear;
}
.tab-grid .box:hover::before {
  opacity: 0.1;
}

.nav-pills {
  display: flex;
  justify-content: space-evenly;
}
.nav-pills .nav-item {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.nav-pills .nav-link {
  border-radius: 0;
  font-size: 1.25rem;
  font-weight: 300;
  background-color: transparent;
  margin-right: 0px;
  color: black;
  transition: all 0.3s linear;
  border: 1px solid transparent;
  border-bottom: 1px solid #ccc1ae;
  width: 100%;
}
.nav-pills .nav-link:hover {
  color: #ccc1ae;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ccc1ae;
  background-color: transparent;
  border: 1px solid #ccc1ae;
  width: 100%;
}

/*RWD*/
@media only screen and (max-width: 1399.98px) {
  .tab-grid {
    grid-auto-rows: 300px;
  }
  .realizations .grid-realizations {
    grid-template: none;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }
}
@media only screen and (max-width: 991.98px) {
  .nav-pills .nav-link {
    font-size: 1.125rem;
  }
  .realization-sub {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .tab-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767.98px) {
  .realizations {
    padding-bottom: 5rem;
  }
  .realizations .grid-realizations {
    grid-template-columns: 1fr;
  }
  .realizations .grid-realizations .box span {
    top: 20px;
    opacity: 1;
  }
  .realizations .grid-realizations .box:nth-child(2) {
    grid-row: 2/3;
  }
  .realizations .grid-realizations .box:nth-child(3) {
    grid-row: 3/4;
  }
  .realizations .grid-realizations .box:nth-child(7) {
    grid-row: 7/8;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-pills .nav-link {
    font-size: 0.875rem;
  }
  .tab-grid {
    grid-template-columns: 1fr;
  }
  .realizations .link-more {
    margin-left: 0;
    font-size: 0.875rem;
  }
}
.cooperation .swiper-cooperation {
  overflow: hidden;
}
.cooperation .swiper-cooperation .swiper-slide {
  text-align: center;
}

/*RWD*/
@media only screen and (max-width: 991.98px) {
  .cooperation .swiper-cooperation .swiper-slide img {
    width: auto;
    height: 70px;
  }
}
@media only screen and (max-width: 575.98px) {
  .cooperation .swiper-cooperation .swiper-slide img {
    height: 50px;
  }
}
.contact {
  padding-top: 3rem;
  padding-bottom: 0;
  position: relative;
}
.contact .contact-form {
  margin-bottom: 3rem;
}
.contact .contact-form form {
  width: 40vw;
  margin: 0 auto;
}
.contact .contact-form .header-section {
  margin-bottom: 3rem;
}
.contact .wrapper-btn {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.contact .wrapper-info {
  display: flex;
  justify-content: space-evenly;
}
.contact .wrapper-info p {
  margin-bottom: 5px;
}
.contact .wrapper-info .address .item {
  margin-top: 15px;
}
.contact .wrapper-info .item {
  margin-bottom: 22px;
}
.contact .wrapper-info .item a {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
}
.contact .wrapper-info .item a svg {
  width: 20px;
  margin-right: 9px;
}
.contact .wrapper-info .item a:hover {
  color: #ccc1ae;
}
.contact .wrapper-info h4 {
  color: #ccc1ae;
}
.contact .img-footer {
  position: absolute;
  object-fit: cover;
  z-index: 1;
}
.contact .img-footer.f1 {
  width: 20vw;
  height: auto;
  top: 50%;
  left: 2%;
}
.contact .img-footer.f2 {
  width: 15vw;
  height: auto;
  top: 5%;
  left: 0;
}
.contact .img-footer.f3 {
  width: 20vw;
  height: auto;
  top: 20%;
  right: 2%;
}
.contact .img-footer.f4 {
  width: 15vw;
  height: auto;
  top: 40%;
  right: 0;
}

.form-floating {
  margin-bottom: 10px;
}
.form-floating > label {
  top: 0;
  left: 10px;
}
.form-floating .form-control {
  color: white;
  background-color: transparent;
  border-radius: 0;
}
.form-floating .form-control:focus {
  color: white;
  background-color: transparent;
  border-color: white;
  box-shadow: transparent;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent;
  color: white;
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: white;
  transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
}

.form-floating > textarea.form-control {
  height: 200px;
}

.form-check {
  margin-left: 15px;
}

.form-check-input {
  border-radius: none !important;
}
.form-check-input:checked {
  background-color: #ccc1ae;
  border-color: #ccc1ae;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
}

.form-check-label {
  font-size: 0.75rem;
}
.form-check-label a {
  text-decoration: underline;
}

.copyright {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright p {
  font-size: 0.875rem;
  margin: 0;
}
.copyright p a {
  color: #ccc1ae;
}

/*RWD*/
@media only screen and (max-width: 1399.98px) {
  .contact .contact-form form {
    width: 50vw;
  }
}
@media only screen and (max-width: 1199.98px) {
  .contact img {
    display: none;
  }
  .contact .contact-form form {
    width: 80vw;
  }
  .contact .wrapper-info h4 {
    font-size: 1.125rem;
  }
  .contact .wrapper-info .item a {
    font-size: 1rem;
  }
  .wrapper-info p {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .contact .contact-form .header-section {
    margin-bottom: 2rem;
  }
  .contact .contact-form form {
    width: 100%;
  }
  .contact .wrapper-info {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact .wrapper-info .item a {
    justify-content: center;
  }
  .contact .wrapper-info .address {
    margin-bottom: 2rem;
  }
  .copyright {
    flex-direction: column;
    text-align: center;
  }
  .copyright p {
    font-size: 0.75rem;
  }
  .copyright p:first-child {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact {
    padding-top: 2rem;
  }
  .contact .contact-form form {
    width: 97%;
  }
}

/*# sourceMappingURL=app.css.map */
