@import "reset.css";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: "Assistant", sans-serif;
  font-size: 1em;
  color: #424242;
  line-height: 100%;
}

a {
  color: #337ab7;
  text-decoration: none;
}

body a img {
  border: none;
  border-collapse: collapse;
}

img {
  vertical-align: middle;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background: #1a283c;
  position: relative;
  z-index: 10;
  width: 100%;
}
header .hamburger {
  width: 36px;
  height: 21px;
  display: none;
  position: absolute;
  right: 16px;
  bottom: 30px;
  margin-top: -10px;
  margin-left: -18px;
  z-index: 20;
  cursor: pointer;
}
header .hamburger .bar {
  width: 36px;
  height: 4px;
  background-color: #bf2e1a;
  cursor: pointer;
}
header .hamburger .bar.bar-m {
  margin-top: 3px;
  margin-bottom: 3px;
}
header .logo img {
  width: 300px;
}
@media (max-width: 1600px) {
  header .logo img {
    width: 270px;
    height: auto;
  }
}
@media (max-width: 600px) {
  header .logo img {
    width: 149px;
    padding-top: 5px;
    padding-left: 5px;
  }
}
header .menu-container {
  position: relative;
}
header .menu-container > ul.navigation {
  list-style: none;
  position: relative;
}
header .menu-container > ul.navigation li {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 148px;
  text-align: center;
  padding-top: 11px;
  padding-bottom: 9px;
}
header .menu-container > ul.navigation li:last-child {
  border-right: 1px solid #fff;
}
@media (min-width: 1199px) {
  header .menu-container > ul.navigation li:hover > ul {
    display: block;
  }
}
header .menu-container > ul.navigation li a {
  color: #ffffff;
  transition: all 300ms ease-in-out 0ms;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 19px;
}
header .menu-container > ul.navigation li a:hover {
  color: #bf2e1a;
}
@media (max-width: 1700px) {
  header .menu-container > ul.navigation li a {
    font-size: 17px;
  }
}
@media (max-width: 1900px) {
  header .menu-container > ul.navigation li {
    width: 131px;
  }
}
@media (max-width: 1700px) {
  header .menu-container > ul.navigation li {
    width: 121px;
  }
}
@media (max-width: 1480px) {
  header .menu-container > ul.navigation li {
    padding-top: 3px;
    padding-bottom: 4px;
  }
}
header .menu-container > ul.navigation li.login {
  background-color: #1a283c;
  border: none;
  transition: 400ms ease all;
  border-radius: 20px;
}
header .menu-container > ul.navigation li.login:hover {
  background-color: #bf2e1a;
  color: #ffffff !important;
}
header .menu-container > ul.navigation li.login:hover a {
  color: #ffffff !important;
}
@media (max-width: 1200px) {
  header .menu-container > ul.navigation li.login {
    width: 150px;
    text-align: center;
    margin: 20px auto;
    font-size: 20px;
    padding: 10px 20px;
  }
  header .menu-container > ul.navigation li.login a {
    color: #ffffff;
  }
}
header .menu-container > ul.navigation ul {
  position: absolute;
  display: none;
  margin: 0;
  padding: 5px 10px;
  padding-top: 20px;
}
@media (min-width: 1200px) {
  header .menu-container > ul.navigation ul {
    left: -40%;
  }
}
header .menu-container > ul.navigation ul li {
  display: block;
  background-color: #1a283c;
  border: none;
  min-width: 250px;
}
header .menu-container > ul.navigation ul li:last-child {
  border: none;
}
header .menu-container > ul.navigation ul ul {
  position: absolute;
  top: 0;
  left: 97%;
  padding-top: 0;
}
header .menu-container > ul.navigation ul ul li {
  width: 300px;
}
@media (max-width: 1199px) {
  header .menu {
    z-index: 999;
    background-color: #e3e3e3;
    margin-top: -10px;
    margin-left: -10px;
    text-align: center;
    width: 50%;
    display: none;
    transition: 500ms ease all;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
  }
  header .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding-top: 40px;
  }
  header .menu ul.navigation {
    width: 100%;
  }
  header .menu ul.navigation li {
    border: none;
    display: block;
    width: 100%;
    text-align: left;
  }
  header .menu ul.navigation li a {
    color: #1a283c;
  }
  header .menu ul.navigation li:last-child {
    border: none;
  }
  header .menu ul.navigation ul {
    display: none;
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
  }
  header .menu ul.navigation ul li {
    background-color: transparent;
    display: block;
    min-width: initial;
    width: 100%;
    list-style: initial;
  }
  header .menu ul.navigation ul ul {
    position: relative;
    top: initial;
    left: initial;
    display: none;
  }
  header .menu ul.navigation ul ul li {
    width: 100%;
  }
}
@media (max-width: 600px) {
  header .menu {
    width: 100%;
    margin-top: -24px;
    margin-left: 0;
  }
}
header .menu.show {
  display: block;
  padding-bottom: 500px;
}
header #close-menu {
  display: none;
  position: absolute;
  color: #001044;
  top: 34px;
  right: 20px;
  font-size: 30px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
@media (max-width: 1199px) {
  header #close-menu {
    display: block;
  }
}
header .callus-button a {
  text-transform: uppercase;
  position: relative;
  display: block;
}
header .callus-button a:hover i {
  color: #fff;
  background-color: #bf2e1a;
  border: 1px solid #fff;
}
header .callus-button a:hover span {
  background-color: #fff;
  color: #bf2e1a;
}
header .callus-button a i {
  transition: all 300ms ease-in-out 0ms;
  height: 43px;
  width: 43px;
  fill: #bf2e1b;
  background-color: #fff;
  padding: 6px;
  border: 1px solid #bf2e1b;
  border-radius: 72px;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 1;
  font-size: 30px;
  color: #bf2e1b;
}
@media (max-width: 991px) {
  header .callus-button a i {
    height: 32px;
    width: 32px;
    padding: 3px;
    top: 0;
    left: -1px;
    font-size: 24px;
  }
}
header .callus-button a span {
  transition: all 300ms ease-in-out 0ms;
  color: #fff;
  font-size: 20px;
  margin-right: 19px;
  background-color: #bf2e1a;
  display: table;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 29px 14px 57px;
  border-radius: 50px;
}
@media (max-width: 1480px) {
  header .callus-button a span {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  header .callus-button a span {
    font-size: 14px;
    margin-right: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 19px;
    padding-left: 44px;
  }
}
header .phone a {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  transition: all 300ms ease-in-out 0ms;
}
header .phone a:hover {
  color: #bf2e1b;
}
header .phone a i {
  vertical-align: middle;
}
header .phone a i > svg {
  fill: #bf2e1b;
  height: 45px;
  width: 45px;
}
@media (max-width: 1024px) {
  header .phone a i > svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1800px) {
  header .phone a {
    font-size: 32px;
  }
}
@media (max-width: 1480px) {
  header .phone a {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  header {
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    height: auto;
  }
  header .logo {
    justify-content: flex-end;
  }
  header .callus-button {
    justify-content: flex-end;
    display: flex;
    width: 100%;
  }
  header .phone {
    width: 400px;
  }
  header .hamburger {
    display: block;
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  header .callus-button {
    right: 57px;
    bottom: 20px;
    position: absolute;
  }
  header .hamburger {
    bottom: 20px;
  }
  header .phone {
    width: initial;
  }
}
@media (max-width: 600px) {
  header {
    /*margin-top: 24px;*/
    padding: 0;
    padding-top: 5px;
    height: 90px;
  }

  header .logo a img {
    max-width: 100%;
  }
  header .callus-button {
    position: relative;
    top: 5px;
    right: 0;
  }
  header .hamburger {
    bottom: 10px;
  }
  header .phone {
    margin-top: 0px;
    position: absolute;
    top: -33px;
    text-align: center;
    width: 100%;
    margin-right: 0;
    background-color: #bf2e1a;
    padding-top: 9px;
  }
  header .phone a {
    font-size: 20px;
    font-weight: normal;
  }
  header .phone a i > svg {
    top: 1px;
    left: 2px;
    height: 21px;
    width: 21px;
    fill: #fff;
  }
}

.readmore {
  text-decoration: none;
  position: relative;
  display: block;
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
}
.readmore i {
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  height: 43px;
  width: 43px;
  color: #ffffff;
  background-color: #bf2e1b;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 72px;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 1;
  font-size: 31px;
}
.readmore p {
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  color: #bf2e1b;
  background-color: #fff;
  font-size: 20px;
  margin-right: 19px;
  display: table;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 13px;
  padding-bottom: 14px;
  padding-right: 29px;
  padding-left: 57px;
  border-radius: 50px;
}
@media (max-width: 1200px) {
  .readmore p {
    font-size: 16px;
  }
}

#slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
}
#slideshow-container .slides {
  min-height: 300px;
  position: relative;
  z-index: 2;
  height: auto;
}
#slideshow-container .slide {
  display: none;
}
#slideshow-container .slide-img {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100vh;
  width: 100%;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
}
#slideshow-container .slide-img:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-image: url(../img/slide-deg.png);
  background-size: cover;
  z-index: 0;
}
#slideshow-container .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 0;
  opacity: 1;
  background-image: none;
  z-index: 0;
  background-repeat: no-repeat;
}
@media (max-width: 375px) and (min-width: 360px) and (min-height: 600px) {
  #slideshow-container .slide-img {
    background-position-x: -700px;
  }
}
@media (max-width: 375px) and (min-width: 360px) and (min-height: 700px) {
  #slideshow-container .slide-img {
    background-position-x: -900px;
  }
}
@media (max-width: 360px) and (min-width: 360px) {
  #slideshow-container .slide-img {
    background-position-x: -700px;
  }
}
#slideshow-container .prev, #slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 3;
}
#slideshow-container .prev:hover, #slideshow-container .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
#slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#slideshow-container .text-container {
  position: absolute;
  max-width: 70%;
  z-index: 9;
  top: 10%;
}
#slideshow-container .text-container .text {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.7);
  bottom: 268px;
  left: 0;
  padding-left: 100px;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0;
}
#slideshow-container .text-container .text > p {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  margin-top: 20px;
}
#slideshow-container .text-container .text > p:first-child {
  margin-top: 0;
}
@media (max-width: 1199px) {
  #slideshow-container .text-container .text > p {
    font-size: 38px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  #slideshow-container .text-container .text > p {
    font-size: 27px;
    line-height: 1;
    text-align: center;
    padding: 5px 0;
  }
}
#slideshow-container .text-container .text .slide-btn {
  text-decoration: none;
  position: relative;
  top: 44px;
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0);
  display: block;
}
#slideshow-container .text-container .text .slide-btn i {
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  height: 72px;
  width: 72px;
  color: #bf2e1b;
  background-color: #fff;
  padding: 8px;
  border: 1px solid #bf2e1b;
  border-radius: 72px;
  position: absolute;
  top: 0px;
  left: -1px;
  z-index: 1;
  font-size: 55px;
}
@media (max-width: 1199px) {
  #slideshow-container .text-container .text .slide-btn i {
    height: 58px;
    width: 58px;
    font-size: 47px;
    padding: 5px;
  }
}
@media (max-width: 991px) {
  #slideshow-container .text-container .text .slide-btn i {
    height: 48px;
    width: 48px;
    font-size: 37px;
    padding: 5px;
  }
}
#slideshow-container .text-container .text .slide-btn p {
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  color: #fff;
  font-size: 25px;
  margin-right: 19px;
  background-color: #bf2e1a;
  display: table;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-right: 29px;
  padding-left: 90px;
  border-radius: 50px;
  min-width: 338px;
  min-height: 71px;
}
@media (max-width: 1199px) {
  #slideshow-container .text-container .text .slide-btn p {
    font-size: 18px;
    margin-right: 19px;
    min-width: 259px;
    min-height: 57px;
    padding-right: 29px;
  }
}
@media (max-width: 991px) {
  #slideshow-container .text-container .text .slide-btn p {
    font-size: 15px;
    margin-right: 19px;
    min-width: 231px;
    min-height: 48px;
    padding-right: 22px;
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  #slideshow-container .text-container .text .slide-btn p {
    text-align: left;
  }
}
#slideshow-container .text-container .text .slide-btn:hover p {
  color: #bf2e1b;
  background-color: #fff;
}
#slideshow-container .text-container .text .slide-btn:hover i {
  color: #ffffff;
  border: 1px solid #fff;
  background-color: #bf2e1b;
}
@media (max-width: 767px) {
  #slideshow-container .text-container .text .slide-btn {
    display: table;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #slideshow-container .text-container .text {
    bottom: 268px;
    left: 0;
    padding-left: 0px;
    font-size: 48px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  #slideshow-container .text-container {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  #slideshow-container .text-container {
    max-width: 90%;
    width: 90%;
    left: 50%;
    display: block;
    transform: translate(-50%, 0);
    bottom: unset;
    top: 65px;
  }
}
#slideshow-container .slide-dots {
  bottom: 25%;
  position: absolute;
  padding-left: 229px;
  z-index: 3;
}
#slideshow-container .slide-dots-container {
  position: relative;
}
#slideshow-container .slide-dots-container .slide-dot {
  position: relative;
  height: 6px;
  width: 40px;
  background-color: #fff;
  float: left;
  box-shadow: 0 1px 33px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-left: 8px;
  margin-right: 7px;
}
#slideshow-container .slide-dots-container .slide-dot.active, #slideshow-container .slide-dots-container .slide-dot:hover {
  background-color: #bf2e1a;
  height: 25px;
  top: -8px;
}
#slideshow-container .slide-dots-container:before {
  content: "";
  display: block;
  width: 107px;
  height: 1px;
  background-color: #a7a7a7;
  position: absolute;
  left: -122px;
  top: 2px;
  box-shadow: 0 1px 33px 2px rgba(0, 0, 0, 0.3);
}
#slideshow-container .slide-dots-container:after {
  content: "";
  display: block;
  width: 107px;
  height: 1px;
  background-color: #a7a7a7;
  position: absolute;
  right: -142px;
  top: 2px;
  box-shadow: 0 1px 33px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1199px) {
  #slideshow-container .slide-dots {
    padding-left: 173px;
  }
}
@media (max-height: 400px) {
  #slideshow-container .slide-dots {
    bottom: 10%;
  }
}
@media (max-width: 1024px) {
  #slideshow-container .slide-dots {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 490px) {
  #slideshow-container .slide-dots {
    display: none;
  }
}
#slideshow-container .active, #slideshow-container .slide-dot:hover {
  background-color: #717171;
}
#slideshow-container .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.subtitle {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  z-index: 10;
  margin-bottom: 40px;
  margin-top: 30px;
  line-height: 1.3;
  padding: 0 20px;
  font-weight: 600;
}

.articles-container {
  background-color: #00204e;
  position: relative;
  padding-bottom: 73px;
}
.articles-container-poly {
  position: relative;
  height: 36px;
  overflow: hidden;
}
.articles-container-poly:before {
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  width: 33%;
  background-color: #001737;
  top: 0;
  right: 0;
  transform-origin: top;
  -ms-transform: skew(36deg, 0deg);
  -webkit-transform: skew(36deg, 0deg);
  transform: skew(36deg, 0deg);
}
.articles-container-poly:after {
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  width: 33%;
  background-color: #001737;
  top: 0;
  left: 0;
  transform-origin: top;
  -ms-transform: skew(-36deg, 0deg);
  -webkit-transform: skew(-36deg, 0deg);
  transform: skew(-36deg, 0deg);
}
@media (max-width: 1199px) {
  .articles-container-poly:before, .articles-container-poly:after {
    width: 15%;
  }
}
@media (max-width: 767px) {
  .articles-container-poly:before, .articles-container-poly:after {
    width: 10%;
  }
}
.articles-container .articles-wrapper {
  display: flex;
  flex-direction: column;
}
.articles-container .articles-wrapper h2 {
  width: 642px;
  margin: 0 auto;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .articles-container .articles-wrapper h2 {
    width: 90%;
    margin-top: 56px;
    margin-bottom: 52px;
  }
}
.articles-container .article-row {
  width: 92%;
}
.articles-container .article-row.large {
  display: table;
  margin: 0 auto;
  z-index: 3;
  position: relative;
}
.articles-container .article-row.large .article {
  display: inline-block;
  text-transform: uppercase;
  width: 31%;
  margin-left: 1%;
  margin-right: 1%;
  height: 300px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.articles-container .article-row.large .article .text {
  position: absolute;
  z-index: 2;
  left: 30px;
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  bottom: -72px;
  padding-bottom: 27px;
}
.articles-container .article-row.large .article .text a {
  color: #fff;
  text-decoration: none;
}
.articles-container .article-row.large .article .text a h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
  margin-top: 0;
  color: #fff;
}
@media (max-width: 1480px) and (min-width: 992px) {
  .articles-container .article-row.large .article .text a h3 {
    font-size: 30px;
  }
}
.articles-container .article-row.large .article .text a h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
  margin-top: 0px;
  line-height: 1;
  color: #fff;
}
.articles-container .article-row.large .article:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid transparent;
  z-index: 1;
  pointer-events: none;
}
.articles-container .article-row.large .article:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.articles-container .article-row.large .article:hover .text {
  bottom: 0;
}
.articles-container .article-row.large .article:hover:before {
  border: 2px solid #bf2e1a;
}
.articles-container .article-row.large:before {
  content: "";
  display: block;
  width: 511px;
  background-color: #102c5b;
  position: absolute;
  top: -49px;
  bottom: -49px;
  right: 15%;
  z-index: -1;
}
.articles-container .article-row.large:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 511px;
  background-color: #102c5b;
  position: absolute;
  top: -49px;
  bottom: -49px;
  left: 15%;
  z-index: -1;
}
@media (max-width: 650px) {
  .articles-container .article-row.large:after {
    width: initial;
  }
}
.articles-container .article-row.small {
  display: flex;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  margin-top: 29px;
}
.articles-container .article-row.small .article {
  text-align: center;
  display: flex;
  height: 141px;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 22px;
  align-items: center;
  position: relative;
  width: 268px;
  margin-left: 16px;
  margin-right: 16px;
}
.articles-container .article-row.small .article:hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #bf2e1b;
  border-bottom: 5px solid #fff;
}
.articles-container .article-row.small .article:before {
  content: none;
}
.articles-container .article-row.small .article:after {
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(19, 19, 19, 0.5);
  border-bottom: 5px solid #bf2e1b;
  z-index: -1;
}
.articles-container .article-row.small .article .text {
  width: 100%;
}
.articles-container .article-row.small .article .text a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.articles-container .article-row.small .article .text a h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 20px;
  line-height: 1;
}
.articles-container .article-row.small .article .text a h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1px;
}
.articles-container .article-row .stretchlink {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1800px) {
  .articles-container .article-row {
    width: 100%;
    max-width: 1300px;
  }
  .articles-container .article-row.small .article {
    padding: 0 11px;
  }
}
@media (max-width: 1480px) {
  .articles-container .article-row {
    max-width: 955px;
  }
  .articles-container .article-row.large .article {
    text-transform: uppercase;
    width: 31.33%;
    height: 220px;
    background-size: cover;
  }
  .articles-container .article-row.small .article .text a h3 {
    font-size: 20px;
    margin: 0;
  }
  .articles-container .article-row.small .article .text a h4 {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .articles-container .article-row {
    width: 85%;
  }
  .articles-container .article-row.large .article, .articles-container .article-row.small .article {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .articles-container .article-row.large .article {
    margin-bottom: 20px;
  }
  .articles-container .article-row.small {
    max-width: 85%;
    width: 85%;
    display: block;
  }
  .articles-container .article-row.small .article {
    display: inline-block;
    height: 111px;
    width: 46%;
    float: left;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 11px;
  }
  .articles-container .article-row.small .article .text a h3 {
    margin-top: 20px;
    font-size: 23px;
  }
}
.articles-container:before {
  content: "";
  display: block;
  width: 389px;
  height: 5px;
  background-color: #bf2e1a;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 410px) {
  .articles-container:before {
    content: none;
  }
}

.intro {
  padding: 50px 0 50px;
  background-color: #f8f8f8;
}
.intro .service-title {
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  text-align: left;
  padding: 0 10px;
  color: #ffffff;
}
.intro .service-title p:first-child {
  font-size: 38px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 40px;
}
@media (max-width: 767px) {
  .intro .service-title p {
    font-size: 18px;
  }
  .intro .service-title p:first-child {
    font-size: 22px;
    line-height: 25px;
  }
}
@media (max-width: 490px) {
  .intro .service-title p {
    font-size: 16px;
    line-height: 18px;
    padding: 5px;
  }
  .intro .service-title p:first-child {
    font-size: 20px;
    line-height: 20px;
  }
}
.intro .readmore p {
  background-color: #bf2e1a;
  color: #ffffff;
}
.intro .readmore:hover p {
  background-color: #e76655;
}
.intro .readmore:hover i {
  background-color: #e76655;
  color: #ffffff;
}

.title {
  margin: 0 auto;
  color: #00204e;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 4;
}

.intro {
  background-color: #12376e;
}

.intro_box {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1200px;
}
@media only screen and (max-width: 992px) {
  .intro_box {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
}

.intro_col {
  flex-basis: 33.33%;
  padding: 0 7.5px;
}
@media only screen and (max-width: 992px) {
  .intro_col {
    margin-left: auto;
    margin-right: auto;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 500px;
    margin-bottom: 30px;
  }
}

.intro_half {
  flex-basis: 50%;
  padding: 0 7.5px;
}

.intro_item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.intro_item:hover .intro_picture img {
  transform: scale(1.02);
}

.intro_picture img {
  display: block;
  width: 100%;
  height: auto;
  transition-duration: 0.5s;
}

.intro_descr {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition-duration: 0.4s;
}

.intro-descr_left {
  width: 20%;
  margin-right: 30px;
}

.intro-descr_icon {
  text-align: center;
  font-size: 42px;
  color: #57af77;
}
.intro-descr_icon i {
  vertical-align: top;
}

.intro-descr_title {
  font-family: "source_sans_bold", Helvetica, Arial, sans-serif;
  font-size: 1.375em;
  color: #1c6393;
  transition-duration: 0.3s;
}

.intro-descr_text {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 0.8125em;
  line-height: 24px;
  color: #6c6c6c;
  transition-duration: 0.3s;
  min-height: 140px;
}

.intro__simple .intro_box {
  margin: 15px 0;
}
.intro__simple .intro_descr {
  padding: 5px;
}
.intro__simple .intro-descr_title {
  padding: 20px 0;
}
.intro__simple .intro-descr_icon i {
  vertical-align: middle;
  font-size: 28px;
}
.intro__simple .intro-descr_icon img {
  width: 64px;
  vertical-align: middle;
}

.into_future {
  text-align: center;
}
.into_future p {
  font-weight: bold;
  margin: 20px 0;
  font-size: 2.1em;
}

#services {
  background-color: #12376e;
  color: #ffffff;
  padding: 30px 10px;
}
#services .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
#services h2 {
  margin: 0 auto;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
#services .services-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #12376e;
  padding: 10px;
}
#services .services-container .column:first-child {
  padding-right: 10px;
}
@media only screen and (max-width: 992px) {
  #services .services-container .column {
    flex: initial;
    padding-right: 0;
  }
}
@media only screen and (max-width: 992px) {
  #services .services-container {
    flex-direction: column;
    justify-content: center;
  }
}
#services .service {
  margin-bottom: 30px;
  min-height: 115px;
}
#services .service .service-header .service-icon {
  padding-right: 15px;
  display: table-cell;
  vertical-align: middle;
  width: 70px;
}
#services .service .service-header .service-icon i {
  background-color: #fff;
  color: #12376e;
  font-size: 24px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  width: 2em;
  height: 2em;
  border: 1px solid transparent;
  display: table-cell;
  border-radius: 10px;
}
#services .service .service-header .service-title {
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
}
#services .service .service-text {
  text-align: left;
  margin-top: 10px;
  max-width: 400px;
}
@media only screen and (max-width: 992px) {
  #services .service .service-text {
    width: 100%;
  }
}

.reviews {
  padding: 50px 10px;
  background-color: #fff;
}
.reviews .reviews {
  padding: 70px 0 90px;
  background-color: #fff;
}
.reviews .reviews_box {
  margin-top: 55px;
}
.reviews .reviews_box .slick-slide {
  outline: none;
}
.reviews .reviews_box .slick-dots {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 20px;
  right: 0;
  left: 50%;
  bottom: -30px;
  transform: none;
}
.reviews .reviews_box .slick-dots li {
  display: inline-block;
  margin: 4px 0;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: transparent;
  transition-duration: 300ms;
}
.reviews .reviews_box .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #999;
  transition-duration: 300ms;
}
.reviews .reviews_box .slick-dots li button:before {
  content: none;
}
.reviews .reviews_box .slick-dots li.slick-active {
  border: 1px solid #57af77;
}
.reviews .reviews_box .slick-dots li.slick-active button {
  width: 9px;
  height: 9px;
  background-color: #57af77;
}
.reviews .reviews_box:after {
  content: "";
  display: table;
  clear: both;
}
.reviews .review_item {
  width: 50%;
  float: left;
}
.reviews .review_card {
  margin: 10px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.reviews .review_author {
  margin-right: 10px;
  min-width: 150px;
  text-align: center;
  position: relative;
}
.reviews .review_author:hover .review-author_photo img {
  transform: scale(1.155);
  transition-duration: 0.3s;
}
.reviews .review_author:hover .review-author_photo:after {
  top: 4px;
  left: 14.4px;
  transform: rotate(20deg);
  transition-duration: 0.3s;
}
.reviews .review-author_photo {
  padding-top: 10px;
  margin-bottom: 30px;
}
.reviews .review-author_photo img {
  display: inline-block;
  max-width: 100px;
  max-height: 100px;
  margin: 0;
  border-radius: 50%;
  transition-duration: 0.3s;
}
.reviews .review-author_photo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 142px;
  height: 120px;
  background-image: url("../img/rev-decor.png");
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}
.reviews .author-detail_name {
  font-size: 1.125em;
  color: #1c6393;
  line-height: 30px;
}
.reviews .author-detail_position {
  font-size: 0.8125em;
  color: #6c6c6c;
  line-height: 24px;
}
.reviews .review_content {
  padding: 40px 50px;
  font-size: 0.875em;
  line-height: 24px;
  color: #6C6C6C;
  box-shadow: 0 2px 11px -2px rgba(0, 0, 0, 0.25);
}

.warning {
  background-color: #12376e;
  padding: 20px 0;
  font-size: 1.1em;
  line-height: 1.2em;
  color: #a3a3a3;
  text-transform: uppercase;
}
.warning a {
  text-transform: none;
}

.title_box {
  margin-bottom: 0;
}
.title_box .title:before {
  content: none;
}

.footer-item_title {
  margin-bottom: 10px;
}

.footer-menu_item {
  margin-bottom: 0;
}

.footer-top_box {
  justify-content: center;
}

.footer-icons {
  padding-top: 30px;
  background-color: #12376e;
}

.footer__copyright {
  padding: 15px 0;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
}
.footer__copyright .footer__privacy a {
  color: #fff;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  margin-right: 10px;
}
.footer__copyright .footer__privacy a:hover {
  color: #253c57;
}
@media only screen and (max-width: 992px) {
  .footer__copyright {
    padding: 10px 0;
    font-size: 0.75em;
    line-height: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__copyright {
    line-height: 16px;
  }
  .footer__copyright .footer__privacy {
    margin-top: 10px;
  }
}

.footer, .footer_top, .warning, .pay-icons {
  background-color: #12376e;
}

.footer_top {
  padding-top: 20px;
}

.page, .main_wrap {
  padding-top: 30px;
}

.req_img {
  background-position: center;
}

.article-meta__title {
  color: #1a283c;
  font-size: 1.4em;
  margin: 10px 0;
}

.page_title {
  color: #00204e;
}
.page_title h1 {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
}
.page_title h1, .page_title h2 {
  color: #00204e;
}
.page_title:after {
  background: #00204e;
  width: 100%;
  height: 2px;
}

.blog p {
  margin: 10px 0;
  line-height: 1.3em;
}
.blog h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 0;
}
.blog h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin: 15px 0;
}
.blog ul {
  list-style: initial;
  padding-left: 40px;
}
.blog ul li {
  line-height: 1.5em;
}
@media (max-width: 490px) {
  .blog img {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 992px) {
  footer.footer {
    text-align: center;
  }
  footer.footer .footer-menu_item:before {
    content: none;
  }

  .footer__copyright {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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