body {
	font-family: 'CeraPro';
}
a {
	text-decoration: none;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/* header ***************************************************************************************************/
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.header-logo {
    flex: 1;
}
.header-socials {
    flex: 1;
    display: flex;
    justify-content: center;
}
.header-socials a {
    padding: 0 20px;
}
.header-contacts {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}
.header-contacts a {
    padding: 0 15px;
    color: #FFF; 
    font-family: 'Inter';
    font-weight: 300;
}
.header-contacts a:last-child {
    border-left: 1px solid;
}
.header-menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 120px;
    background: #fff;
    border-radius: 15px;
}
.header-menu.mobile {
    display: none;
}
.header-menu a {
    font-family: 'Inter';
    font-weight: 300;
    color: #1A1D2C;
}
.header-menu a:hover {
    font-weight: 700;
    color: #4F86F9;
}

/* hero ***************************************************************************************************/
.hero {
    position: relative;
    height: 100vh;
    background: url(../img/hero.jpg) no-repeat center top;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 0 0 30px 30px;
    border-radius: 0 0 30px 30px;
}
.hero-inner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
}
.hero-text {
    font-size: 24px;
    color: #fff;
    list-style: none;
    padding-left: 22px;
    margin-bottom: 30px;
}
.hero-text li {
    position: relative;
}
.hero-text li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #FF6500;
    position: absolute;
    border-radius: 5px;
    top: 16px;
    left: -20px;
}
.main-button {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #4F86F9;
    padding: 17px 44px;
    border-radius: 100px;
}

/* about ***************************************************************************************************/
.about {
    padding: 100px 0 120px;
    background: #F8F8F8;
}
.about-row {
    display: flex;
    margin-bottom: 30px;
}
.about-title {
    font-size: 40px;
    font-weight: 500;
    color: #1A1D2C;
    width: 150%;
    line-height: 50px;
    margin: 0;
}
.about-title span {
    color: #4F86F9;
}
.about-text {
    color: #1A1D2C;
    margin: 0;
}
.about-image {
    width: 100%;
    height: 400px;
    background: url(../img/about.jpg) no-repeat;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 20px;
}

/* mission ***************************************************************************************************/
.mission {
    padding: 120px 0 50px;
}
.mission-inner {
    display: flex;
    align-items: center;
}
.mission-left {
    width: 42%;
    border-left: 20px solid #4F86F9;
    padding-left: 40px;
}
.mission-title {
    font-size: 48px;
    font-weight: 500;
    color: #1A1D2C;
    margin-bottom: 20px;
}
.mission-text {
    color: #1A1D2C;
    width: 500px;
    margin-bottom: 5px;
}
.mission-right {
    width: 58%;
    display: flex;
    justify-content: center;
}
.mission-block {
    position: relative;
}
.mission-vector {
    position: absolute;
    top: -36px;
    left: -36px;
    animation: rotation 30s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}

/* services ***************************************************************************************************/
.services {
    overflow: hidden;
}
.swiper-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.services-title {
    font-size: 40px;
    font-weight: 500;
    color: #1A1D2C;
}
.services-title span {
    color: #4F86F9;
}
.swiper-controls {
    position: relative;
    display: flex;
}
.swiper-button-prev, .swiper-button-next {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    width: 48px;
    height: 48px;
}
.swiper-button-next {
    margin-left: 80px;
}
.swiper-button-prev:after, .swiper-button-next:after {
    display: none;
}
.swiper-1 {
    overflow: inherit;
}
.swiper-slide {
    position: relative;
}
.services-image {
    width: 100%;
    border-radius: 20px;
}
.services-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
}
.services-name {
    font-weight: 500;
    color: #1A1D2C;
    background: #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 5px;
}
.services-text {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}
.services-link {
    font-size: 20px;
    font-weight: 500;
    color: #4F86F9;
}
.services-button {
    padding: 60px 0 120px;
}

/* advantages ***************************************************************************************************/
.advantages {
    overflow: hidden;
}
.advantages-ticker {
  width: 100%;
  display: flex;
}
.advantages-ticker img {
  color: #000;
  font-size: 4em;
  background: #fff;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  animation: animate 30s linear infinite;
  animation-delay: -30s;
}
@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.advantages-ticker img:nth-child(2) {
  animation: animate2 30s linear infinite;
  animation-delay: -15s;
}
@keyframes animate2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.advantages-content {
    margin-top: 20px;
    padding: 100px 0;
    background: url(../img/advantages-bg.jpg) no-repeat center top;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.advantages-content .col-12 {
    padding-top: calc(var(--bs-gutter-x)* .5);
    padding-bottom: calc(var(--bs-gutter-x)* .5);
}
.advantages-inner {
    background: #fff;
    height: 240px;
    border-radius: 15px;
    position: relative;
    padding: 20px 18px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.advantages-inner:hover {
    background: #FF6500;
}
.advantages-text {
    font-size: 24px;
    font-weight: 500;
    color: #1A1D2C;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.advantages-inner:hover .advantages-text {
    color: #FFF; 
}
.advantages-image {
    position: absolute;
    bottom: 0;
    right: 0;
}
#advantages-image-04 {
    right: 50px;
}
#advantages-image-05 {
    right: 20px;
}
#advantages-image-06 {
    right: 40px;
}

/* specialists ***************************************************************************************************/
.specialists {
    padding: 100px 0 50px;
    overflow: hidden;
}
.swiper-2 {
    overflow: inherit;
}
.swiper-2 .swiper-slide-active {
    transform: scale(1.08);
    transform-origin: top;
}
.specialists-image {
    width: 100%;
}
.specialists-name {
    margin-top: 16px;
    font-size: 32px;
    font-weight: 500;
    color: #1A1D2C;
    margin-bottom: 10px;
}
.swiper-2 .swiper-slide-active .specialists-name {
    color: #4F86F9;
}
.specialists-text {
    font-size: 20px;
    color: #1A1D2C;
}

/* testimonials ***************************************************************************************************/
.testimonials {
    padding: 20px 0 100px;
}
.testimonials-image {
    width: 100%;
    border: 1px solid #4F86F9;
    border-radius: 15px;
}
.testimonials-button {
    padding-top: 60px;
}

/* footer ***************************************************************************************************/
footer {
    background: #1A1D2C;
}
.footer-top {
    padding: 35px 0 60px;
    border-bottom: 1px solid #484a56;
}
.footer-top-inner {
    display: flex;
    flex-direction: column;
}
.footer-title {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 700;
    color: #4F86F9;
    margin-bottom: 10px;
}
.footer-text {
    font-family: 'Inter';
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}
.footer-contacts {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-icon {
    margin-right: 15px;
}
.footer-contacts .footer-text {
    margin-bottom: 0;
}
.footer-phone:last-child {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #fff; 
}
.footer-socials a:last-child {
    padding-left: 40px; 
}
.footer-bottom {
    padding: 35px 0;
}
.footer-bottom-inner {
    display: flex;
}
.footer-bottom .footer-text {
    flex: 1;
    margin: 0;
}

/* modal ***************************************************************************************************/
.modal-dialog {
    margin-top: 10%;
    width: 750px;
}
.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
.modal-content {
    padding: 65px 70px 45px;
}
.modal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal-form.hide {
    display: none;
}
.modal-title {
    font-size: 28px;
    font-weight: 500;
    color: #1A1D2C;
    margin-bottom: 30px;
    text-align: center;
    line-height: 34px;
}
.modal-form input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #000;
    padding-left: 10px;
}
.modal-form textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #000;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-top: 5px;
}
.modal-form input[type="submit"] {
    border-bottom: none;
    height: 48px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #4F86F9;
    border-radius: 24px;
    margin: 0;
}
.modal-form-sent {
    display: none;
    flex-direction: column;
    align-items: center;
}
.modal-form-sent.show {
    display: flex;
}
.modal-form-sent .modal-title {
    margin-bottom: 10px;
}
.modal-text {
    text-align: center;
    color: #1A1D2C;
}

/* services page ***************************************************************************************************/
.services-hero-1 {
    background: url(../img/hero-01.jpg) no-repeat center top;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.services-hero .hero-inner {
    height: 45vh;
    justify-content: end;
    padding-bottom: 5vh;
}
.breadcrumbs {
    margin-bottom: 10vh;
}
.breadcrumbs a {
    font-size: 14px;
    color: #fff;
}
.breadcrumbs span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4F86F9;
    border-radius: 4px;
    margin: 0 8px;
}
.services-content {
    padding: 50px 0 80px;
}
.services-content-left {
    padding-right: 100px;
}
.services-content-top {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid;
}
.services-content-list {
    font-size: 20px;
    color: #1A1D2C;
}
.services-content-bottom .services-content-list {
    font-weight: 500;
}
.services-content-right {
    padding: 55px 85px;
    background: #F8F8F8;
    border-radius: 15px;
}
#services-form input[type="text"], #services-form input[type="tel"], #services-form textarea {
    background: #F8F8F8;
}

#phone-call {
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius :50%;
    background-color: #15dc69;
    position: fixed;
    top: 80vh;
    left: 90vw;
    -webkit-transition: height .25s ease, width .25s ease;
    transition: height .25s ease, width .25s ease;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#phone-call:hover{
    height: 80px;
    width: 80px;
}
#phone-call:before, #phone-call:after {
    content: '';
    display: block;
    position: absolute;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    border-radius: 50%;
    border: 1px solid #15dc69;
    -webkit-animation: ripple 1.5s linear infinite;
    animation: ripple 1.5s linear infinite;
}
#phone-call:after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
#phone-call:hover:before, #phone-call:hover:after {
    -webkit-animation: none;
    animation: none;
}
@-webkit-keyframes ripple{
    0% {-webkit-transform:scale(1); }
    75% {-webkit-transform:scale(1.75); opacity:1;}
    100% {-webkit-transform:scale(2); opacity:0;}
}
@keyframes ripple{
    0% {transform:scale(1); }
    75% {transform:scale(1.75); opacity:1;}
    100% {transform:scale(2); opacity:0;}
}
#phone-call img {
    width: 30px; 
}