@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(0, 0, 0);
  -webkit-text-size-adjust: 100%;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}
body.open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 32px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.burger {
  display: none;
  position: absolute;
  left: 24px;
  top: calc(50% - 7px);
  width: 18px;
  height: 14px;
  cursor: pointer;
  z-index: 111;
  margin-left: 10px;
}
.burger.open:before {
  border-radius: 10px;
  background: rgb(37, 71, 150);
  transform: rotate(-45deg);
  top: 8px;
  height: 3px;
}
.burger.open:after {
  border-radius: 10px;
  background: rgb(37, 71, 150);
  top: 8px;
  transform: rotate(45deg);
  height: 3px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 18px;
  height: 3px;
  border-radius: 10px;
  background: rgb(37, 71, 150);
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 18px;
  height: 3px;
  border-radius: 10px;
  background: rgb(37, 71, 150);
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 3px;
  border-radius: 10px;
  background: rgb(37, 71, 150);
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
}

header {
  position: relative;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  background: #fff;
  width: 100%;
}
@media (max-width: 992px) {
  header {
    justify-content: center;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  header {
    border-radius: 0 0 20px 0;
  }
}

.logo {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    height: 100vh;
    z-index: 99;
    background: #fff;
    padding-top: 70px;
  }
}
.main-menu.open {
  display: block;
}
.main-menu ul {
  display: flex;
}
@media (max-width: 992px) {
  .main-menu ul {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
.main-menu ul li {
  margin-right: 24px;
}
@media (max-width: 992px) {
  .main-menu ul li {
    margin-right: 0;
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .main-menu ul li {
    margin: 0;
  }
}
.main-menu ul li a {
  color: rgb(101, 105, 127);
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
@media (max-width: 992px) {
  .main-menu ul li a {
    font-size: 14px;
    border-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
  }
}
.main-menu ul li a:hover {
  color: rgb(60, 82, 181);
  border-color: rgb(60, 82, 181);
}

.header-clients {
  display: flex;
  align-items: center;
  color: rgb(71, 75, 184);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .header-clients {
    display: none;
  }
}
.header-clients strong {
  font-weight: 700;
  margin-right: 8px;
}
.header-clients .icon {
  display: block;
  margin-right: 10px;
}
.header-clients .icon img {
  display: block;
}

.main-banner {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(28, 23, 83), rgb(38, 81, 165) 100%);
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .main-banner {
    border-radius: 0;
    width: 100%;
    margin: -15px 0 0 0;
  }
}
.main-banner:after {
  content: "";
  width: 189px;
  height: 215px;
  background: url(../img/shield-left.png) no-repeat;
  position: absolute;
  left: -90px;
  bottom: -50px;
  z-index: 0;
}
@media (max-width: 992px) {
  .main-banner:after {
    display: none;
  }
}
.main-banner:before {
  content: "";
  width: 267px;
  height: 238px;
  background: url(../img/shield.png) no-repeat;
  position: absolute;
  right: -37px;
  bottom: -45px;
  z-index: 0;
}
@media (max-width: 768px) {
  .main-banner:before {
    transform: scale(0.8);
    right: -90px;
    bottom: -50px;
  }
}
.main-banner__bg {
  width: 100%;
  height: 100%;
  background: url(../img/shield-bg.svg) repeat 0% -20px;
  background-size: cover;
  padding: 50px 60px 50px 160px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .main-banner__bg {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .main-banner__bg {
    padding-right: 120px;
    padding-bottom: 70px;
  }
}
.main-banner h1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  letter-spacing: 8%;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main-banner h1 {
    font-size: 22px;
    line-height: 26px;
  }
}
.main-banner h1 small {
  display: block;
  padding-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: none;
}
@media (max-width: 768px) {
  .main-banner h1 small {
    font-size: 14px;
    padding-top: 5px;
  }
}

h2 {
  color: rgb(9, 9, 9);
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 8%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 24px;
}
h2.white-color {
  color: #fff;
}
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
h2 small {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-transform: none;
  display: block;
  padding-top: 10px;
}
@media (max-width: 768px) {
  h2 small {
    font-size: 12px;
    line-height: 18px;
  }
}

.insurance-click {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(217, 220, 251), rgb(230, 237, 255) 100%);
}
@media (max-width: 768px) {
  .insurance-click {
    width: 100%;
    border-radius: 0;
    padding-bottom: 45px;
  }
}
.insurance-click__content {
  padding: 100px 0 100px 170px;
}
@media (max-width: 1440px) {
  .insurance-click__content {
    padding: 50px 0 50px 35px;
  }
}
@media (max-width: 768px) {
  .insurance-click__content {
    padding: 30px 20px 0 20px;
  }
}
.insurance-click__text {
  display: block;
  color: rgb(9, 9, 9);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 390px;
}
@media (max-width: 768px) {
  .insurance-click__text {
    font-size: 14px;
    line-height: 17px;
  }
}
.insurance-click p {
  color: rgb(9, 9, 9);
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  max-width: 390px;
  margin-bottom: 24px;
}
.insurance-click__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 0;
}
@media (max-width: 992px) {
  .insurance-click__image {
    position: relative;
    width: 100%;
    border-top: 1px solid rgb(198, 208, 243);
  }
}
.insurance-click__image img {
  display: block;
  height: 100%;
}
@media (max-width: 992px) {
  .insurance-click__image img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .insurance-click .btn {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
    left: 0;
    border-radius: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  background: rgb(71, 75, 184);
  height: 45px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
  transition: 0.5s;
}
.btn .icon {
  margin-right: 10px;
}
.btn .icon img {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn:hover {
  background: rgb(131, 94, 237);
}

.benefits {
  padding: 80px 0;
  border-bottom: 1px solid rgb(220, 228, 238);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .benefits {
    padding: 30px 0;
  }
}
.benefits h2 {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .benefits h2 {
    margin-bottom: 30px;
  }
}

.benefits-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.benefits-item {
  width: calc(25% - 18px);
}
@media (max-width: 768px) {
  .benefits-item {
    width: 100%;
    margin-bottom: 24px;
  }
  .benefits-item:last-child {
    margin-bottom: 0;
  }
}
.benefits-item__icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .benefits-item__icon {
    width: 40px;
    height: 40px;
  }
}
.benefits-item__icon img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.benefits-item__title {
  display: block;
  color: rgb(9, 9, 9);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 8%;
  text-align: left;
  margin-bottom: 14px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .benefits-item__title {
    font-size: 14px;
    line-height: 18px;
  }
}
.benefits-item p {
  color: rgb(101, 105, 127);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 768px) {
  .benefits-item p {
    font-size: 12px;
  }
}

.insurance-company {
  padding: 55px 0 45px 0;
  border-top: 1px solid rgb(220, 228, 238);
}
@media (max-width: 768px) {
  .insurance-company {
    padding: 30px 0;
  }
}

.confidence {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgb(217, 220, 251), rgb(230, 237, 255) 100%);
  padding: 70px 300px 70px 170px;
  margin-bottom: 25px;
  max-width: 100%;
}
@media (max-width: 1440px) {
  .confidence {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  .confidence {
    width: 100%;
    padding: 30px 20px;
    border-radius: 0;
    flex-direction: column;
    margin-bottom: 25px;
  }
}
.confidence:before {
  content: "";
  position: absolute;
  width: 403px;
  height: 456px;
  left: calc(50% - 201px);
  bottom: -60px;
  background: url(../img/shield-lg.png) no-repeat;
}
@media (max-width: 992px) {
  .confidence:before {
    background-size: 162px 183px;
    left: auto;
    right: -30px;
    bottom: -50px;
    width: 162px;
    height: 183px;
    transform: scale(0.7);
  }
}
.confidence__content {
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .confidence__content {
    width: 100%;
  }
}
.confidence__list {
  max-width: 210px;
}
@media (max-width: 992px) {
  .confidence__list {
    max-width: 100%;
    padding-right: 80px;
    width: 100%;
  }
}
.confidence__list ul li {
  display: flex;
  color: rgb(9, 9, 9);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .confidence__list ul li {
    margin-bottom: 24px;
  }
}
.confidence__list ul li:last-child {
  margin-bottom: 0;
}
.confidence__list ul li .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin-right: 20px;
  display: block;
}
@media (max-width: 992px) {
  .confidence__list ul li .icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    min-width: 24px;
  }
}
.confidence__list ul li .icon img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.about {
  position: relative;
  padding: 144px 0;
  background: linear-gradient(153.43deg, rgb(47, 48, 96) 35.251%, rgb(51, 54, 123) 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 30px 0;
  }
}
.about:before {
  content: "";
  width: 197px;
  height: 1737px;
  position: absolute;
  left: -50px;
  top: -180px;
  background: url(../img/about-bg.png) 0 0 repeat-y;
}
.about:after {
  content: "";
  width: 500px;
  height: 666px;
  position: absolute;
  right: -5px;
  top: 37px;
  background: url(../img/about-img.png) 0 0 no-repeat;
}
@media (max-width: 992px) {
  .about:after {
    display: none;
  }
}
.about h2 {
  color: #fff;
}
.about p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  max-width: 505px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about p {
    font-size: 12px;
    line-height: 17px;
  }
}
@media (max-width: 768px) {
  .about .btn {
    width: 100%;
  }
}

footer {
  background: rgb(37, 38, 80);
  padding: 45px 0;
}
@media (max-width: 992px) {
  footer {
    padding: 24px 0;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer-content {
    justify-content: center;
  }
}
.footer-content .footer-logo {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .footer-menu {
    display: none;
  }
}
.footer-menu ul {
  display: flex;
}
.footer-menu ul li {
  margin-right: 24px;
}
.footer-menu ul li a {
  color: rgb(147, 152, 183);
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
.footer-menu ul li a:hover {
  color: #fff;
  border-color: #fff;
}

.company-item {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, rgb(240, 244, 249), rgb(236, 243, 255) 100%);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .company-item {
    flex-direction: column;
    background: linear-gradient(90deg, rgb(240, 244, 249), rgb(236, 243, 255) 100%);
  }
}
.company-item__content {
  padding: 50px 75px 30px 50px;
  width: 100%;
}
@media (max-width: 1180px) {
  .company-item__content {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .company-item__content {
    padding: 0 10px 15px 10px;
  }
}
.company-item__top {
  display: flex;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(215, 220, 226);
}
.company-item__logo {
  width: 84px;
  min-width: 84px;
  margin-right: 24px;
  display: block;
  overflow: hidden;
}
@media (max-width: 992px) {
  .company-item__logo {
    display: none;
  }
}
.company-item__logo img {
  display: block;
  mix-blend-mode: multiply;
  width: 100%;
  border: 1px solid rgb(215, 220, 226);
  border-radius: 8px;
}
.company-item__title {
  display: block;
  color: rgb(9, 9, 9);
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.company-item p {
  color: rgb(9, 9, 9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
.company-item__type {
  color: rgb(9, 9, 9);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.company-item__type span {
  color: rgb(101, 105, 127);
  font-weight: 400;
  margin-right: 5px;
}
.company-item__middle {
  padding: 24px 0 20px 0;
  border-bottom: 1px solid rgb(215, 220, 226);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .company-item__middle {
    padding-top: 16px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}
.company-item__aside {
  width: 405px;
  min-width: 405px;
  background: rgb(225, 233, 243);
  padding: 30px 40px;
  border-left: 1px solid rgb(215, 220, 226);
  border-radius: 0 10px 10px 0;
}
@media (max-width: 992px) {
  .company-item__aside {
    width: 100%;
    order: -2;
    padding: 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    min-width: 100%;
  }
}
.company-item__image {
  display: block;
  width: 100%;
  height: 165px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .company-item__image {
    height: auto;
    margin-bottom: 10px;
  }
}
.company-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-item__insurance {
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  border-radius: 4px;
  padding: 10px 16px;
  background: rgb(255, 255, 255);
  margin-bottom: 8px;
}
.company-item__insurance .icon {
  margin-right: 10px;
}
.company-item__insurance .icon img {
  display: block;
}
.company-item__rating {
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  border-radius: 4px;
  padding: 10px 16px;
  background: rgb(255, 255, 255);
  margin-bottom: 8px;
}
.company-item__rating ul {
  display: flex;
}
.company-item__rating ul li {
  margin-right: 10px;
}
.company-item__rating ul li img {
  width: 14px;
  height: 14px;
}
.company-item__orders {
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  padding: 10px 16px;
  border-radius: 4px;
  background: rgb(255, 255, 255);
}
.company-item__orders .icon {
  margin-right: 10px;
}
.company-item__orders .icon img {
  display: block;
}
.company-item .btn {
  width: 100%;
}

.company-peculiarities {
  width: calc(50% - 2px);
  border-radius: 10px;
  padding: 7px 13px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .company-peculiarities {
    width: 100%;
  }
}
.company-peculiarities__title {
  color: rgb(9, 9, 9);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.company-peculiarities .icon {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 20px;
  min-width: 30px;
}
.company-peculiarities .icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.order-insurance {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(124.99deg, rgb(71, 75, 184) 0.557%, rgb(110, 114, 222) 99.769%);
}
.order-insurance:before {
  content: "";
  width: 346px;
  height: 230px;
  position: absolute;
  right: 100px;
  bottom: -30px;
  background: url(../img/order-insurance.png) 0 0 no-repeat;
}
@media (max-width: 1180px) {
  .order-insurance:before {
    right: -30px;
  }
}
@media (max-width: 768px) {
  .order-insurance:before {
    right: 30px;
    width: 244px;
    height: 163px;
    background-size: 244px 163px;
  }
}
.order-insurance__bg {
  padding-left: 85px;
  display: flex;
  align-items: center;
  height: 220px;
}
@media (max-width: 992px) {
  .order-insurance__bg {
    padding-left: 35px;
  }
}
@media (max-width: 768px) {
  .order-insurance__bg {
    padding: 25px;
    height: auto;
    padding-bottom: 150px;
  }
}
.order-insurance h2 {
  color: #fff;
}
@media (max-width: 992px) {
  .order-insurance h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.order-insurance h2 small {
  color: #fff;
  text-transform: uppercase;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .order-insurance h2 small {
    font-size: 14px;
    padding-top: 10px;
  }
}

.swiper-wrapper-nav {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  display: none;
}
@media (max-width: 768px) {
  .swiper-wrapper-nav {
    display: flex;
  }
}

.swiper-pagination {
  width: auto;
  display: flex;
  justify-content: flex-start;
}

.swiper-button-prev {
  position: relative;
  width: 81px;
  height: 81px;
  background: url(../img/slider-arrow.svg) 50% 50% no-repeat;
  display: flex;
  align-items: center;
  left: 0;
  top: calc(50% - 40px);
  justify-content: center;
  margin-right: 10px;
  display: none;
}
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  position: absolute;
  width: 81px;
  height: 81px;
  background: url(../img/slider-arrow.svg) 50% 50% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 16px);
  right: 0;
}
@media (max-width: 768px) {
  .swiper-button-next {
    display: none;
  }
}
.swiper-button-next:after {
  display: none;
}

.copmapy-slider {
  margin-bottom: 34px;
  position: relative;
  z-index: 11;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .copmapy-slider {
    background: #fff;
    padding-top: 15px;
    margin-top: -15px;
    border-radius: 15px 0 0 0;
    margin-bottom: 22px;
  }
}
.copmapy-slider .swiper-slide {
  width: 425px;
  margin-right: 24px;
  height: auto;
  border-radius: 10px;
  background: rgb(240, 244, 249);
}
@media (max-width: 768px) {
  .copmapy-slider .swiper-slide {
    width: 200px;
    margin-right: 12px;
  }
}
.copmapy-slider .swiper-container {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .copmapy-slider .swiper-container {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .copmapy-slider .swiper-wrapper-nav {
    padding-top: 40px;
  }
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgb(240, 244, 249);
  margin: 0 8px 0 0;
  border: 1.2px solid rgb(240, 244, 249);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  border: 1.2px solid rgb(60, 82, 181);
  background: transparent;
}

.company-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: 17px 0;
  height: 100%;
}
@media (max-width: 768px) {
  .company-slide {
    flex-direction: column;
    padding: 0;
  }
}
.company-slide__rating {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 48px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: rgb(0, 0, 0);
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  background: rgb(255, 255, 255);
}
.company-slide__rating .icon {
  display: block;
  margin-right: 4px;
}
.company-slide__rating .icon img {
  display: block;
  width: 10px;
  height: 10px;
}
.company-slide__content {
  padding: 17px 42px;
}
@media (max-width: 768px) {
  .company-slide__content {
    padding: 0 24px 24px 24px;
  }
}
.company-slide__title {
  display: block;
  color: rgb(9, 9, 9);
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  margin-bottom: 11px;
  text-transform: uppercase;
}
.company-slide p {
  color: rgb(9, 9, 9);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 11px;
}
.company-slide__link a {
  display: flex;
  align-items: center;
  color: rgb(60, 82, 181);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}
.company-slide__link a:hover {
  text-decoration: underline;
}
.company-slide__link .icon {
  display: block;
  margin-right: 8px;
}
.company-slide__link .icon img {
  width: 18px;
  height: 18px;
  display: block;
}
.company-slide__logo {
  width: 185px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgb(225, 232, 242);
  min-width: 185px;
}
@media (max-width: 768px) {
  .company-slide__logo {
    border: 0;
    width: 100%;
    min-widt: 100%;
    order: -2;
    justify-content: flex-start;
  }
}
.company-slide__logo img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .company-slide__logo img {
    width: 82px;
  }
}

.can-be-insured {
  margin-bottom: 96px;
  padding-top: 80px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .can-be-insured {
    margin-bottom: 40px;
    padding-top: 24px;
  }
}

.insured-slider {
  position: relative;
}
.insured-slider .swiper-wrapper-nav {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  display: none;
}
@media (max-width: 992px) {
  .insured-slider .swiper-wrapper-nav {
    display: flex;
  }
}
.insured-slider .swiper-wrapper {
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 993px) {
  .insured-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: calc(33.3333333333% + 8px);
    position: relative;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}
.insured-slider .swiper-slide {
  margin-right: 8px;
  width: auto;
}
@media (min-width: 993px) {
  .insured-slider .swiper-slide {
    width: calc(50% - 12px);
    margin-bottom: 24px;
    margin-right: 0;
  }
}
@media (min-width: 993px) {
  .insured-slider .swiper-slide--lg {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(33.3333333333% - 16px);
  }
}
@media (min-width: 993px) {
  .insured-slider .swiper-slide--lg .insured-item {
    height: 564px;
  }
}
@media (min-width: 993px) {
  .insured-slider .swiper-slide--lg .insured-item .insured-item__img {
    bottom: -10px;
  }
}

.insured-item {
  width: 100%;
  padding: 46px 42px;
  position: relative;
  border-radius: 10px;
  background: rgb(240, 244, 249);
  overflow: hidden;
  height: 270px;
}
@media (max-width: 992px) {
  .insured-item {
    width: 270px;
    padding: 22px;
  }
}
.insured-item__title {
  display: block;
  color: rgb(9, 9, 9);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 8%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.insured-item p {
  color: rgb(101, 105, 127);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: left;
}
.insured-item__img {
  position: absolute;
  right: -30px;
  bottom: -50px;
}

.another-company {
  position: relative;
  margin-bottom: 80px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .another-company {
    margin-bottom: 20px;
  }
}
.another-company .swiper-slide {
  width: 425px;
  margin-right: 24px;
  height: auto;
  border-radius: 10px;
  background: rgb(240, 244, 249);
}
@media (max-width: 768px) {
  .another-company .swiper-slide {
    width: 200px;
    margin-right: 12px;
  }
}
.another-company .swiper-container {
  padding-left: 0px;
}
@media (max-width: 768px) {
  .another-company .swiper-wrapper-nav {
    padding-top: 40px;
  }
}

.another-company-slider .swiper-button-next {
  top: auto;
  bottom: 40px;
}
.another-company-slider .swiper-container {
  position: inherit;
}

.com-bottom {
  position: relative;
  background: rgb(56, 57, 103);
  padding: 50px 0 80px 0;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .com-bottom {
    padding: 24px 0;
  }
}
.com-bottom .swiper-container {
  position: inherit;
}

.com-slider .swiper-button-next {
  top: auto;
  bottom: 100px;
}
.com-slider .swiper-slide {
  width: auto;
  margin-right: 10px;
}

.com-item {
  width: 220px;
  padding: 36px 32px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
}
.com-item p {
  color: rgb(25, 24, 33);
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 3%;
  text-align: left;
}/*# sourceMappingURL=styles.css.map */