* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
  background: #FFF;
  position: relative;
}
body::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
body::-webkit-scrollbar-button {
  background-color: #4468a7;
}
body::-webkit-scrollbar-track {
  background-color: #FFF;
}
body::-webkit-scrollbar-track-piece {
  background-color: #FFF;
}
body::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #4468a7;
  border-radius: 3px;
}
body::-webkit-scrollbar-corner {
  background-color: #FFF;
}
body::-webkit-resizer {
  background-color: #4468a7;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 960px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 520px) {
  .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
.top-panel {
  background: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}
.top-panel .container {
  display: grid;
  grid-template-columns: 1fr 0.8fr 70px 188px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #5d88d11c;
  align-items: center;
}
@media screen and (max-width: 1130px) {
  .top-panel .container {
    grid-template-columns: 1fr 70px 188px 30px;
    grid-gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 769px) {
  .top-panel .container {
    grid-template-columns: 1fr 50px 150px 30px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 690px) {
  .top-panel .container {
    grid-gap: 10px;
    grid-template-columns: 1fr 40px 120px 30px;
  }
}
.top-panel .container .logo {
  display: grid;
  grid-template-columns: 61px 1fr;
  grid-gap: 10px;
  align-items: center;
}
.top-panel .container .logo .img img {
  transition: 1s transform;
}
.top-panel .container .logo .img img:hover {
  transform: rotate(360deg);
}
.top-panel .container .logo .txt {
  font-weight: 300;
  font-size: 20px;
  line-height: 131%;
  text-transform: uppercase;
  color: #213358;
}
@media screen and (max-width: 1130px) {
  .top-panel .container .logo .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 620px) {
  .top-panel .container .logo .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 490px) {
  .top-panel .container .logo .txt {
    display: none;
  }
}
.top-panel .container .logo .txt strong {
  font-weight: 800;
}
.top-panel .container nav {
  margin-right: 40px;
  text-align: right;
}
.top-panel .container nav ul li {
  display: inline-block;
  margin: 0 13px;
  position: relative;
}
.top-panel .container nav ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  transform: translateX(-50%);
  height: 2px;
  background: #4468a7;
  transition: 0.5s width;
}
.top-panel .container nav ul li a {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #213358;
}
.top-panel .container nav ul li:hover::before {
  width: 100%;
}
@media screen and (max-width: 1130px) {
  .top-panel .container nav {
    position: fixed;
    right: -120%;
    top: 0;
    height: 100vh;
    background: #213358;
    padding: 40px;
    transition: 0.5s right;
    margin-right: 0;
    width: 100%;
    max-width: 560px;
    text-align: left;
    align-items: center;
    display: grid;
  }
  .top-panel .container nav ul li {
    display: block;
    margin: 15px 0;
  }
  .top-panel .container nav ul li a {
    color: #FFF;
    font-size: 24px;
  }
}
.top-panel .container .active-nav {
  right: 0;
}
.top-panel .container .lang {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.top-panel .container .lang ul {
  list-style-type: none;
}
.top-panel .container .lang ul li {
  position: relative;
}
.top-panel .container .lang ul li.current-lang {
  font-weight: 700;
  font-size: 16px;
  color: #213358;
  cursor: pointer;
}
.top-panel .container .lang ul li.current-lang svg {
  margin-left: 5px;
  margin-bottom: 3px;
  transition: 0.5s transform;
}
.top-panel .container .lang ul li .submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 30px;
  background: #FFF;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  z-index: 40;
  transition: 0.5s opacity, 0.5s visibility, 0.5s top;
}
.top-panel .container .lang ul li .submenu li a {
  display: block;
  padding: 7px 25px;
  color: #000;
}
.top-panel .container .lang ul li .submenu li a:hover {
  background: #dedede;
}
.top-panel .container .lang ul li .submenu li a.disabled {
  background: #f1f1f1;
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.2);
}
.top-panel .container .lang ul li .activesubmenu {
  visibility: visible;
  opacity: 1;
  top: 20px;
}
@media screen and (min-width: 1130px) {
  .top-panel .container .lang ul li:hover .submenu {
    visibility: visible;
    opacity: 1;
    top: 20px;
  }
  .top-panel .container .lang ul li:hover.current-lang svg {
    transform: rotate(-180deg);
  }
}
.top-panel .container .order a {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  display: block;
  padding: 15px ;
  background: #4468a7;
  border: 1px solid #4468a7;
  transition: 0.5s color, 0.5s background;
}
.top-panel .container .order a:hover {
  background: #FFF;
  color: #4468a7;
}
@media screen and (max-width: 1130px) {
  .top-panel .container .order a {
    padding: 10px ;
  }
}
@media screen and (max-width: 769px) {
  .top-panel .container .order a {
    padding: 5px ;
  }
}
.top-panel .container .burger {
  display: none;
  z-index: 30;
}
.top-panel .container .burger span {
  display: block;
  height: 2px;
  margin-bottom: 8px;
  background: #4468a7;
  transition: 0.5s transform, 0.5s background;
}
.top-panel .container .burger span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1130px) {
  .top-panel .container .burger {
    display: block;
  }
}
.top-panel .container .active-burger span {
  margin-bottom: 0;
  background: #FFF;
}
.top-panel .container .active-burger span:nth-child(1) {
  transform: rotate(45deg);
}
.top-panel .container .active-burger span:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -1px;
}
.top-panel .container .active-burger span:nth-child(3) {
  display: none;
}
.banner .container {
  padding-top: 155px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 700px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .banner .container {
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1130px) {
  .banner .container {
    padding-top: 130px;
  }
}
@media screen and (max-width: 769px) {
  .banner .container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 769px) {
  .banner .container .left {
    order: 2;
    text-align: center;
  }
}
.banner .container .left .txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 860px) {
  .banner .container .left .txt {
    margin-bottom: 20px;
  }
}
.banner .container .left .txt h3 {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .banner .container .left .txt h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1130px) {
  .banner .container .left .txt h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .banner .container .left .txt h3 {
    font-size: 24px;
  }
}
.banner .container .left .txt h4 {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213358;
  margin-bottom: 15px;
  max-width: 511px;
}
@media screen and (max-width: 769px) {
  .banner .container .left .txt h4 {
    max-width: 100%;
  }
}
.banner .container .left .txt p {
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
}
.banner .container .left .button a {
  font-weight: 700;
  font-size: 16px;
  line-height: 158%;
  text-align: center;
  display: inline-block;
  padding: 19px 30px;
  background: #4468a7;
  color: #FFF;
  border: 1px solid #4468a7;
  transition: 0.5s color, 0.5s background;
}
@media screen and (max-width: 1130px) {
  .banner .container .left .button a {
    padding: 10px 30px;
  }
}
.banner .container .left .button a:hover {
  background: #FFF;
  color: #4468A7;
}
.banner .container .right {
  text-align: right;
}
@media screen and (max-width: 769px) {
  .banner .container .right {
    text-align: center;
    order: 1;
  }
}
.banner .container .right img {
  margin-right: -15px;
}
@media screen and (max-width: 769px) {
  .banner .container .right img {
    margin-right: 0px;
    width: 100%;
  }
}
.about {
  background: #f3f3f3;
}
.about .container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 95px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .about .container {
    grid-gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 860px) {
  .about .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 860px) {
  .about .container .left img {
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .about .container .right {
    text-align: center;
  }
}
.about .container .right h3 {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .about .container .right h3 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  .about .container .right h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .about .container .right h3 {
    font-size: 24px;
  }
}
.about .container .right h4 {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213358;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .about .container .right h4 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 769px) {
  .about .container .right h4 {
    max-width: 100%;
  }
}
.about .container .right p {
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .about .container .right p {
    margin-bottom: 15px;
  }
}
.logistic .container {
  padding-top: 65px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  .logistic .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.logistic .container .title {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .logistic .container .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  .logistic .container .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .logistic .container .title {
    font-size: 24px;
  }
}
.logistic .container .subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213358;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .logistic .container .subtitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 769px) {
  .logistic .container .subtitle {
    margin-bottom: 20px;
  }
}
.logistic .container .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  counter-reset: item;
}
@media screen and (max-width: 860px) {
  .logistic .container .list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  .logistic .container .list {
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }
}
.logistic .container .list .item {
  background: #f3f3f3;
  padding: 25px;
  padding-bottom: 90px;
  position: relative;
  counter-increment: item;
}
@media screen and (max-width: 860px) {
  .logistic .container .list .item {
    padding: 15px;
    padding-bottom: 50px;
  }
}
.logistic .container .list .item::after {
  content: counter(item, decimal-leading-zero);
  display: block;
  position: absolute;
  left: 25px;
  bottom: 25px;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 153%;
  color: #4468a7;
}
@media screen and (max-width: 860px) {
  .logistic .container .list .item::after {
    left: 15px;
    bottom: 15px;
    font-size: 15px;
  }
}
.logistic .container .list .item .img {
  max-height: 179px;
  overflow: hidden;
  margin-bottom: 30px;
}
.logistic .container .list .item .img img {
  width: 100%;
  transition: 0.5s transform;
}
.logistic .container .list .item .img:hover img {
  transform: scale(1.1);
}
.logistic .container .list .item .ltitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  color: #213358;
  border-bottom: 1px solid rgba(68, 104, 167, 0.43);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 860px) {
  .logistic .container .list .item .ltitle {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.logistic .container .list .item .desk {
  font-weight: 300;
  font-size: 17px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
}
@media screen and (max-width: 860px) {
  .logistic .container .list .item .desk {
    font-size: 15px;
  }
}
.why .container {
  padding-bottom: 70px;
}
.why .container .title {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .why .container .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  .why .container .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .why .container .title {
    font-size: 24px;
  }
}
.why .container .subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213358;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .why .container .subtitle {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 769px) {
  .why .container .subtitle {
    margin-bottom: 20px;
  }
}
.why .container .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 769px) {
  .why .container .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .why .container .list {
    grid-template-columns: 1fr;
  }
}
.why .container .list .item {
  position: relative;
}
@media screen and (max-width: 520px) {
  .why .container .list .item {
    border-bottom: 1px solid rgba(68, 104, 167, 0.44);
  }
}
.why .container .list .item:nth-child(1)::before {
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
.why .container .list .item:nth-child(1)::after {
  position: absolute;
  left: 0;
  right: 10px;
  bottom: 0px;
  height: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
.why .container .list .item:nth-child(2)::before {
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
@media screen and (max-width: 769px) {
  .why .container .list .item:nth-child(2)::before {
    display: none;
  }
}
.why .container .list .item:nth-child(2)::after {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0px;
  height: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
.why .container .list .item:nth-child(3)::after {
  position: absolute;
  left: 10px;
  right: 0px;
  bottom: 0px;
  height: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
@media screen and (max-width: 769px) {
  .why .container .list .item:nth-child(3)::after {
    left: 0px;
    right: 10px;
    bottom: 0px;
  }
}
@media screen and (max-width: 769px) {
  .why .container .list .item:nth-child(3)::before {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(68, 104, 167, 0.44);
    content: "";
  }
}
.why .container .list .item:nth-child(4)::before {
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
@media screen and (max-width: 769px) {
  .why .container .list .item:nth-child(4)::before {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .why .container .list .item:nth-child(4)::after {
    position: absolute;
    left: 10px;
    right: 0px;
    bottom: 0px;
    height: 1px;
    background: rgba(68, 104, 167, 0.44);
    content: "";
  }
}
.why .container .list .item:nth-child(5)::before {
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(68, 104, 167, 0.44);
  content: "";
}
@media screen and (max-width: 520px) {
  .why .container .list .item::before {
    display: none!important;
  }
  .why .container .list .item::after {
    display: none!important;
  }
}
.why .container .list .item .vn {
  text-align: center;
  position: relative;
  padding: 55px 105px;
}
@media screen and (max-width: 1100px) {
  .why .container .list .item .vn {
    padding: 55px 20px;
  }
}
.why .container .list .item .vn .img {
  margin-bottom: 28px;
}
.why .container .list .item .vn .desk {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #213358;
}
.ready {
  margin-bottom: 70px;
}
@media screen and (max-width: 769px) {
  .ready {
    margin-bottom: 40px;
  }
}
.ready .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 510px;
}
@media screen and (max-width: 960px) {
  .ready .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 720px) {
  .ready .container {
    grid-template-columns: 1fr;
  }
}
.ready .container::before {
  position: absolute;
  right: 85px;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
  background: rgba(68, 104, 167, 0.22);
}
@media screen and (max-width: 720px) {
  .ready .container::before {
    right: 0px;
  }
}
.ready .container::after {
  right: 135px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 48% 100%, 0% 100%);
  background: #4468A7;
}
@media screen and (max-width: 720px) {
  .ready .container::after {
    right: 50px;
    clip-path: polygon(0 0, 100% 0, 46% 100%, 0% 100%);
  }
}
.ready .container .left {
  position: relative;
  padding-top: 65px;
  padding-left: 40px;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .ready .container .left {
    padding-top: 25px;
    padding-left: 20px;
  }
}
.ready .container .left .title {
  font-weight: 900;
  font-size: 55px;
  color: #FFF;
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 120%;
}
@media screen and (max-width: 1100px) {
  .ready .container .left .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 720px) {
  .ready .container .left .title {
    font-size: 30px;
  }
}
.ready .container .left .button a {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 158%;
  text-align: center;
  color: #4468a7;
  padding: 19px 30px;
  background: #FFF;
  border: 1px solid #FFF;
  transition: 0.5s color, 0.5s background;
}
.ready .container .left .button a:hover {
  color: #FFF;
  background: #4468A7;
}
.ready .container .right {
  z-index: 2;
  text-align: right;
  position: relative;
}
.ready .container .right img {
  margin-top: -70px;
}
@media screen and (max-width: 720px) {
  .ready .container .right img {
    margin-top: 0px;
  }
}
.faq {
  background: #f3f3f3;
}
.faq .container {
  padding-top: 65px;
  padding-bottom: 135px;
  max-width: 972px;
}
.faq .container .title {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  text-align: center;
  color: #213358;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .faq .container .title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1130px) {
  .faq .container .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .faq .container .title {
    font-size: 24px;
  }
}
.faq .container .faq-list .item {
  border-bottom: 1px solid #4468a7;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}
.faq .container .faq-list .item .question {
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  color: #213358;
  position: relative;
  padding-right: 30px;
}
.faq .container .faq-list .item .question::after {
  position: absolute;
  right: 0;
  top: 0px;
  content: "+";
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  color: #4468a7;
  transition: 0.5s transform;
}
.faq .container .faq-list .item .answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
.faq .container .faq-list .item .answer p {
  margin: 15px 0;
}
.faq .container .active-item .question::after {
  transform: rotate(45deg);
}
.contact {
  margin-top: -45px;
}
.contact .container .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 85px;
  padding: 30px 0;
  background: #FFF;
  align-items: center;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #4468a7;
}
@media screen and (max-width: 960px) {
  .contact .container .list {
    grid-gap: 0px;
  }
}
@media screen and (max-width: 520px) {
  .contact .container .list {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.contact .container .list .item {
  display: grid;
  grid-template-columns: 65px 1fr;
  grid-gap: 20px;
  align-items: center;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 680px) {
  .contact .container .list .item {
    grid-template-columns: 45px 1fr;
    grid-gap: 10px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 520px) {
  .contact .container .list .item {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
  }
}
.contact .container .list .item::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #e6e6e6;
  content: "";
}
@media screen and (max-width: 520px) {
  .contact .container .list .item::after {
    display: none;
  }
}
.contact .container .list .item:last-child::after {
  display: none;
}
.contact .container .list .item .txt p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #111;
}
.contact .container .list .item .txt p a {
  color: #111;
}
.contact .container .list .item .txt p strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  color: #111;
}
.get .container {
  padding-top: 100px;
  padding-bottom: 10px;
}
.get .container .title {
  font-weight: 900;
  font-size: 50px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .get .container .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  .get .container .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .get .container .title {
    font-size: 24px;
  }
}
.get .container .subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213358;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .get .container .subtitle {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 769px) {
  .get .container .subtitle {
    margin-bottom: 20px;
  }
}
.get .container .form .tw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media screen and (max-width: 520px) {
  .get .container .form .tw {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}
.get .container .form input[type=text] {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
  border: 1px solid rgba(68, 104, 167, 0.32);
  border-radius: 2px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 15px;
}
.get .container .form input[type=text]::placeholder {
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
}
.get .container .form input[type=tel] {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
  border: 1px solid rgba(68, 104, 167, 0.32);
  border-radius: 2px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 15px;
}
.get .container .form input[type=tel]::placeholder {
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
}
.get .container .form input[type=email] {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
  border: 1px solid rgba(68, 104, 167, 0.32);
  border-radius: 2px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 15px;
}
.get .container .form input[type=email]::placeholder {
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
}
.get .container .form textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
  border: 1px solid rgba(68, 104, 167, 0.32);
  border-radius: 2px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 10px;
  resize: none;
  height: 200px;
}
.get .container .form textarea::placeholder {
  font-size: 16px;
  line-height: 210%;
  color: rgba(0, 0, 0, 0.77);
}
.get .container .form .subcenter {
  text-align: center;
  padding-top: 20px;
}
.get .container .form .subcenter input[type=submit] {
  font-weight: 700;
  font-size: 16px;
  line-height: 158%;
  text-align: center;
  color: #FFF;
  padding: 19px 45px;
  background: #4468a7;
  border: 1px solid #4468A7;
  cursor: pointer;
  transition: 0.5s color, 0.5s background;
}
.get .container .form .subcenter input[type=submit]:hover {
  background: #FFF;
  color: #4468A7;
}
.get .container .form .subcenter .wpcf7-spinner {
  display: block;
}
footer {
  border-top: 1px solid #4468a7;
  background: #f3f3f3;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 40px;
}
@media screen and (max-width: 720px) {
  footer .container {
    grid-template-columns: 1fr;
  }
}
footer .container .left .logo {
  display: grid;
  grid-template-columns: 61px 1fr;
  grid-gap: 10px;
  align-items: center;
}
@media screen and (max-width: 720px) {
  footer .container .left .logo {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
footer .container .left .logo .img img {
  transition: 1s transform;
}
footer .container .left .logo .img img:hover {
  transform: rotate(360deg);
}
footer .container .left .logo .txt {
  font-weight: 300;
  font-size: 20px;
  line-height: 131%;
  text-transform: uppercase;
  color: #213358;
}
@media screen and (max-width: 1130px) {
  footer .container .left .logo .txt {
    font-size: 16px;
  }
}
footer .container .left .logo .txt strong {
  font-weight: 800;
}
footer .container .right {
  text-align: right;
  font-weight: 300;
  font-size: 15px;
  color: #121212;
}
@media screen and (max-width: 720px) {
  footer .container .right {
    text-align: center;
  }
}
footer .container .right a {
  color: #121212;
  margin-left: 30px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  background: red;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  background: #40da2c;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
}
.blocker {
  z-index: 40!important;
}
#ex1 {
  border-radius: 0px;
  width: 100%;
  max-width: 95%;
  padding: 40px;
}
@media screen and (max-width: 769px) {
  #ex1 {
    padding: 40px 10px;
  }
}
#ex1 h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  #ex1 h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  #ex1 h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 860px) {
  #ex1 h2 {
    font-size: 20px;
  }
}
#ex1 h3 {
  font-weight: 900;
  font-size: 36px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  #ex1 h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  #ex1 h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 860px) {
  #ex1 h3 {
    font-size: 16px;
  }
}
#ex1 h4 {
  font-weight: 900;
  font-size: 30px;
  line-height: 122%;
  color: #213358;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  #ex1 h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1130px) {
  #ex1 h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 860px) {
  #ex1 h4 {
    font-size: 14px;
  }
}
#ex1 p {
  font-weight: 300;
  font-size: 16px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
  margin-bottom: 25px;
}
@media screen and (max-width: 860px) {
  #ex1 p {
    font-size: 15px;
  }
}
#ex1 ul {
  margin: 25px;
  font-weight: 300;
  font-size: 16px;
  line-height: 153%;
  color: rgba(33, 51, 88, 0.76);
  list-style-type: disc;
}
#ex1 ul li {
  margin-bottom: 15px;
}
#ex1 .close-modal {
  right: 10px;
  top: 10px;
}
.hcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 103%;
  letter-spacing: 0.03em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.hcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFF;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.hcontainer:hover input ~ .checkmark {
  background-color: #FFF;
}
/* When the radio button is checked, add a blue background */
.hcontainer input:checked ~ .checkmark {
  background-color: #FFF;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.hcontainer input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.hcontainer .checkmark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F08100;
}
