@charset "UTF-8";
@import url("../fonts/fonts.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  --first-color: #0077FF;
  --second-color: #00d669;
  --third-color: #6a85ac;
  --fourth-color: #0077fa;
  --fifth-color: #5855d3;
  --sixth-color: #252f3a;
  --seventh-color: #f6f6f6;
  --slide-bg-color: #0077FF;
  --text-gradient: linear-gradient(to right, var(--first-color) 40%, var(--second-color) 60%);
  --blue-box-gradient: linear-gradient(to right, var(--first-color) 0%, #00a8da 100%);
  --h2-title: 4rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  animation: page-fade-in 0.4s ease-in;
  -webkit-animation: page-fade-in 0.4s ease-in;
}

img {
  width: 100%;
}

@keyframes page-fade-in {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-top {
  from {
    transform: translateY(-2rem);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes popup {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slide-to-right {
  from {
    transform: translateX(-10rem);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-to-left {
  from {
    transform: translateX(10rem);
  }
  to {
    transform: translateX(0);
  }
}
div {
  animation: slide-top 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.specialist-button {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  z-index: 1;
  overflow: hidden;
}
.specialist-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--fifth-color);
  z-index: -1;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.specialist-button:hover::before {
  width: 100%;
}

.w-arrow {
  display: inline-flex;
  column-gap: 0.5rem;
  align-items: center;
  padding: 0.2rem 1rem;
  border-radius: 2rem;
}
.w-arrow::before {
  background: var(--second-color);
}
.w-arrow::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAOxJREFUWEft1r0OgjAUhuH3TLo46lXo4mhcdNRb1smfzdXoFRh392NIikGM9gCnwQHWBr6Hj7ZUaPmSlvPpAF0Dbg2o6hHoASsRuVsntyfgBEyBM7C0IjwBI2ALjIErsBCRW6wJN0AWpKoZYgNMrAhXQEAMQxMmhDugKiIJoAoiGcCKSAqwIN4AqnoAZrGl03D8ISKD/BllwA6YNwyI3f4dELuzzriqFpflJeySrw0q6RyIhWcvlAxgCU8GKG3JH7UXP6V7AyE8/yn9DHdvoGq4K6BOuDeg9QPJHugDa+tpyLWBOptUB+ga+IsGnhsxdCHFFSvrAAAAAElFTkSuQmCC");
  height: 32px;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.sticky {
  position: fixed !important;
  top: 0;
  padding: 1rem 0 !important;
  background: #fff;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #206cbf;
}
.sticky .logo svg {
  height: 2.5rem !important;
}

.home-page .sticky {
  background: var(--fourth-color);
}
.home-page #main-header {
  position: absolute;
  top: 0;
  padding: 3.33rem 0;
}
.home-page #main-header .logo svg {
  transition: height 0.3s ease-in-out;
}
.home-page #main-header .logo svg path {
  fill: #fff;
}
.home-page #main-header .logo svg .accent {
  fill: var(--second-color);
}
.home-page #main-header .main-top-nav .nav-list a {
  color: #fff;
}
.home-page #main-header .main-top-nav .nav-list .btn-contact {
  color: #fff;
}
.home-page #main-header .nav-sub-menu .sub-menu li a {
  color: var(--first-color);
}
.home-page footer::before {
  background: var(--sixth-color);
}

#main-header {
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 2;
}
#main-header .inner-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#main-header .nav-sub-menu {
  position: relative;
}
#main-header .nav-sub-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  min-width: 250px;
  border-radius: 1rem;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
  transform: translateY(-1rem);
  transition: all 0.25s ease-in-out;
  overflow: hidden;
}
#main-header .nav-sub-menu .sub-menu li:last-child {
  margin-bottom: 0;
}
#main-header .nav-sub-menu .sub-menu li a {
  display: block;
  font-weight: 400;
  color: var(--first-color);
  padding: 1rem;
  background: #fff;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
#main-header .nav-sub-menu .sub-menu li a:hover {
  color: #fff;
  background: var(--fifth-color);
}
#main-header .nav-sub-menu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-header .logo svg {
  height: 3.115rem;
}
#main-header .main-top-nav {
  flex: 1;
}
#main-header .main-top-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 4rem;
}
#main-header .main-top-nav .nav-list a {
  color: var(--third-color);
  font-weight: 300;
}
#main-header .main-top-nav .nav-list .btn-contact {
  display: flex;
  align-items: center;
  color: #fff;
  column-gap: 1rem;
  padding: 0.25rem 1rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  background: var(--first-color);
}
#main-header .main-top-nav .nav-list .btn-contact::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAOxJREFUWEft1r0OgjAUhuH3TLo46lXo4mhcdNRb1smfzdXoFRh392NIikGM9gCnwQHWBr6Hj7ZUaPmSlvPpAF0Dbg2o6hHoASsRuVsntyfgBEyBM7C0IjwBI2ALjIErsBCRW6wJN0AWpKoZYgNMrAhXQEAMQxMmhDugKiIJoAoiGcCKSAqwIN4AqnoAZrGl03D8ISKD/BllwA6YNwyI3f4dELuzzriqFpflJeySrw0q6RyIhWcvlAxgCU8GKG3JH7UXP6V7AyE8/yn9DHdvoGq4K6BOuDeg9QPJHugDa+tpyLWBOptUB+ga+IsGnhsxdCHFFSvrAAAAAElFTkSuQmCC");
  height: 33px;
}

.main-slide {
  background: var(--slide-bg-color) url("../img/bg-clients.webp") top center no-repeat;
}
.main-slide .main-slide-grid {
  display: grid;
  height: calc(40vh + 30vw);
  min-height: 620px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 20rem repeat(2, minmax(0, 1fr));
  align-items: center;
}
.main-slide .main-slide-grid .intro-text {
  grid-column: 2/8;
  grid-row: 2/3;
  padding-top: 3rem;
}
.main-slide .main-slide-grid .intro-text h1 {
  font-size: calc(1.75rem + 2.5vw);
  font-weight: 300;
  letter-spacing: -0.05rem;
  color: #fff;
}
.main-slide .main-slide-grid .intro-text h1 span {
  color: var(--second-color);
}
.main-slide .main-slide-grid .button-scroll-page {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row-start: 4;
  grid-column: 5/9;
  height: 6rem;
  background: url("../img/shape.svg") no-repeat center 101%;
  background-size: contain;
}
.main-slide .main-slide-grid .button-scroll-page .scroll-page-icon {
  flex: 0 0 33%;
}
.main-slide .main-slide-grid .button-scroll-page .scroll-page-icon a {
  display: block;
  width: 100%;
  height: 48px;
  text-align: center;
  align-items: center;
  animation: arrowAnimation ease-in-out 2s infinite;
}
.main-slide .main-slide-grid .button-scroll-page .scroll-page-icon a::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAiNJREFUaEPtmcFq1FAYhc//y6wtqEgRXCmlUNAHEMGNaDuu9Cnm5mZfN2Y2uhxmJplhXkNdVKu2YvsOXbjTR2hdDN78ciGBUpNpOjcZCNxsJ5N7vnPOfwk3hJZf1HL98ABlCSZJck9E9uzvRPRMKfWzibQbSyCO410AbzPRr4MgeNcqgPF4HBHRGytaRPpa68gDFDjQWIV8AhX75hMoM8pXyFeoogO+Qo5G+V3IV8hXyNEBXyFHA/0u5CvkK+TogK+Qo4F+F/IV8hVydKCVFRoMBmudTueViBxprU+KIKqeSsxms/X5fL4tIp/CMPx9VT+X2oXiOP4AoAvgjJl3er3e94sLVwGYTCYbxpivRHQHwEkQBJurAvgG4Em2WCHEZQBJkmymaWrFr2cHwL+01ndXAmDP/tM0Pcycs2v+B7EIYDqdbhljvgC4nYk/ZebnSqmjlQDYRYbD4X1mPsghROQPgBdaa5sOygBGo9EDZt4HcCtPUES6WuvDq4q39y81A/lCiyCKAJIkeWiM2Wfmm5nzFnpnWfHOAIuSAPD4/AcOInoP4DOAG7l4Zu4qpQ6WcT7/j1MCZUnYmRCRYyJ6mt3zEcAjAGt550VkOwzDHy7ia0lgAUShNjsrdThfawJVIeoWX2sCl0E0Ib4RgLLBrrM257tZyxAXlT3bYveI6Dozvyx63XAd4MYSyIWJCPX7/WtRFP2tQ2zRMxpLoCnBF5/beoB/8zjYQAAMpG4AAAAASUVORK5CYII=");
  display: block;
  height: 0;
}

.business-segment {
  background: #f6f6f6 url("../img/icon-for-bg.webp") no-repeat 70% center;
  background-size: calc(300px + 30vw);
  padding: 8rem 0 6rem;
}
.business-segment .entry-title {
  margin-bottom: 3.33rem;
}
.business-segment .entry-title h2 {
  font-size: calc(2.8rem + 1.2vw);
  font-weight: 700;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.business-segment .carousel-controls {
  display: flex;
  column-gap: 1rem;
  margin-bottom: 3.33rem;
}
.business-segment .carousel-controls .btn {
  width: 95px;
  padding: 0.3rem 1rem 0.1rem;
  border: 2px solid #00a8da;
  border-radius: 2rem;
  cursor: pointer;
  text-align: center;
}
.business-segment .carousel-controls .btn svg {
  height: 32px;
}
.business-segment .carousel-controls .carousel-prev-nav svg {
  transition: all 0.2s ease-in-out;
}
.business-segment .carousel-controls .carousel-prev-nav:hover svg {
  transform: translateX(-0.5rem);
}
.business-segment .carousel-controls .carousel-next-nav svg {
  transition: all 0.2s ease-in-out;
}
.business-segment .carousel-controls .carousel-next-nav:hover svg {
  transform: translateX(0.5rem);
}
.business-segment .carousel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.business-segment .carousel .carousel-wrapper {
  position: relative;
  grid-column: 2/13;
  margin-left: 3rem;
}
.business-segment .carousel .carousel-wrapper .carousel-viewport {
  display: flex;
  width: 100%;
  gap: 2rem;
  padding: 2rem;
  overflow: scroll hidden;
  scroll-behavior: smooth;
  scroll-padding: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.business-segment .carousel .carousel-wrapper .carousel-viewport::-webkit-scrollbar {
  opacity: 0;
  width: 0;
  display: none;
  background-color: transparent;
}
.business-segment .item {
  flex: 0 0 100%;
  max-width: 575px;
  width: 100%;
  min-height: 478px;
  background: #fff;
  padding: 2.6rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.3);
  scroll-snap-align: start;
}
.business-segment .item .inner-item {
  display: flex;
  flex-wrap: wrap;
}
.business-segment .item .inner-item .item-header {
  display: flex;
  margin-bottom: 1rem;
  column-gap: 1rem;
}
.business-segment .item .inner-item .item-header .icon {
  display: block;
  width: 3.334rem;
  height: 3.334rem;
}
.business-segment .item .inner-item .item-header .icon img {
  width: 100%;
  height: 100%;
}
.business-segment .item .inner-item .item-header h3 {
  font-size: 2.666rem;
  line-height: 1rem;
  color: var(--third-color);
}
.business-segment .item .inner-item .item-header h3 small {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--first-color);
}
.business-segment .item .inner-item .item-content {
  color: var(--third-color);
}
.business-segment .item .inner-item .item-content p {
  font-weight: 300;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.business-segment .item .inner-item .item-content .specialist-button {
  color: #fff;
  background: var(--fourth-color);
}

#exclusive-service {
  background: #252f3a url("../img/bg-clients.webp") no-repeat top center;
  background-blend-mode: soft-light;
  padding: 8rem 0;
}
#exclusive-service .inner-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
}
#exclusive-service .service-text {
  flex: 0 0 60%;
  padding-top: 3rem;
}
#exclusive-service .service-text .h2-title h2 {
  font-size: var(--h2-title);
  color: #fff;
}
#exclusive-service .service-text .human-service-text {
  max-width: 490px;
  padding-top: calc(2rem + 2vw);
  padding-left: calc(2rem + 2vw);
}
#exclusive-service .service-text .human-service-text span {
  font-size: 1.72rem;
  color: var(--second-color);
}
#exclusive-service .service-text .human-service-text p {
  color: #fff;
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.556rem;
  margin-bottom: 1.5rem;
}
#exclusive-service .service-text .human-service-text .specialist-button {
  background: var(--fifth-color);
}
#exclusive-service .service-img {
  position: relative;
  margin-bottom: 8rem;
}
#exclusive-service .service-img figure {
  border-radius: 0.5rem;
  overflow: hidden;
}
#exclusive-service .service-img .schedule-visit {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  max-width: 400px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  transform: translate(-50%, 50%);
}
#exclusive-service .service-img .schedule-visit span {
  color: var(--second-color);
  font-size: 1.72rem;
  font-weight: 600;
}
#exclusive-service .service-img .schedule-visit p {
  margin: 1.5rem 0;
  color: var(--third-color);
}
#exclusive-service .service-img .schedule-visit .specialist-button {
  background: var(--fifth-color);
}

#call-to-action {
  background: var(--seventh-color) url("../img/cta-home-bg.webp") no-repeat center;
  padding: 9rem 0;
}
#call-to-action .box-cta {
  position: relative;
  color: #fff;
  background: var(--blue-box-gradient);
  background-blend-mode: color;
  padding: 2rem;
  border-radius: 1rem;
}
#call-to-action .box-cta h2 {
  width: 80%;
  font-size: calc(2.5rem + 1.5vw);
  line-height: calc(2.5rem + 1.5vw);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#call-to-action .box-cta p {
  width: 60%;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#call-to-action .box-cta .specialist-button {
  background: var(--second-color);
}
#call-to-action .box-cta .specialist-button::before {
  background: var(--fifth-color);
}

footer {
  color: var(--third-color);
  background: url("../img/footer-sign.webp") no-repeat 60% 130%;
}
footer::before {
  content: "";
  display: block;
  padding: 3rem 0;
  width: 100%;
  background: var(--seventh-color);
}
footer .grid {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  row-gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
footer .grid .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-logo {
  max-width: 190px;
}
footer .footer-logo img {
  width: 100%;
}
footer .footer-menu nav ul {
  display: flex;
  gap: 2rem;
}
footer .footer-menu nav ul a {
  color: var(--third-color);
}
footer address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
footer .footer-contact-infos {
  text-align: right;
  font-size: 1.72rem;
  font-weight: 600;
}
footer .footer-contact-infos span {
  color: var(--second-color);
}
footer .footer-contact-infos a {
  color: var(--third-color);
}
footer .copyright {
  font-size: 0.77rem;
  line-height: 1rem;
}
footer .copyright a {
  color: var(--fifth-color);
}
footer .socials ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
footer .socials .facebook::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAXpJREFUSEvtU71LQlEU/51rINRU1h41tDS5OARFf4L4MWSLDdEziYIWP4YH8Z5zJD6Xaqohtb2hLUKaa2hrLzIaUjPviQbrKU/e0ygcvOO99/w+zu8cQg9HyZyMi6Z7uyngF8yzzHABVCHIJ0FiN5sKXnTCkVN8JVOaoSZfgjBtVcPEa0YydNw/gVYsE+DrJuhXBHG9tCCZryyVM6oEqjEhbqQCp3052NQLSWbS2otlWZCIZhOBexBxN2eOMojpxX0wtswgkqUvnw7f2GXojEArGgA2zGD1hvQcquHnPyNgUZ8wEpHKYBIoWmmFGNmWOoYcJSK3WS2DX4jFd7jSJbz5hP/B0RQpeiFKTEd29lvvBLxPNTxjqrr88ScETLgzksF5K0GWU9SrAwDnuVQw4Jxg72wOwrX0k0EzIiAWzQDEtCMJb193xPI2lw5dOybo/Biz2IPBHtOhg7ZhcLJMw5Btu/QPLSqoANbBNMmEKoDHkUbNe6Cuvtqp+wSspM4ZgutB/AAAAABJRU5ErkJggg==");
}
footer .socials .instagram::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAA2pJREFUSEu1lltoHGUUx//n226qL740VimKvvRJEfHBiFawUPBJHzqzC7Z4IV6yOxtrK0rbnUnYmp2RRrCmzcymxQsRK5KZTemDtCAoFRFrqUXEV7WC9yReEBSz8/1lRiduLma7hZzX+c75nXP+5zvfCNbYZI3jYxlgcCS8J4YaEOEdBK4RwZWrJUHgdwG+EeAMYhz2h83P288vAGq1mvoxf9MRQKzLroqIAewOHHM8i7EAsNxwCJDnCPwmwDC1Ph1v/PmLYwMD852ApedP3JhjawcpQyDXC5ThO8aJxC8FVLzpDWT8NYEeJbLFr5pnOwXNvtdq762b6Znry18Rf/LXn2oribcJfDmzWW8Oi8U4BVj1cCdE3tBgNGEXCpcaPDlXrjddEVZF401/yNxp1afehaitmrpvwil+/E8F9egABcMAng5s89AiACklt7ldQfdrkVsEiAmcE+F4o1o8Y9XDZyDyggC+b5uDZS8aFiKJ90ijak6mgLIXHhLKbog8FlSNVzLAE0eP5vOzvcdJrlwVORo4hb1PHmxet+GPz76t1Wq6Uo92UTAmxFO+Yx5eFVByoxcVsIfkrCi1V+v49Dqih0qZmjiQjDCJcsMxJ7KkMkA6TbY59r+AwYMnN+n5+a8SR51D38R+80J768pe834hTwIy0+qd2ZRN2yUDLDd8CJDJ1YQvuVPnFdRtoL47cIof/Ktn2qKOFWTiAXAD23RWmqzKSHScCjsgUgiqRtQVoOI1HyT5OoDpwDaNlQBlN7ogwK0g7wqcwoddAazRqWtlXl3UoBKl7gz2G+faIZbXNEGGIH9oXT13fdcapOPrRqMCPAviVwBOjrlTMdgDFZskbBFZL+Djvl14uespShySNfBTbnYy7fNSIwkRb6k+K96D7CYLZY/vGC8tjWXVo/sgup9UNwvYglLnoXWQ9X1R67KlKexvVAuvLdpF1PJWY8h4oJtdtCwZb+odUG3LRndhm2qtLypBXuXU7Uf2bf/0ciCDbnSvJk9B8H2rd+6GRPiF96DihVVS3GwttFQcHdtXTMTtaKXa9MZcXj+crQ8BHvVt89XE8b8nkxTLi8bbXzSCvwgVVyNQmBPgqvRMKryqB7aRbObUlr3J5ZHmNlFxBchtAdjbMX2SFHwHrd6HYKzhGB+1+6z5X8XfRB/tKNNVPzsAAAAASUVORK5CYII=");
}
footer .socials .linkedin::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAexJREFUSEvtlj9oFEEUxr83m6AEK7FQEezEKOLfwkbQJpVguOymsUkE/+TusLAy2Y0cIXeQysLsJoqi9XqbEFKm0C4R1CioGC1TqIhGgiKnt/PJBXZvTzgI96fS6WZ23vfb9943wwjaPKTN+qgBZMf8Q9qQowL1yrX7nrcCHgPS+WCA4D0BFEgCctVzzMlmIQmAvwiok5GgEG9cxzzYQkAxAJCKBckFz7F6WgbIjAd7qcK70MZxIHwRUl2+PWq+bxmgWaF68XEPsoXi/jCUPdFGRX5wb5ivLd83dqwYZ5ICEoZL5V1rJePz9l4ROQzNrRAsb+nizM1r/T9r9kaTdL44BeBKNNfAg2nbHLyUm+/q6Cz9SAYRchbCCSH+NsGqVjg3PWwux2ZpCEB8FMHOOmVZxW99wMv1f698T9h08xlUAgmsC/QKoboF2FYDIzOeY3nNAJ5SlXqmhs+vZSfmdpfLv54oVPsHcNazrQ3LN5SBkL2uY81Ffz00HuRFOFLNQp55dt+JhgFa4ViykelC8SKIO4lD+tZzrO6GAYahjty6nnpZNUgwAPD+f0BcgX+0REOFh6dAtWGtyjC0fjc5aj3O5R51fOr8eiF5UpVI4I6kvkRrmcLMPk2eji9K8Jtrm36NTetdt82ut/1V8QempksofJ816wAAAABJRU5ErkJggg==");
}

@keyframes arrowAnimation {
  0% {
    height: 48px;
  }
  50% {
    height: 0;
  }
  100% {
    height: 48px;
  }
}
/*
    PADRÃO TITULO PÁGINAS
*/
.page-heading {
  padding: 5rem 1rem;
}
.page-heading .page-title {
  margin-bottom: 1rem;
}
.page-heading .page-title h3 {
  font-size: 0.874rem;
  font-weight: 400;
  line-height: 2rem;
  color: var(--first-color);
}
.page-heading .page-title h1 {
  font-size: calc(2rem + 1svw);
  font-weight: 400;
  line-height: calc(2rem + 1svw);
}
.page-heading .description p {
  color: var(--third-color);
  line-height: 1.5rem;
}

.conttis-cta {
  padding: calc(5rem + 2vw) 0;
  background: url("../img/bg-clients.webp") no-repeat top center;
}
.conttis-cta .cta-inner {
  text-align: center;
}
.conttis-cta .cta-inner span {
  display: block;
  color: var(--fifth-color);
}
.conttis-cta .cta-inner .cta-title {
  font-size: 4rem;
  font-weight: 600;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.conttis-cta .cta-inner .specialist-button {
  background: var(--fifth-color);
}
.conttis-cta .cta-inner p {
  color: var(--sixth-color);
  line-height: 1.5rem;
  margin: 1.5rem 0;
}

.conttis-chat {
  position: fixed;
  max-width: 340px;
  top: calc(10svh + 20svw);
  right: calc(4vh + 4vw);
  padding: 1rem 1rem;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  z-index: 5;
  transition: right 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.conttis-chat .specialist-button {
  background: var(--second-color);
}
.conttis-chat .box-inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
.conttis-chat .box-inner .icon-box-conttis {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.333rem;
  height: 3.333rem;
  background: #fff;
  border-radius: 5rem;
  left: -3rem;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.conttis-chat .box-inner .icon-box-conttis span {
  display: inherit;
}
.conttis-chat .box-inner .text-box {
  color: #fff;
}
.conttis-chat .box-inner .text-box span {
  font-weight: 700;
}
.conttis-chat .box-inner .text-box p {
  margin-bottom: 0.5rem;
}

.minimized {
  background: #fff;
  top: 6rem;
  right: 1vw;
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.3);
}
.minimized .box-inner .icon-box-conttis {
  transform: rotate(720deg);
  border: 2px solid var(--first-color);
}
.minimized .box-inner .text-box {
  color: var(--sixth-color);
}
.minimized .box-inner .text-box p {
  margin-bottom: 0;
}
.minimized .specialist-button {
  display: none;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
}
.minimized:hover .box-inner .text-box {
  font-size: 1rem;
  color: var(--sixth-color);
}
.minimized:hover .box-inner .text-box p {
  margin-bottom: 0.5rem;
}
.minimized:hover .specialist-button {
  display: block;
}

@media only screen and (max-width: 1200px) {
  #exclusive-service .inner-container {
    flex-wrap: wrap;
    gap: 2rem;
  }
  #exclusive-service .service-text {
    flex: 1;
  }
  #exclusive-service .service-text .h2-title h2 {
    font-size: calc(2rem + 2vw);
  }
  #exclusive-service .service-text .human-service-text {
    padding-left: 0;
  }
  #exclusive-service .service-img {
    flex: 1;
  }
  #exclusive-service .service-img .schedule-visit {
    position: relative;
    transform: translate(-25%, -25%);
    max-width: 380px;
  }
  #exclusive-service .service-img .schedule-visit span {
    font-size: 1.5rem;
  }
  #exclusive-service .service-img .schedule-visit p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .home-page header.is-mobile #button-nav-mobile {
    border-color: #fff;
  }
  .home-page header.is-mobile #button-nav-mobile::before, .home-page header.is-mobile #button-nav-mobile::after {
    background: #fff;
  }
  #main-header .nav-sub-menu .sub-menu a {
    font-size: 1.125rem;
  }
  header.is-mobile .main-top-nav {
    display: flex;
    align-items: center;
    position: fixed;
    background: var(--sixth-color);
    width: 80%;
    top: 0;
    bottom: 0;
    left: -100%;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
  }
  header.is-mobile .main-top-nav .nav-list {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  header.is-mobile .main-top-nav .nav-list a {
    font-size: 2rem;
  }
  header.is-mobile .main-top-nav .sub-menu {
    z-index: 10;
  }
  header.is-mobile .nav-opened {
    transform: translateX(120%);
  }
  header.is-mobile #button-nav-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    border-bottom: 2px solid var(--sixth-color);
    width: 50px;
    height: 40px;
    cursor: pointer;
  }
  header.is-mobile #button-nav-mobile::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--sixth-color);
  }
  header.is-mobile #button-nav-mobile::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--sixth-color);
    transition: transform 0.2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
  }
  header.is-mobile #button-nav-mobile:hover::after {
    transform: translateX(-1rem);
  }
  .conttis-chat {
    display: none;
  }
  .main-slide .main-slide-grid {
    grid-template-rows: 16rem repeat(2, minmax(0, 1fr));
  }
  .main-slide .main-slide-grid .intro-text {
    grid-column: 2/12;
    padding-top: 0;
  }
  .business-segment .carousel .carousel-wrapper {
    grid-column: 1/13;
    margin-left: 0;
  }
  #exclusive-service .service-text {
    min-width: 380px;
  }
  #exclusive-service .service-img {
    min-width: 380px;
  }
  #call-to-action .box-cta h2, #call-to-action .box-cta p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-slide .main-slide-grid .button-scroll-page .scroll-page-icon {
    transform: translateY(3rem);
  }
  footer {
    background-position: 50vw 55%;
  }
  footer .grid {
    grid-template-rows: 110px repeat(2, minmax(0, 1fr));
  }
  footer .grid .row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
  }
  footer .grid .row:last-child {
    flex-direction: column-reverse;
  }
  footer .footer-contact-infos {
    text-align: left;
    padding-top: 2rem;
    font-size: 1.5rem;
  }
  footer .footer-menu {
    display: none;
  }
  .business-segment .item .inner-item .item-header h3 {
    font-size: 2.2rem;
  }
  #exclusive-service .service-text {
    padding-top: 0;
  }
  #exclusive-service .service-img {
    margin-bottom: 0;
  }
  #exclusive-service .service-img .schedule-visit {
    transform: translate(0, -10%);
    max-width: 100%;
    border-radius: 0 0 1rem 1rem;
  }
}
@media screen and (max-width: 576px) {
  .business-segment .item .inner-item .item-header h3 {
    font-size: 1.6rem;
  }
}

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