:root {
  --bs-primary: #0f47a0;
  --bs-primary-hover: #0d3e8d;
  --bs-secondary: #575757;
  --bs-light: #f3f6fe;
  --bs-bg: #fafafa;
  --bs-dark: #232323;
  --bs-dark-hover: #423d3e;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --font-1: Open Sans, sans-serif;
  --font-2: League Spartan, sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-1);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 22px;
  color: var(--bs-light);
  padding-top: 72px;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all 300ms ease-out 0s;
}
a:hover {
  text-decoration: none;
  color: var(--bs-dark);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: var(--fw-semi-bold);
  color: var(--bs-dark);
  letter-spacing: -1px;
}

h1 {
  font-size: 46px;
  line-height: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

h4 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  color: var(--bs-secondary);
}

h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

p {
  font-family: var(--font-2);
  font-size: 16px;
  color: var(--bs-secondary);
  line-height: 22px;
  margin-bottom: 16px;
}

.btn {
  font-family: var(--font-2);
  font-size: 15px;
  line-height: 15px;
  padding: 8px 26px;
  border-radius: 100px;
  font-weight: 700;
  border: 2px solid transparent;
  height: 40px;
  min-width: 165px;
  text-transform: uppercase;
  transition: all 300ms ease-out 0s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn i {
  font-size: 22px;
  margin-right: 10px;
  display: inline-flex;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-lg {
  padding: 4px 24px 0;
  text-transform: none;
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
  letter-spacing: 0.05em;
  height: 54px;
  min-width: 190px;
}

.btn-primary {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: transparent;
}
.btn-primary:hover {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: var(--bs-primary);
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: var(--bs-primary);
  box-shadow: none;
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: var(--bs-primary);
}

.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-dark {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
}
.btn-dark:hover {
  color: #fff;
  background-color: var(--bs-dark-hover);
  border-color: var(--bs-dark-hover);
}

.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: none;
}

.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}

.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-light {
  color: var(--bs-secondary);
  background-color: #fff;
  border-color: #fff;
}
.btn-light:hover {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
}

.btn-check:focus + .btn-light, .btn-light:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: none;
}

.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}

.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-light {
  background-color: var(--bs-light) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.text-dark {
  color: var(--bs-dark) !important;
}

.text-dark-blue {
  color: var(--bs-primary) !important;
}

.form-label {
  font-family: var(--font-2);
  color: var(--bs-dark);
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
  line-height: 18px;
}

.form-check-label {
  font-family: var(--font-2);
  color: var(--bs-dark);
  font-weight: var(--fw-normal);
  font-size: 16px;
}

.form-control, .form-select {
  border-radius: 0;
  padding: 12px 22px;
  font-size: 14px;
  background-color: #f3f6fe;
  border-radius: 3px;
  border: none;
}
.form-control:focus, .form-select:focus {
  outline: 0;
  box-shadow: none;
  background-color: #f3f6fe;
}

input.form-control, .form-select {
  height: 50px;
}

.form-select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.form-control::-moz-placeholder {
  color: var(--bs-primary);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--bs-primary);
  opacity: 1;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 6px;
}

input[type=radio]:checked, input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

input[type=radio]:checked + label, input[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  line-height: 14px;
  display: inline-block;
}

input[type=radio]:checked + label:before, input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 18px;
  height: 18px;
  border: 2px solid #6d6d6d;
  border-radius: 100%;
  background: #fff;
}

input[type=radio]:checked + label:after, input[type=radio]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 5px;
  border-radius: 100%;
}

input[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

input[type=radio]:checked + label:before {
  border-color: var(--bs-primary);
}

input[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.wrapper {
  height: 100%;
}

main {
  flex-direction: column;
  display: flex;
  height: 100%;
  min-height: 100%;
}

.fw-light {
  font-weight: var(--fw-light) !important;
}

.fw-normal {
  font-weight: var(--fw-normal) !important;
}

.fw-medium {
  font-weight: var(--fw-medium) !important;
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold) !important;
}

.fw-bold {
  font-weight: var(--fw-bold) !important;
}

.text-justify {
  text-align: justify !important;
}

.modal-content {
  border: 0;
  border-radius: 0;
}

.modal-header .btn-close {
  padding: 15px 15px;
}
.modal-header .btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.modal-body {
  padding: 36px;
}

.input-file {
  visibility: hidden;
  position: absolute;
}

.custom-input-file {
  display: flex;
}
.custom-input-file .form-control {
  background-color: transparent;
  border: transparent;
  width: auto;
}
.custom-input-file .btn-upload {
  background-color: #CDCBCB;
  color: #575656;
}

iframe {
  display: block;
}

#contact-form label.error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 4px;
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1004px;
  }
}
@media (max-width: 767px) {
  /*.container {
  	padding-right: 26px;
  	padding-left: 26px;
  }
  .row {
  	margin-right: -26px;
  	margin-left: -26px;
  }
  .row > * {
  	padding-right: 26px;
  	padding-left: 26px;
  }*/
  .btn-lg {
    color: var(--bs-primary);
    background-color: transparent;
    border-color: var(--bs-primary);
    padding: 2px 22px 0;
    font-size: 14px;
    height: 40px;
    min-width: auto;
  }
}
header {
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
}

.header-main {
  height: 72px;
  background-color: var(--bs-primary);
}

.main-menu .nav-link {
  font-family: var(--font-1);
  padding: 0 16px;
  font-size: 14px;
  color: #fff;
  font-weight: var(--fw-semi-bold);
  height: 72px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: all 300ms ease-out 0s;
}
.main-menu .nav-link:hover {
  opacity: 1;
}
.main-menu .active .nav-link {
  opacity: 1;
}
.main-menu .btn-dark {
  background-color: #0b6efd;
  color: #fff;
  border: none;
}
.main-menu .btn-dark:hover {
  background-color: #0765e7;
}

.navbar-brand {
  padding: 0;
  height: 43px;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .navbar-brand img {
  height: 100%;
}

header .menu-toggler {
  width: 24px;
  height: 21px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
header .menu-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .menu-toggler span:nth-child(1) {
  top: 0px;
}
header .menu-toggler span:nth-child(2), header .menu-toggler span:nth-child(3) {
  top: 9px;
}
header .menu-toggler span:nth-child(4) {
  top: 18px;
}

.header-btn {
  display: flex;
  align-items: center;
}
.header-btn .btn {
  margin-left: 16px;
  font-size: 14px;
  height: 37px;
  padding-top: 9px;
}

.side-bar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -224px;
  z-index: 99;
  width: 224px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #575668;
  padding: 94px 24px 20px;
  transition: all 0.2s ease 0s;
}
.side-bar .menu-toggler {
  width: 25px;
  height: 22px;
  background-image: url(../img/menu-icon-close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
}
.side-bar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.side-bar .side-menu a, .side-bar .side-menu .btn.btn-primary {
  font-family: var(--font-2);
  color: #fff;
  padding: 16px 0;
  display: inline-block;
  width: 100%;
  line-height: 15px;
  font-size: 18px;
  font-weight: var(--fw-light);
  letter-spacing: 0.1em;
  position: relative;
  height: auto;
  margin-left: 0;
  background-color: transparent;
  text-align: left;
  border: none;
}
.side-bar .side-menu a:hover, .side-bar .side-menu .btn.btn-primary:hover {
  color: #fff;
}
.side-bar .side-menu a::after, .side-bar .side-menu .btn.btn-primary::after {
  content: "";
  background-color: #fff;
  width: 60px;
  height: 1px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}
.side-bar .side-menu .active {
  color: var(--bs-primary);
}
.side-bar .side-menu ul {
  display: block;
}
.side-bar .side-menu li:last-child a::after {
  display: none !important;
}

@media (max-width: 991px) {
  header .menu-toggler {
    display: block;
  }
  header {
    transition: all 0.2s ease 0s;
  }
  main {
    transition: transform 0.2s ease 0s;
  }
  .open-menu body {
    overflow: hidden;
  }
  .open-menu .side-bar {
    left: 0;
  }
  .open-menu header .menu-toggler span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
  }
  .open-menu header .menu-toggler span:nth-child(2) {
    transform: rotate(45deg);
  }
  .open-menu header .menu-toggler span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .open-menu header .menu-toggler span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
  }
  .main-menu {
    display: none;
  }
  .header-main > .container > .d-flex {
    width: 100%;
    justify-content: center;
    padding-left: 22px;
  }
}
@media (max-width: 767px) {
  .navbar-brand {
    height: 34px;
  }
}
#home-slider .slider-img {
  height: 550px;
  background-size: cover;
  background-position: center;
}
#home-slider .slider-img::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 80%);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  display: none;
}
#home-slider .bg-video {
  width: calc(100% + 140px);
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}
#home-slider .carousel-caption {
  text-align: left;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  padding-top: 100px;
}
#home-slider .carousel-caption h2 {
  font-size: 38px;
  font-family: "Bitter", serif;
  font-weight: var(--fw-medium);
  color: rgb(0, 35, 102);
  margin-bottom: 28px;
  line-height: 42px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
#home-slider .carousel-caption p {
  font-size: 24px;
  font-family: "Bitter", serif;
  font-weight: var(--fw-medium);
  color: rgb(0, 35, 102);
  line-height: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#home-slider .carousel-caption .btn {
  margin-top: 26px;
}

@media (max-width: 991px) {
  #home-slider .bg-video {
    width: auto;
    height: 650px;
  }
}
@media (max-width: 767px) {
  #home-slider .carousel-caption {
    padding-top: 50px;
  }
  #home-slider .carousel-caption h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  #home-slider .carousel-caption p {
    font-size: 18px;
    line-height: 24px;
  }
  #home-slider .group-btn {
    text-align: center;
  }
  #home-slider .slider-img {
    height: 480px;
  }
  #home-slider .bg-video {
    width: auto;
    height: 650px;
  }
}
footer {
  background-color: var(--bs-primary);
  color: #fff;
  padding: 46px 0 46px 0;
}
footer h6 {
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 14px;
  color: #fff;
}
footer p {
  color: #fff;
  font-family: var(--font-1);
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 12px;
}
footer .nav-link {
  color: #fff;
  opacity: 0.9;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: var(--fw-semi-bold);
  padding-top: 0;
  padding-bottom: 0;
  line-height: 18px;
}
footer .nav-link:hover {
  color: #fff;
  opacity: 1;
}

.footer-top {
  background-color: #fff;
}
.footer-top > div {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-main {
  padding: 50px 0;
}
.footer-main .nav-link {
  padding: 4px 0;
  color: var(--bs-light);
  line-height: 20px;
}
.footer-main .nav-link:hover {
  color: var(--bs-primary);
}

.footer-icons {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.footer-icons a {
  background-color: #fff;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  text-align: center;
  font-size: 22px;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

@media (max-width: 767px) {
  footer {
    padding: 26px 0 26px 0;
    text-align: center;
  }
  .footer-icons {
    margin-bottom: 22px;
  }
  footer .nav-link {
    opacity: 1;
  }
}
.content-area {
  background-color: #fff;
  padding-top: 28px;
  padding-bottom: 28px;
}
.content-area.light {
  background-color: var(--bs-bg);
}

.content-area-block {
  padding: 42px 0;
  width: 100%;
  position: relative;
}
.content-area-block.light {
  background-color: var(--bs-bg);
}
.content-area-block.darck-bg-img {
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.content-area-block.darck-bg-img > div {
  position: relative;
  z-index: 1;
}
.content-area-block.darck-bg-img:before {
  content: "";
  background: #231F20;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.35;
}
.content-area-block.darck-bg-img h1, .content-area-block.darck-bg-img h2, .content-area-block.darck-bg-img h3, .content-area-block.darck-bg-img h4, .content-area-block.darck-bg-img h5, .content-area-block.darck-bg-img h6, .content-area-block.darck-bg-img blockquote {
  color: #fff;
}
.content-area-block.darck-bg-img p {
  color: #fff;
  opacity: 0.7;
}

.wizard-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  padding-top: 10px;
  justify-content: center;
}
.wizard-nav li {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.wizard-nav li::after, .wizard-nav li::before {
  content: "";
  height: 3px;
  background-color: #f0f0f0;
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 6px;
  z-index: 1;
}
.wizard-nav li:before {
  left: -50%;
}
.wizard-nav li:after {
  right: -50%;
}
.wizard-nav li:first-child:before {
  display: none;
}
.wizard-nav li:last-child:after {
  display: none;
}
.wizard-nav .dot {
  width: 15px;
  height: 15px;
  background-color: #f0f0f0;
  margin: auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wizard-nav p {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  color: #f0f0f0;
  line-height: 14px;
  margin-top: 6px;
}
.wizard-nav .competed .dot {
  background-color: #c6d1fc;
}
.wizard-nav .competed p {
  color: #c6d1fc;
}
.wizard-nav .competed::before {
  background-color: #c6d1fc;
}
.wizard-nav .competed::after {
  background-color: #c6d1fc;
}
.wizard-nav .active .dot {
  background-color: var(--bs-primary);
}
.wizard-nav .active p {
  color: var(--bs-primary);
}
.wizard-nav .active::before {
  background-color: #c6d1fc;
}
.wizard-nav .active::after {
  background-color: #f0f0f0;
}
.wizard-nav .pending::before {
  background-color: #f0f0f0;
}
.wizard-nav .pending::after {
  background-color: #f0f0f0;
}

p.paragraph-2 {
  font-size: 20px;
  line-height: 25px;
}

p.paragraph-3 {
  font-size: 23px;
  line-height: 25px;
  margin-bottom: 22px;
}

.link {
  display: inline-block;
  font-size: 14px;
  color: var(--bs-dark);
  font-weight: var(--fw-semi-bold);
}

.content-title-area {
  margin-bottom: 34px;
  position: relative;
}

.content-sub-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-regular);
  color: var(--bs-light);
  margin-bottom: 6px;
}

.content-title {
  font-family: var(--font-2);
  font-size: 22px;
  line-height: 32px;
  font-weight: var(--fw-semi-bold);
  color: var(--bs-dark);
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.content-title span {
  color: var(--bs-primary);
  font-weight: var(--fw-bold);
}

.content-title-2 {
  font-family: var(--font-2);
  font-size: 35px;
  line-height: 40px;
  font-weight: var(--fw-medium);
  color: var(--bs-dark);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.content-title-3 {
  font-family: var(--font-2);
  font-size: 30px;
  line-height: 38px;
  font-weight: var(--fw-medium);
  color: var(--bs-dark);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.heading-1 {
  font-family: var(--font-2);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  line-height: 20px;
  margin-bottom: 18px;
}
.heading-1 span {
  font-weight: var(--fw-medium);
}

.heading-2 {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.heading-2 span {
  color: #fff;
  background-color: var(--bs-primary);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
}

.bg-primary .content-title {
  color: #fff;
}
.bg-primary .content-title span {
  color: #7cb6fc;
}
.bg-primary p {
  color: #fff;
}

.contact-list {
  display: flex;
  justify-content: center;
}
.contact-list .contact-item {
  width: 116px;
  height: 116px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 14px;
  padding: 26px 8px 8px 8px;
  border-radius: 50%;
}
.contact-list .contact-item i {
  font-size: 32px;
  margin-bottom: 6px;
  display: inline-block;
}
.contact-list .contact-item .text {
  position: relative;
}
.contact-list .contact-item .text p {
  color: var(--bs-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--fw-semi-bold);
  letter-spacing: 0.05em;
  line-height: 18px;
  position: absolute;
  width: 100%;
}
.contact-list .contact-item .text .text-1 {
  opacity: 1;
}
.contact-list .contact-item .text .text-2 {
  opacity: 0;
}
.contact-list .contact-item:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.contact-list .contact-item:hover i, .contact-list .contact-item:hover p {
  color: #fff;
}
.contact-list .contact-item:hover .text-1 {
  opacity: 0;
}
.contact-list .contact-item:hover .text-2 {
  opacity: 1;
}

.card-item-1 {
  text-align: center;
  padding: 44px 22px 22px;
  background-color: transparent;
  position: relative;
  margin-bottom: 12px;
}
.card-item-1 .card-icon {
  width: 80px;
  height: 80px;
  background: #f3f6fe;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item-1 .card-icon i {
  color: var(--bs-primary);
  line-height: 68px;
  font-size: 30px;
}
.card-item-1 .card-icon svg {
  fill: var(--bs-primary);
  width: 32px;
}
.card-item-1 .card-icon img {
  width: 60px;
}
.card-item-1 .card-icon-2 {
  color: var(--bs-primary);
  text-align: center;
  font-size: 57px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  margin-top: 13px;
}
.card-item-1 h4 {
  font-family: var(--font-2);
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
  color: var(--bs-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.card-item-1 p {
  font-size: 17px;
  font-weight: var(--fw-normal);
}
.card-item-1::before {
  content: "";
  height: 3px;
  width: 0%;
  background-color: var(--bs-primary);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
}
.card-item-1:hover {
  box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
}
.card-item-1:hover .card-icon i {
  font-size: 36px;
}
.card-item-1:hover .card-icon svg {
  width: 38px;
}
.card-item-1:hover .card-icon img {
  width: 68px;
}
.card-item-1:hover::before {
  width: 100%;
  left: 0;
  transition: all 200ms ease-in 0.2s;
}

.card-item-2 {
  text-align: center;
  padding: 22px 28px 52px;
  background-color: transparent;
  position: relative;
}
.card-item-2 .card-icon {
  color: var(--bs-primary);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  font-size: 42px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.card-item-2 h4 {
  font-family: var(--font-2);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--bs-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.card-item-2 .text {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 150px;
}
.card-item-2 .text h2 {
  font-family: var(--font-1);
  color: var(--bs-dark);
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 1;
  transition: all 300ms ease-out 0s;
}
.card-item-2 .text p {
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  padding: 0 10px;
  transition: all 300ms ease-out 0s;
  color: var(--bs-dark);
}
.card-item-2 .text::before {
  content: "";
  height: 3px;
  width: 0;
  background-color: var(--bs-primary);
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.card-item-2:hover {
  background-color: #f3f6fe;
}
.card-item-2:hover .card-icon {
  font-size: 46px;
}
.card-item-2:hover .text {
  position: relative;
}
.card-item-2:hover .text h2 {
  opacity: 0;
}
.card-item-2:hover .text p {
  opacity: 1;
}
.card-item-2:hover .text::before {
  width: 50px;
  left: calc(50% - 25px);
  transition: all 200ms ease-in 0.2s;
}

.card-item-3 {
  text-align: center;
  padding: 22px 20px 52px;
  background-color: transparent;
  position: relative;
}
.card-item-3::before {
  content: "";
  height: 4px;
  width: 100%;
  background-color: #e4e8fa;
  display: inline-block;
  position: absolute;
  top: 55px;
  left: 0;
}
.card-item-3 .card-icon {
  color: #fff;
  background-color: var(--bs-primary);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  font-size: 28px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  transition: all 300ms ease-out 0s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item-3 .card-icon svg {
  fill: #fff;
}
.card-item-3 h4 {
  font-family: var(--font-2);
  font-size: 12px;
  font-weight: var(--fw-semi-bold);
  color: var(--bs-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.card-item-3 h2 {
  font-family: var(--font-2);
  color: var(--bs-dark);
  font-weight: var(--fw-semi-bold);
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.card-item-3 p {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 10px;
}
.card-item-3:hover .card-icon {
  color: var(--bs-primary);
  background-color: #fff;
  box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
}
.card-item-3:hover .card-icon svg {
  fill: var(--bs-primary);
}

.card-item-4 {
  text-align: center;
  padding: 44px 22px 22px;
  background-color: transparent;
  position: relative;
  margin-bottom: 12px;
}
.card-item-4 .card-icon {
  color: #fff;
  text-align: center;
  font-size: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  margin-top: 13px;
  background-color: var(--bs-primary);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item-4 h4 {
  font-family: var(--font-2);
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
  color: var(--bs-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.card-item-4 p {
  font-size: 17px;
}
.card-item-4::before {
  content: "";
  height: 3px;
  width: 0%;
  background-color: var(--bs-primary);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
}
.card-item-4:hover {
  box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
}
.card-item-4:hover::before {
  width: 100%;
  left: 0;
  transition: all 200ms ease-in 0.2s;
}
.card-item-4:hover .btn-primary {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: var(--bs-primary);
}

.card-item-5 {
  text-align: center;
  padding: 22px 10px 32px;
  background-color: transparent;
  position: relative;
}
.card-item-5 .card-icon {
  color: var(--bs-primary);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  font-size: 42px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.card-item-5 .card-icon img {
  width: 68px;
  transform: scale(1);
}
.card-item-5 h4 {
  font-family: var(--font-2);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--bs-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.card-item-5 .text {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 130px;
}
.card-item-5 .text h2 {
  font-family: var(--font-1);
  color: var(--bs-dark);
  font-weight: var(--fw-bold);
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 1;
  transition: all 300ms ease-out 0s;
}
.card-item-5 .text p {
  font-size: 16px;
  line-height: 22px;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  padding: 0 10px;
  transition: all 300ms ease-out 0s;
  color: var(--bs-dark);
}
.card-item-5:hover {
  background-color: #f3f6fe;
}
.card-item-5:hover .card-icon {
  font-size: 46px;
}
.card-item-5:hover .card-icon img {
  transform: scale(1.1);
}
.card-item-5:hover .text {
  position: relative;
}
.card-item-5:hover .text h2 {
  opacity: 0;
}
.card-item-5:hover .text p {
  opacity: 1;
}
.card-item-5:hover .text::before {
  width: 50px;
  left: calc(50% - 25px);
  transition: all 200ms ease-in 0.2s;
}

.hover-text {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 80px;
}
.hover-text h1 {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 1;
  transition: all 300ms ease-out 0s;
}
.hover-text p {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: all 300ms ease-out 0s;
  color: var(--bs-dark);
}
.hover-text:hover h1 {
  opacity: 0;
}
.hover-text:hover p {
  opacity: 1;
}

.list-item-1 {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateY(0);
  transition: all 300ms ease-out 0s;
}
.list-item-1 li {
  padding-bottom: 38px;
  display: flex;
  align-items: center;
}
.list-item-1 li:last-child {
  padding-bottom: 0;
}
.list-item-1 .icon {
  width: 60px;
  height: 50px;
  opacity: 0.2;
  transition: all 300ms ease-out 0s;
}
.list-item-1 .icon svg {
  width: 60px;
  fill: var(--bs-primary);
}
.list-item-1 .list-content {
  padding-left: 26px;
}
.list-item-1 h6 {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--bs-dark);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.list-item-1 p {
  font-size: 17px;
  margin-bottom: 0;
}
.list-item-1:hover {
  transform: translateY(-2px);
}
.list-item-1:hover .icon {
  opacity: 1;
}

.list-item-2 {
  list-style: none;
  padding: 0;
}
.list-item-2 li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.list-item-2 li:nth-child(1) .bg-round-box {
  width: 360px;
}
.list-item-2 li:nth-child(2) .bg-round-box {
  width: 300px;
}
.list-item-2 li:nth-child(3) .bg-round-box {
  width: 240px;
}
.list-item-2 li:nth-child(4) .bg-round-box {
  width: 180px;
}
.list-item-2 li:hover .bg-round-box h6 {
  opacity: 0;
}
.list-item-2 li:hover .bg-round-box h4 {
  opacity: 1;
}
.list-item-2 li:hover .list-item-right {
  border-color: var(--bs-primary);
}
.list-item-2 .list-item-left {
  width: 50%;
  text-align: center;
}
.list-item-2 .list-item-right {
  width: 50%;
  border-left: 3px solid #f8f8f8;
  padding-left: 16px;
  transition: all 300ms ease-out 0s;
}
.list-item-2 .list-item-right h6 {
  color: var(--bs-primary);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 6px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.list-item-2 .list-item-right p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
}
.list-item-2 .bg-round-box {
  background-color: var(--bs-light);
  height: 65px;
  border-radius: 50px;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.list-item-2 .bg-round-box h6 {
  color: var(--bs-primary);
  font-family: var(--font-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  font-weight: var(--fw-bold);
  opacity: 1;
  margin-bottom: 0;
  transition: all 300ms ease-out 0s;
}
.list-item-2 .bg-round-box h4 {
  color: var(--bs-primary);
  font-family: var(--font-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: var(--fw-bold);
  opacity: 0;
  position: absolute;
  margin-bottom: 0;
  transition: all 300ms ease-out 0s;
}

.top-block {
  min-height: 5px;
  background-color: rgb(0, 35, 102);
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 72px;
}
.top-block .nav {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
}
.top-block .nav li {
  margin: 4px 20px;
}
.top-block .nav li a {
  font-size: 14px;
  text-transform: none;
  color: #fff;
  font-weight: var(--fw-bold);
}
.top-block .nav li.phone {
  width: 204px;
  text-align: center;
}

.team .social-media-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 28px;
  margin-bottom: 0;
}
.team .social-media-list li {
  margin: 0 6px;
}
.team .social-media-list a {
  color: var(--bs-dark);
  font-size: 24px;
}
.team .team-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 30px;
  color: var(--bs-primary);
  font-weight: var(--fw-semi-bold);
}
.team .team-content h6 {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 18px;
  color: var(--bs-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-weight: var(--fw-bold);
}
.team .team-content p {
  font-size: 16px;
  line-height: 22px;
}

.profile-img {
  width: 100%;
  border: 5px solid var(--bs-primary);
}

.team-item:hover {
  background-color: var(--bs-light);
}

.team-icon .icon {
  background-color: var(--bs-primary);
  color: #fff;
  width: 38px;
  height: 38px;
  display: inline-flex;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bs-primary);
  transition: all 300ms ease-out 0s;
}
.team-icon:hover .icon {
  background-color: #fff;
  color: var(--bs-primary);
}

.ticker {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ticker li {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  text-align: center;
  padding-top: 32px;
  box-shadow: 0 3px 60px 0 rgba(29, 70, 243, 0.18);
  float: left;
}
.ticker li h2 {
  color: var(--bs-primary);
  font-size: 55px;
  font-family: var(--font-2);
  font-weight: var(--fw-medium);
  margin-bottom: 0;
  line-height: 55px;
}
.ticker li p {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--bs-dark);
  font-weight: var(--fw-normal);
  letter-spacing: 0.05em;
}
.ticker li.bg-primary {
  box-shadow: 0 3px 60px 0 rgba(29, 70, 243, 0.5);
}
.ticker li.bg-primary h2, .ticker li.bg-primary p {
  color: #fff;
}
.ticker li:nth-child(1), .ticker li:nth-child(2) {
  margin-right: 80px;
  margin-bottom: 26px;
}
.ticker li:nth-child(3) {
  margin-left: 112px;
}
.ticker li:nth-child(4) {
  margin-left: 80px;
}

.address {
  text-align: center;
  font-weight: var(--fw-normal);
  color: var(--bs-dark);
  margin-bottom: 0;
  font-size: 13px;
  font-family: var(--font-1);
}
.address span {
  margin: 0 6px;
}
.address a {
  color: var(--bs-dark);
}

.line {
  background-color: #f0f0f0;
  height: 3px;
}

.accordion .accordion-button:not(.collapsed) {
  background-color: #b3c6e7;
}
.accordion .accordion-button {
  font-weight: var(--fw-semi-bold);
  background-color: #b3c6e7;
  text-transform: uppercase;
}
.accordion .accordion-body {
  background-color: #eff7ff;
  word-wrap: break-word;
}
.accordion .accordion-body img {
  max-width: 100%;
}
.accordion p {
  color: var(--bs-dark);
  line-height: 25px;
}
.accordion .accordion-list {
  color: var(--bs-dark);
  font-family: var(--font-2);
  font-size: 16px;
  list-style: none;
}
.accordion .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f479f'%3e%3cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3v-3z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236d83ab'%3e%3cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: #fff;
  box-shadow: none;
}

.accordion-button {
  line-height: 1.5em;
}

#accordion1 > .accordion-item > .accordion-header .accordion-button {
  background-color: var(--bs-primary);
  color: #fff;
  text-transform: uppercase;
}
#accordion1 > .accordion-item > .accordion-header .accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v3h-3a.5.5 0 0 0 0 1h3v3a.5.5 0 0 0 1 0v-3h3a.5.5 0 0 0 0-1h-3v-3z'/%3e%3c/svg%3e");
}
#accordion1 > .accordion-item > .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238fabd7'%3e%3cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.bg-white {
  background-color: #fff;
}

.morecontent span {
  display: none;
}

.morelink {
  display: block;
  margin-top: 12px;
}

@media (max-width: 767px) {
  .content-area {
    padding-top: 0;
    padding-bottom: 0;
  }
  .content-area-block {
    padding: 40px 0;
  }
  .content-title {
    font-size: 18px;
    line-height: 24px;
  }
  .card-item-1 {
    box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
    margin-bottom: 16px;
    padding: 38px 22px 6px;
  }
  .card-item-1 .card-icon {
    margin-bottom: 20px;
  }
  .card-item-1::before {
    width: calc(100% - 24px);
    left: 12px;
    top: 12px;
    height: 4px;
  }
  .list-item-1 {
    margin-bottom: 20px;
  }
  .list-item-1 li {
    padding-bottom: 30px;
  }
  .list-item-1 .icon {
    opacity: 1;
  }
  .contact-list {
    display: flex;
    justify-content: center;
  }
  .contact-list .contact-item {
    width: 92px;
    height: 92px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 28px;
    padding: 12px 8px 8px 8px;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    aspect-ratio: 1/1;
  }
  .contact-list .contact-item i {
    font-size: 28px;
    margin-bottom: 6px;
    color: #fff;
  }
  .contact-list .contact-item .text {
    position: relative;
  }
  .contact-list .contact-item .text p {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: var(--fw-semi-bold);
    letter-spacing: 0.05em;
    line-height: 16px;
    position: absolute;
    width: 100%;
  }
  .contact-list .contact-item .text .text-1 {
    opacity: 0;
  }
  .contact-list .contact-item .text .text-2 {
    opacity: 10;
  }
  .heading-2 {
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 21px;
  }
  .heading-2 span {
    padding: 1px 12px;
  }
  .card-item-2 {
    background-color: #f3f6fe;
    padding: 22px 22px 26px;
    margin-bottom: 12px;
  }
  .card-item-2 h4 {
    font-size: 15px;
  }
  .card-item-2 .text h2 {
    opacity: 0;
  }
  .card-item-2 .text p {
    opacity: 1;
    font-size: 17px;
    position: inherit;
    line-height: 22px;
  }
  .card-item-2 .text::before {
    width: 50px;
    left: calc(50% - 25px);
  }
  .card-item-3 {
    padding: 22px 28px 27px;
  }
  .card-item-3:before {
    display: none;
  }
  .card-item-3 .card-icon {
    color: var(--bs-primary);
    background-color: #fff;
    box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
  }
  .card-item-3 .card-icon svg {
    fill: var(--bs-primary);
  }
  .card-item-4 {
    box-shadow: 0 3px 23px 0 rgba(29, 70, 243, 0.18);
    margin-bottom: 16px;
    padding: 26px 9px 26px;
  }
  .card-item-4 .card-icon {
    margin-bottom: 12px;
    margin-top: 0px;
  }
  .card-item-4::before {
    width: 100%;
    left: 0;
    top: 0;
    height: 4px;
  }
  .card-item-4.me-m {
    margin-right: -4px;
  }
  .card-item-4.ms-m {
    margin-left: -4px;
  }
  .card-item-4 .btn-primary {
    color: var(--bs-primary);
    background-color: transparent;
    border-color: var(--bs-primary);
    padding: 2px 8px 0;
    font-size: 11px;
    height: 32px;
    min-width: 110px;
  }
  .card-item-5 {
    background-color: #f3f6fe;
    padding: 22px 22px 26px;
    margin-bottom: 12px;
  }
  .card-item-5 h4 {
    font-size: 15px;
  }
  .card-item-5 .text {
    min-height: inherit;
  }
  .card-item-5 .text h2 {
    position: inherit;
    font-size: 18px;
    opacity: 1 !important;
  }
  .card-item-5 .text p {
    opacity: 1;
    font-size: 17px;
    position: inherit;
    line-height: 22px;
  }
  .card-item-5 .text::before {
    width: 50px;
    left: calc(50% - 25px);
  }
  .heading-1 {
    line-height: 16px;
    margin-bottom: 10px;
  }
  .content-title-2 {
    font-size: 22px;
    line-height: 29px;
  }
  .content-title-3 {
    font-size: 27px;
    line-height: 34px;
  }
  .top-block .nav.menu li {
    margin: 4px 10px;
    line-height: 0;
  }
  .top-block .nav.menu li a {
    font-size: 11px;
    line-height: 16px;
  }
  .top-block .nav li {
    margin: 10px 0;
    line-height: 0;
  }
  .top-block .nav li a {
    font-size: 12px;
    line-height: 12px;
  }
  .top-block .nav li.phone {
    width: auto;
    text-align: left;
  }
  .team {
    display: block;
    text-align: center;
  }
  .team .team-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 18px;
  }
  .team .team .social-media-list {
    margin-top: 16px;
  }
  .team .profile-img {
    width: 147px;
  }
  .ticker {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 20px;
    width: 320px;
    display: inline-block;
  }
  .ticker li {
    width: 144px;
    height: 144px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .ticker li:nth-child(1), .ticker li:nth-child(3) {
    float: left;
  }
  .ticker li:nth-child(2), .ticker li:nth-child(4) {
    float: right;
  }
  p.paragraph-3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .hover-text {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 80px;
  }
  .hover-text h1 {
    position: inherit;
    opacity: 1;
    font-size: 27px;
    line-height: 34px;
  }
  .hover-text p {
    position: inherit;
    opacity: 1;
  }
  .hover-text:hover h1 {
    opacity: 1;
  }
  .hover-text:hover p {
    opacity: 1;
  }
  .list-item-2 {
    padding-top: 20px;
  }
  .list-item-2 .list-item-right {
    width: 100%;
    border: none;
    text-align: center;
    margin: 10px 0px 24px 0;
    padding: 0;
  }
  .list-item-2 .list-item-left {
    width: 100%;
  }
  .list-item-2 .bg-round-box {
    height: 46px;
  }
  .list-item-2 li {
    display: block;
    margin-bottom: 36px;
  }
  .list-item-2 li:nth-child(1) .bg-round-box {
    width: 300px;
  }
  .list-item-2 li:nth-child(2) .bg-round-box {
    width: 260px;
  }
  .list-item-2 li:nth-child(3) .bg-round-box {
    width: 210px;
  }
  .list-item-2 li:nth-child(4) .bg-round-box {
    width: 160px;
  }
  .list-item-2 li:last-child {
    margin-bottom: 0;
  }
  .list-item-1 .icon svg {
    width: 50px;
  }
  #accordion1 > .accordion-item > .accordion-collapse > .accordion-body {
    padding: 8px;
  }
  .accordion .accordion-button {
    font-size: 14px;
  }
  .wizard-nav li {
    padding: 0 18px;
  }
  .morelink {
    color: var(--bs-primary) !important;
  }
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide:focus {
  outline: -webkit-focus-ring-color auto 0;
  outline: 0;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  color: var(--bs-dark);
  background-color: transparent;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 10;
  font-size: 0;
  transition: all 0.3s ease 0s;
}
.slick-prev:hover, .slick-next:hover {
  opacity: 0.5;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-arrow.slick-disabled {
  opacity: 0 !important;
}

.slick-prev:before, .slick-next:before {
  display: inline-block;
  font-display: block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  line-height: 30px;
  width: 22px;
  height: 42px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 41'><path d='M20.3 40.8L0 20.5 20.3.2l.7.7L1.3 20.5 21 40.1z' color='%23F00' stroke-width='1'></path></svg>");
}

.slick-next:before {
  transform: scaleX(-1);
}

.slick-dots {
  bottom: -20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  color: transparent;
  border: 0;
  outline: none;
  opacity: 0.25;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.slick-dots button::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--bs-primary);
  border-radius: 50%;
  display: inline-block;
}
.slick-dots .slick-active button {
  opacity: 1;
}

.slider-one p {
  font-size: 20px;
  line-height: 25px;
}
.slider-one p strong {
  font-weight: var(--fw-bold);
  color: var(--bs-primary);
}
.slider-one .slider-items {
  display: flex;
  padding: 0 60px;
  padding-bottom: 30px;
}
.slider-one .slider-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-one .slider-img img {
  width: 249px;
}
.slider-one .slider-img svg {
  width: 125px;
  position: absolute;
  fill: var(--bs-primary);
}
.slider-one .slider-content {
  padding-right: 60px;
  padding-top: 46px;
}
.slider-one .content-title {
  margin-bottom: 34px;
}

.bg-primary .slick-prev, .bg-primary .slick-next {
  color: #fff;
  margin-top: -26px;
}
.bg-primary .slick-prev:before, .bg-primary .slick-next:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 41'><path fill='%23fff' d='M20.3 40.8L0 20.5 20.3.2l.7.7L1.3 20.5 21 40.1z' color='%23F00'></path></svg>");
}
.bg-primary .slick-dots button {
  opacity: 1;
}
.bg-primary .slick-dots button::before {
  background-color: #fff;
}
.bg-primary .slick-dots .slick-active button {
  opacity: 0.5;
}

.slider-two p {
  font-family: var(--font-1);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.slider-two p strong {
  font-weight: var(--fw-bold);
}
.slider-two .slider-items {
  display: flex;
  padding-left: 30px;
  padding-right: 50px;
  justify-content: space-between;
  margin-bottom: 62px;
}
.slider-two .slider-content {
  width: 500px;
}
.slider-two .slider-img {
  width: 300px;
  position: relative;
}
.slider-two .slider-img .icon-1 {
  position: absolute;
  left: -10px;
}
.slider-two .slider-img .icon-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.slider-two .content-title {
  margin-bottom: 40px !important;
}
.slider-two .ovel-text {
  font-family: var(--font-2);
  width: 270px;
  height: 165px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  line-height: 30px;
  letter-spacing: 0.1em;
  margin-top: 48px;
  margin-bottom: 36px;
}
.slider-two .author {
  margin-top: 30px;
}
.slider-two .author h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-family: var(--font-2);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  line-height: 1;
}
.slider-two .author p {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  line-height: 16px;
}

.slider-three {
  text-align: center;
}
.slider-three .slider-img {
  margin-bottom: 20px;
  font-size: 78px;
  color: var(--bs-primary);
  padding-top: 10px;
}
.slider-three svg {
  fill: var(--bs-primary);
}
.slider-three .slider-content h4 {
  font-family: var(--font-2);
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--bs-dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.slider-three .slider-content p {
  margin-bottom: 28px;
  line-height: 25px;
  font-size: 18px;
}
.slider-three .slider-items {
  display: inline-block;
}
.slider-three .slider-items img {
  transform: scale(1);
  transition: all 300ms ease-out 0s;
}
.slider-three .slider-items:hover img {
  transform: scale(1.1);
}

.slider-three-nav {
  width: 540px;
  margin: auto;
  margin-bottom: 38px;
}
.slider-three-nav .slick-slide {
  text-align: center;
}
.slider-three-nav .slick-list {
  height: 30px;
  margin-top: -4px;
}
.slider-three-nav .slide span {
  color: var(--bs-dark);
  opacity: 0.5;
  font-size: 12px;
  text-align: center;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  font-weight: var(--fw-bold);
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.slider-three-nav .slick-current span {
  opacity: 1;
  font-weight: var(--fw-bold);
  border-color: var(--bs-primary);
}

.slider-client .slick-slide {
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: auto;
}
.slider-client img {
  width: 100%;
}
.slider-client .slick-track {
  display: flex;
}

@media (max-width: 767px) {
  .slick-prev:before, .slick-next:before {
    width: 22px;
    height: 34px;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slider-one .slick-prev, .slider-one .slick-next {
    margin-top: 35px;
  }
  .slider-one p {
    font-size: 18px;
    line-height: 26px;
  }
  .slider-one .slider-items {
    display: block;
    padding: 0 40px;
    text-align: center;
  }
  .slider-one .slider-img {
    margin-bottom: 26px;
    justify-content: center;
  }
  .slider-one .slider-img img {
    width: 140px;
  }
  .slider-one .slider-img svg {
    width: 100px;
    position: absolute;
    fill: var(--bs-primary);
  }
  .slider-one .slider-content {
    padding: 0;
    width: 100%;
  }
  .slider-one .content-title {
    margin-bottom: 40px !important;
  }
  .slider-two p {
    font-size: 14px;
    line-height: 18px;
  }
  .slider-two .slider-items {
    display: block;
    padding: 0 34px;
    text-align: center;
  }
  .slider-two .slider-content {
    padding-right: 0;
    width: 100%;
  }
  .slider-two .content-title {
    margin-bottom: 40px !important;
  }
  .slider-two .ovel-text {
    width: 190px;
    height: 116px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .slider-two .slider-img {
    width: 190px;
    margin: auto;
    padding-top: 16px;
    padding-bottom: 30px;
    margin-bottom: 36px;
  }
  .slider-two .slider-img .icon-1 {
    width: 46px;
    top: 0;
  }
  .slider-two .slider-img .icon-2 {
    bottom: 0;
  }
  .slider-three-nav {
    margin: 0;
  }
  .slider-three-nav .slick-list {
    display: none;
  }
  .slider-three {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */