@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500&family=Playfair+Display:wght@500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #932e34;
    --primary-color-2: #010D14;
    --head-color: #018b45;
    --body-color: #018b45;
    --border-color: #e5e5e5;
    --title-color: #002248;
    --text-color: #333;
    --text-opa-color: rgba(0,0,0,0.6);
}

body{
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus,
textarea:focus{
  outline: none;
}

img{
    width: 100%;
}

ul, ol{
    list-style: none;
}

a{
    text-decoration: none;
    color: var(--text-color);
}

.section{
    padding: 60px 0;
}

.slick-dots{
  bottom: -40px;
}

.slick-dots li{
    width: 18px;
    height: 18px;
    margin: 0 2px;
}

.slick-dots li.slick-active button{
    border: 1px solid var(--title-color);
    border-radius: 50%;
}

.slick-dots li.slick-active button:before{
    opacity: 1;
    color: var(--title-color);
}

.slick-dots li button{
    width: 18px;
    height: 18px;
}

.slick-dots li button:before{
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.slick-prev{
    left: 15px;
}
.slick-next{
    right: 15px;
}

.slick-arrow{
  border: 1px solid transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    transform: translate(0,-50%);
    cursor: pointer;
    background: rgba(0,0,0,0.08);
    font-size: 20px;
    transition: .3s;
    z-index: 9;
    color: #fff;
}
.slick-arrow:hover{
    background: rgba(0,0,0,0.2);
    opacity: .9;
}

.next-arrow {
    right: 15px;
    opacity: 0.5;
}
.prev-arrow{
    left: 15px;
    opacity: 0.5;
}
.banner-slider .next-arrow {
    right: 10px;
    opacity: 0.5;
}
.banner-slider .prev-arrow{
    left: 10px;
    opacity: 0.5;
}


.breadcrumb{
    position: relative;
    padding: 10px 40px;
    background: #f5f5f5;
    border-bottom: 2px solid #fff;
}

.breadcrumb ul{
    display: flex;
    align-items: center;
    gap: 18px;
}
.breadcrumb ul li{
    position: relative;
}
.breadcrumb ul li::after{
    content: "";
    position: absolute;
    top: 5px;
    right: -10px;
    width: 1px;
    height: 10px;
    background: #bbb;
    transform: rotate(20deg);
}
.breadcrumb ul li:last-child::after{
    background: transparent;
}
.breadcrumb ul li a{
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
}
.breadcrumb ul li a.active{
    color: var(--primary-color);
}


/* loader */

.pl {
    display: block;
    width: 9.375em;
    height: 9.375em;
  }
  
  .pl__arrows,
  .pl__ring-rotate,
  .pl__ring-stroke,
  .pl__tick {
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .pl__arrows {
    animation-name: arrows42;
    transform: rotate(45deg);
    transform-origin: 16px 52px;
  }
  
  .pl__ring-rotate,
  .pl__ring-stroke {
    transform-origin: 80px 80px;
  }
  
  .pl__ring-rotate {
    animation-name: ringRotate42;
  }
  
  .pl__ring-stroke {
    animation-name: ringStroke42;
    transform: rotate(-45deg);
  }
  
  .pl__tick {
    animation-name: tick42;
  }
  
  .pl__tick:nth-child(2) {
    animation-delay: -1.75s;
  }
  
  .pl__tick:nth-child(3) {
    animation-delay: -1.5s;
  }
  
  .pl__tick:nth-child(4) {
    animation-delay: -1.25s;
  }
  
  .pl__tick:nth-child(5) {
    animation-delay: -1s;
  }
  
  .pl__tick:nth-child(6) {
    animation-delay: -0.75s;
  }
  
  .pl__tick:nth-child(7) {
    animation-delay: -0.5s;
  }
  
  .pl__tick:nth-child(8) {
    animation-delay: -0.25s;
  }
  
  /* Animations */
  @keyframes arrows42 {
    from {
      transform: rotate(45deg);
    }
  
    to {
      transform: rotate(405deg);
    }
  }
  
  @keyframes ringRotate42 {
    from {
      transform: rotate(0);
    }
  
    to {
      transform: rotate(720deg);
    }
  }
  
  @keyframes ringStroke42 {
    from,
      to {
      stroke-dashoffset: 452;
      transform: rotate(-45deg);
    }
  
    50% {
      stroke-dashoffset: 169.5;
      transform: rotate(-180deg);
    }
  }
  
@keyframes tick42 {
  from,
    3%,
    47%,
    to {
    stroke-dashoffset: -12;
  }

  14%,
    36% {
    stroke-dashoffset: 0;
  }
}


.bg-home{
  background: #f5f5f5;
}

.wrapper-title{
  margin: 20px 0 40px;
  text-align: center;
}
.wrapper-title.start{
  text-align: start;
}
.wrapper-title .subtitle{
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
}
.wrapper-title .subtitle i{
  margin-right: 5px;
  color: var(--primary-color);
}


.wrapper-title .title{
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.wrapper-title.first{
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}



/* Breadcrumbs */

.breadcrumbs{
  background: #f5f5f5;
}

.breadcrumbs ul{
  display: flex;
  padding: 8px;
}

.breadcrumbs ul li{
  position: relative;
}
.breadcrumbs ul li::after{
  content: "/";
  position: absolute;
  right: -2px;
  top: 6px;
  font-size: 12px;
}

.breadcrumbs ul li:last-child::after{
  display: none;
}

.breadcrumbs ul li > a{
  padding: 4px 12px;
  font-size: 13px;
  transition: .3s;
  color: #555;
}

.breadcrumbs ul li > a i{
  margin-right: 4px;
}

.breadcrumbs ul li > a:hover{
  color: var(--primary-color);
}


.back-to-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 99;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 50px transparent;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    width: 44px;
    height: 44px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s all;
    display: none;
    cursor: pointer;
}

.back-to-top:hover{
  box-shadow: 0 2px 4px #f0a5aa;
}
.back-to-top i{
  animation: bounce 2s ease infinite;
}


@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.group-contact {
    bottom: 20px;
    right: 20px;
    z-index: 999;
    position: fixed;
}

.group-contact a, .group-contact span {
    position: relative;
    margin-bottom: 10px;
}

.group-contact a, .group-contact span{
    align-items: center;
    border-radius: 50%;
    display: flex;
}

.group-contact img {
    width: 40px;
}

.group-contact span {
    animation: 2s linear infinite callZoom;
    cursor: pointer;
}

@keyframes callZoom {
  0% {
      box-shadow: 0 0 0 0 rgba(245, 173, 173, .1);
  }
  30% {
      box-shadow: 0 0 0 .2rem rgba(235, 109, 109, .1);
  }
  100% {
      box-shadow: 0 0 0 .6rem rgba(212, 75, 75, .3);
  }
}

.group-contact .social-item {
    display: none;
}

.group-contact .social-item.active {
    display: block;
    animation: .6s bottomToTop;
}

@keyframes bottomToTop {
  0% {
    transform: translateY(20px);
    opacity: .2;
  }

  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

.group-contact .group::after, .group-contact .group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: inherit;
    animation-delay: 1s;
}

.group-contact .group::after {
    animation-delay: 2s;
}

.banner-pages {
    position: relative;
    padding: 130px 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    background-image: url(../imgs/background-page.jpg);
}

.block-banner{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.banner-content{
  margin-left: 10px;
}

.banner-content h1{
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumbs-banner{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.breadcrumbs-banner li{
  position: relative;
}

.breadcrumbs-banner li::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skew(-20deg);
  right: -10px;
  width: 1px;
  height: 10px;
  background-color: #dddddd;
}

.breadcrumbs-banner li:last-child::after{
  display: none;
}

.breadcrumbs-banner li .bread-link{
  color: #fff;
}

.breadcrumbs-banner li .bread-link.active{
  color: #fff07a;
}

.backlink{
  font-weight: 600;
  transition: .2s;
}
.backlink:hover{
  color: var(--primary-color);
}


/* Modal overlay */
#imgModal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#imgModal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    object-fit: contain;
}

#imgModal .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    z-index: 1001;
}

