@import url("https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700&display=swap&subset=latin-ext");
* {
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  color: #000;
  font-family: "Lato", sans-serif;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

#wpadminbar {
  top: auto;
  bottom: 0;
}

#wpadminbar .menupop .ab-sub-wrapper,
#wpadminbar .shortlink-input {
  bottom: 100%;
}

body.admin-bar {
  padding-bottom: 32px;
}

#site-container {
  background: #fff;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
}

.clear {
  clear: both;
}

.alignleft {
  display: block;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: block;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.ril-loading {
  filter: blur(15px);
  backface-visibility: hidden;
}

.ril-loaded {
  filter: blur(0px);
  backface-visibility: hidden;
}

/*--------------------------------------------------
## Layout
--------------------------------------------------*/
/* Predefined styles */
#hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 10px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
#hamburger span, #hamburger::before, #hamburger::after {
  content: "";
  display: block;
  background: #000;
  width: 42px;
  height: 6px;
  margin-bottom: 5px;
  border-radius: 2px;
}
#hamburger::after {
  margin-bottom: 0;
}

#mobile-nav,
#hamburger {
  display: none;
}

/* Project-specific styles */
body {
  padding-top: 140px;
}

a {
  color: #3972b4;
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding-top: 15px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
header > .container > .row {
  position: relative;
}
header .logo {
  display: block;
  height: 100px;
  transition: height 0.4s;
}
header .logo img {
  display: block;
  max-height: 100%;
}
header .header-right-container {
  position: static;
}
header .header-right {
  display: inline-block;
  float: right;
}
header .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 18px;
}
header .upper .rightside {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .upper .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .upper .social-icons a {
  display: block;
  margin-left: 15px;
}
header .upper .langbox {
  display: flex;
  align-items: center;
  padding-left: 25px;
}
header .upper .langbox a {
  display: block;
  margin-left: 9px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
header .upper .langbox a.current-lang {
  color: #3972b4;
}
header .upper .langbox a:hover {
  color: #3972b4;
  text-decoration: underline;
}
header .searchbox {
  position: relative;
  width: 100%;
  max-width: 445px;
  margin-right: 20px;
}
header .searchbox input[type=text] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}
header .searchbox button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 37px;
  height: 40px;
  background-color: transparent;
  border: none;
  transition: background-color 0.4s;
}
header .searchbox button:hover {
  background-color: #dbdbdb;
}
header .searchbox-mobile {
  display: none;
}
header #main-nav {
  padding-top: 5px;
}
header #main-nav ul {
  display: block;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
header #main-nav .menu > .menu-item {
  display: inline-block;
}
header #main-nav .menu > .menu-item:first-child {
  margin-left: 0;
}
header #main-nav .menu > .menu-item > a {
  display: block;
  position: relative;
  color: #1e2e3a;
  padding: 25px 18px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
  transition: padding 0.4s;
}
header #main-nav .menu > .menu-item > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #1e4a7d;
  width: 100%;
  height: 6px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
header #main-nav .menu > .menu-item.blue > a {
  /*color: #1e4a7d;*/
}
header #main-nav .menu > .menu-item:hover > a::after, header #main-nav .menu > .menu-item.current-menu-item > a::after, header #main-nav .menu > .menu-item.current-menu-ancestor > a::after {
  transform: scaleX(1);
}
header #main-nav .menu > .menu-item.menu-item-has-children > a {
  background: url("../images/arrow-down-black.png") no-repeat right 18px center;
  padding-right: 36px;
}
header #main-nav .menu > .menu-item > .sub-menu {
  display: none;
  position: absolute;
  left: 15px;
  width: calc(100% - 30px);
  background-color: #1e4a7d;
  color: #fff;
  padding: 35px 65px;
}
header #main-nav .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
  padding: 0 25px;
  border-left: 1px solid #55759a;
}
header #main-nav .menu > .menu-item > .sub-menu > .menu-item a {
  display: block;
  color: #fff;
  font-size: 15px;
}
header #main-nav .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children {
  padding-bottom: 25px;
}
header #main-nav .menu > .menu-item > .sub-menu > .menu-item.menu-level-2 > a {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
header #main-nav .menu > .menu-item > .sub-menu .menu-item a:hover, header #main-nav .menu > .menu-item > .sub-menu .menu-item.current-menu-ancestor > a, header #main-nav .menu > .menu-item > .sub-menu .menu-item.current-menu-item > a {
  text-decoration: underline;
}
header #main-nav .menu > .menu-item:hover > .sub-menu {
  display: block;
}
header #main-nav .menu > .menu-item:hover > .sub-menu > li {
  display: inline-block;
  vertical-align: top;
  width: 33%;
}
header.minimized .logo {
  height: 40px;
}
header.minimized .upper {
  display: none;
}
header.minimized #main-nav {
  padding-top: 0;
}
header.minimized #main-nav .menu > .menu-item > a {
  padding-top: 10px;
  padding-bottom: 15px;
}

footer {
  background-color: #f6f6f6;
}
footer .top {
  padding-top: 60px;
  padding-bottom: 20px;
}
footer .top .menu-columns > div {
  display: inline-block;
  vertical-align: top;
  width: 33%;
}
footer .top .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .top .menu li {
  display: block;
}
footer .top .menu li a {
  display: inline-block;
  color: #414141;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
footer .top .menu li a:hover, footer .top .menu li.current-menu-item a, footer .top .menu li.current-menu-ancestor a {
  font-weight: 700;
}
footer .top .footer-addresses {
  display: flex;
  justify-content: flex-end;
}
footer .top .footer-addresses .inner {
  display: inline-block;
}
footer .top .footer-addresses .inner p {
  margin-bottom: 30px;
  color: #414141;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
footer .top .footer-addresses .inner p a {
  color: inherit;
}
footer .top .footer-addresses .inner p a:hover {
  color: #3972b4;
  text-decoration: underline;
}
footer .top .footer-addresses .inner p strong {
  font-weight: 700;
}
footer .bottom {
  position: relative;
  padding-top: 35px;
  padding-bottom: 25px;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 300;
}
footer .bottom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - 30px);
  height: 1px;
  margin: auto;
  background-color: #eaeaea;
}
footer .bottom .design {
  text-align: right;
}
footer .bottom a {
  color: #1c1c1c;
}
footer .bottom a:hover {
  text-decoration: underline;
}
footer .social-icons {
  display: none;
  padding: 10px 0 30px;
}
footer .social-icons a {
  display: block;
  margin: 0 10px;
}

.subpage-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 387px;
  background-color: #f6f6f6;
  overflow: hidden;
}
.subpage-banner img {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.subpage-banner .title {
  display: inline-block;
  position: relative;
  z-index: 3;
  color: #fff;
  padding-bottom: 10px;
  font-size: 53px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}
.subpage-banner .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  width: 124px;
  height: 1px;
}

.breadcrumbs {
  padding-top: 25px;
  padding-bottom: 10px;
}
.breadcrumbs .breadcrumbs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs .breadcrumbs-item {
  display: inline-block;
  color: #4a5f70;
  font-size: 14px;
  font-weight: 300;
}
.breadcrumbs .breadcrumbs-item a {
  color: #9aa3aa;
}
.breadcrumbs .breadcrumbs-item.last a {
  color: #4a5f70;
}
.breadcrumbs .breadcrumbs-item:not(.last)::after {
  content: ">";
  display: inline-block;
  padding: 0 5px;
}

.page-title {
  display: block;
  color: #1e2e3a;
  line-height: 48px;
  font-size: 48px;
  font-weight: 300;
  text-align: center;
}
.page-title::after {
  content: "";
  display: block;
  background-color: #caab87;
  width: 124px;
  height: 1px;
  margin: 25px auto 15px;
}

.blogpost {
  display: block;
}
.blogpost__image {
  background: #f6f6f6 url("../images/blog-default.png") no-repeat center center;
  height: 235px;
  margin-bottom: 20px;
  overflow: hidden;
}
.blogpost__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blogpost__title {
  color: #1e2e3a;
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s;
}
.blogpost__title:hover{
  color: #3972b4;
  transition: all 0.3s;
}
.blogpost__excerpt {
  color: #4a5f70;
  margin-bottom: 5px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.blogpost__link {
  display: inline-block;
  position: relative;
  color: #3972b4;
  padding-right: 12px;
  font-size: 16px;
  transition: color 0.3s;
}
.blogpost__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  background: url("../images/arrow-right-blue.png") no-repeat;
  width: 5px;
  height: 10px;
  transition: transform 0.3s;
}
.blogpost:hover .blogpost__image img {
  transform: scale(1.1);
}
.blogpost:hover .blogpost__link {
  color: #000;
}
.blogpost:hover .blogpost__link::after {
  transform: translateX(5px);
}

.logotypes-bar .owl-stage-outer {
  overflow: hidden;
}
.logotypes-bar .owl-item {
  display: inline-block;
  vertical-align: top;
}
.logotypes-bar .partner {
  padding: 0 10px;
}
.logotypes-bar .owl-nav {
  display: none;
}

.select2 {
  min-width: 220px;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
  height: 45px !important;
  line-height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 45px !important;
  line-height: 45px !important;
  color: #6c7b88;
  padding: 0 20px !important;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  bottom: 0 !important;
  right: 10px !important;
  margin: auto;
  background: url("../images/arrow-down-black.png") no-repeat center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.mm-panels,
.mm-panel {
  background-color: #1f4a7d !important;
  color: #fff;
}

.mm-listview > li,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next::before,
.mm-listview > li::after {
  border-color: #58789f !important;
}

.mm-listview .mm-next::before {
  display: none !important;
}

.mm-navbar {
  text-align: left !important;
  border-color: #58789f !important;
  text-transform: uppercase;
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar > * {
  color: #fff !important;
  font-weight: 700;
}

.mm-menu .mm-listview > li .mm-next::before,
.mm-menu .mm-listview > li .mm-next::after,
.mm-menu .mm-btn::after,
.mm-menu .mm-btn::before {
  border-color: #577aa0 !important;
}

#mm-1 > .mm-navbar {
  padding: 0 20px !important;
}

/*--------------------------------------------------
## Front Page
--------------------------------------------------*/
.front-section.grey {
  background-color: #f6f6f6;
}
.front-section.section-advantages {
  padding-top: 70px;
  padding-bottom: 80px;
}
.front-section.section-advantages .inner {
  max-width: 920px;
  margin: auto;
}
.front-section.section-services {
  padding-top: 60px;
  padding-bottom: 65px;
}
.front-section__title {
  color: #1e2e3a;
  font-size: 48px;
  font-weight: 300;
  text-align: center;
}
.front-section__title::after {
  content: "";
  display: block;
  background-color: #caab87;
  width: 124px;
  height: 1px;
  margin: 15px auto;
}
.front-section__text {
  color: #4a5f70;
  padding-bottom: 20px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.front-section__text p {
  padding: 10px 0;
}
.front-section__button {
  display: inline-block;
  background-color: #1e4a7d;
  color: #fff;
  padding: 0 26px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  transition: background-color 0.3s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.front-section__button:hover {
  background-color: #000;
  color: #fff;
}

.section-advantages {
  text-align: center;
}

.section-services .service {
  display: block;
  padding-top: 35px;
  padding-bottom: 25px;
}
.section-services .service__icon {
  display: block;
  height: 50px;
  margin-bottom: 10px;
}
.section-services .service__name {
  color: #1e2e3a;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-services .service__description {
  color: #4a5f70;
  margin-bottom: 5px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}
.section-services .service__link {
  display: inline-block;
  position: relative;
  color: #3972b4;
  padding-right: 12px;
  font-size: 16px;
  transition: color 0.3s;
}
.section-services .service__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  background: url("../images/arrow-right-blue.png") no-repeat;
  width: 5px;
  height: 10px;
  transition: transform 0.3s;
}
.section-services .service:hover .service__link {
  color: #000;
}
.section-services .service:hover .service__link::after {
  transform: translateX(5px);
}

.section-whyus {
  background: url("/images/site/home/p/fp-bg-whyus.jpg") no-repeat center top;
  background-size: cover;
  padding-top: 50px;
}
.section-whyus .front-section__title {
  color: #fff;
  margin-bottom: 20px;
}
.section-whyus .front-section__title::after {
  display: none;
}
.section-whyus .content-box {
  position: relative;
  bottom: -22px;
  background-color: #fff;
  padding: 45px 60px 30px;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
.section-whyus .content-box p {
  display: block;
  color: #4a5f70;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}
.section-whyus .content-box h3 {
  color: #1e2e3a;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-whyus .content-box h3::after {
  content: "";
  display: block;
  background-color: #caab87;
  width: 124px;
  height: 1px;
  margin: 10px 0;
}

.section-blog {
  padding-top: 75px;
  padding-bottom: 95px;
}
.section-blog .row-button {
  text-align: center;
}
.section-blog .front-section__title::after {
  margin-bottom: 40px;
}
.section-blog .front-section__button {
  margin: 75px auto 0;
}

.section-contact {
  background: url("../images/fp-bg-contact.jpg") no-repeat center top;
  background-size: cover;
  padding-top: 55px;
}
.section-contact .front-section__title {
  /*color: #fff;*/
}
.section-contact .info {
  padding-top: 40px;
  padding-bottom: 50px;
}
.section-contact .info p {
  margin-top: 20px;
  color: #4a5f70;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.section-contact .info a {
  color: #caab87;
  font-size: 24px;
}
.section-contact .info a:hover {
  text-decoration: underline;
}
.section-contact .info h3 {
  color: #1e2e3a;
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-contact .formbox {
  position: relative;
  bottom: -26px;
  background-color: #fff;
  margin-top: 5px;
  padding: 40px 60px 45px;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
.section-contact .formbox .title {
  color: #1e2e3a;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-sent-info,
.form-sent-info p {
  font-style: italic;
  font-weight: 700 !important;
}

.section-partners {
  padding-top: 105px;
  padding-bottom: 65px;
}
.section-partners .front-section__title {
  text-align: left;
}
.section-partners .front-section__title::after {
  margin-left: 0;
}

.partner .image {
  height: 60px;
  margin-bottom: 20px;
}
.partner .image img {
  display: block;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
}
.partner .description {
  color: #4a5f70;
  font-size: 16px;
  font-weight: 300;
}

.front-slider-container {
  width: 100%;
  height: 640px;
  overflow: hidden;
  background-color: #f6f6f6;
}

.front-slider {
  position: relative;
  z-index: 2;
  height: 640px;
}
.front-slider .owl-stage-outer,
.front-slider .owl-stage,
.front-slider .owl-item,
.front-slider .slide {
  height: 100%;
}
.front-slider .slide {
  position: relative;
  margin-bottom: 25px;
}
.front-slider .slide .image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.front-slider .slide .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-slider .owl-item {
  display: inline-block;
  position: relative;
}
.front-slider .slide {
  background-size: cover;
  background-position: top center;
}
.front-slider .container,
.front-slider .row,
.front-slider .box-outer {
  height: 100%;
}
.front-slider .container {
  position: relative;
  z-index: 2;
}
.front-slider .box {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: -22px;
  width: 100%;
  background-color: #fff;
  padding: 55px 70px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
.front-slider .box .title {
  color: #1e2e3a;
  line-height: 60px;
  font-size: 60px;
  font-weight: 300;
}
.front-slider .box .title::after {
  content: "";
  display: block;
  background-color: #caab87;
  width: 124px;
  height: 1px;
  margin: 15px 0;
}
.front-slider .box .subtitle {
  color: #4a5f70;
  padding: 5px 0 80px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.front-slider .box .button {
  display: inline-block;
  position: absolute;
  bottom: 55px;
  z-index: 10;
  background-color: #1e4a7d;
  color: #fff;
  padding: 0 26px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  transition: background-color 0.3s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.front-slider .box .button:hover {
  background-color: #000;
  color: #fff;
}
.front-slider .owl-nav {
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -65px;
  text-align: center;
}
.front-slider .owl-nav button {
  display: inline-block;
  position: absolute;
  bottom: 0;
  background: #f4f4f4 url("../images/arrow-right-black.png") no-repeat center center;
  border: none;
  width: 65px;
  height: 65px;
  margin: 0 1px;
  transform: translateX(95px);
  transition: background-color 0.3s;
}
.front-slider .owl-nav button span {
  display: none;
}
.front-slider .owl-nav button.owl-prev {
  margin-left: -65px;
  transform: translateX(95px) rotate(180deg);
}
.front-slider .owl-nav button:hover {
  background-color: #dedede;
}

.single .front-section.section-contact,
.page .front-section.section-contact {
  margin-bottom: 60px;
}

.single .front-section.section-blog,
.page .front-section.section-blog {
  padding-top: 0;
  padding-bottom: 85px;
}

/*--------------------------------------------------
## Pages
--------------------------------------------------*/
.page .blogpost {
  margin-top: 15px;
  margin-bottom: 55px;
}
.page .blogpost__title {
  margin-bottom: 5px;
}
.page .blogpost__tags {
  margin-bottom: 20px;
}
.page .blogpost__tags .tag {
  display: inline-block;
  color: #1e2e3a;
  font-size: 14px;
  font-weight: 700;
}
.page .blogpost__tags .tag.date {
  margin-top: 10px;
  font-size: 16px;
}

.blogpage-container {
  padding-bottom: 50px;
}

.blog-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.blog-filters label {
  margin-bottom: 0;
  color: #4a5f70;
  padding-right: 15px;
  font-size: 18px;
  font-weight: 300;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eaeaea;
  border-radius: 0;
  padding-top: 40px;
  padding-bottom: 55px;
}
.pagination .pagination-label {
  display: block;
  color: #1e2e3a;
  padding-right: 15px;
  font-size: 18px;
  font-weight: 300;
}
.pagination .page {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: 0 1px;
  color: #3972b4;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.pagination .page:hover {
  background-color: #eaeaea;
}
.pagination .page.current {
  background: #1e4a7d;
  color: #fff;
}

.textcontent p,
.textcontent li {
  color: #242424;
  margin: 20px 0;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.textcontent h2 {
  color: #242424;
  margin: 5px 0 15px;
  font-size: 28px;
  font-weight: 300;
}
.textcontent h3 {
  color: #1e2e3a;
  margin: 35px 0 10px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.textcontent h4 {
  color: #1e4a7d;
  margin: 25px 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.textcontent table {
  margin: 25px 0 60px;
}
.textcontent table td {
  border-bottom: 1px solid #dbdbdb;
  color: #1e2e3a;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 300;
}
.textcontent table thead td {
  color: #1e4a7d;
  font-size: 18px;
  font-weight: 700;
}
.textcontent ul:not(.wp-block-gallery) {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.textcontent ul:not(.wp-block-gallery) li {
  margin: 5px 0;
  padding: 0 0 0 28px;
  background: url("../images/list-pointer.png") no-repeat left 5px top 7px;
}
.textcontent a {
  color: #3972b4;
}
.textcontent a:hover {
  text-decoration: underline;
}
.textcontent img {
  display: block;
  max-width: 100%;
}
.textcontent iframe {
  border: 0;
  width: 100%;
}

.page .textcontent,
.error404 .textcontent {
  padding-top: 10px;
  padding-bottom: 95px;
}

.page-template-page-template-team .textcontent {
  padding-bottom: 25px;
}

.page-template-page-template-service .textcontent,
.page-template-page-template-casestudy .textcontent,
.page-template-page-template-specializations .textcontent {
  padding-bottom: 50px;
}

.page-template-page-template-services .textcontent {
  padding-bottom: 35px;
}

.page-template-page-template-contact .textcontent.contact-col p {
  margin-top: 0;
  margin-bottom: 25px;
}

.references {
  margin-top: 60px;
  margin-bottom: 30px;
}

.reference {
  margin-bottom: 70px;
}
.reference__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 234px;
  margin-bottom: 20px;
}
.reference__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.03);
  width: 100%;
  height: 100%;
}
.reference__image img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.reference__title {
  color: #383838;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 300;
  transition: all 0.3s;
}
.reference__title:hover{
  color: #3972b4;
  transition: all 0.3s;
  cursor: pointer;
}
.reference__text {
  color: #383838;
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
}
.reference__file {
  display: block;
  background: url("../images/icon-pdf.png") no-repeat left center;
  color: #3972b4;
  height: 40px;
  line-height: 40px;
  padding-left: 50px;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}
.reference__file:hover {
  color: #000;
  text-decoration: underline;
}

.team .group .name {
  color: #1e2e3a;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.member,
.casestudy {
  display: block;
  margin-bottom: 70px;
}
.member__image,
.casestudy__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #eaeaea;
  height: 234px;
  margin-bottom: 20px;
  overflow: hidden;
}
.member__image img,
.casestudy__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.member__name,
.casestudy__name {
  color: #1e2e3a;
  line-height: 32px;
  font-size: 28px;
  font-weight: 300;
}
.member__roles,
.casestudy__roles {
  color: #1e2e3a;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.member__link,
.casestudy__link {
  display: inline-block;
  position: relative;
  color: #3972b4;
  padding-right: 12px;
  font-size: 16px;
  transition: color 0.3s;
}
.member__link::after,
.casestudy__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  background: url("../images/arrow-right-blue.png") no-repeat;
  width: 5px;
  height: 10px;
  transition: transform 0.3s;
}
.member:hover .member__image img,
.member:hover .casestudy__image img,
.casestudy:hover .member__image img,
.casestudy:hover .casestudy__image img {
  transform: scale(1.1);
}
.member:hover .member__link,
.member:hover .casestudy__link,
.casestudy:hover .member__link,
.casestudy:hover .casestudy__link {
  color: #000;
}
.member:hover .member__link::after,
.member:hover .casestudy__link::after,
.casestudy:hover .member__link::after,
.casestudy:hover .casestudy__link::after {
  transform: translateX(5px);
}

.casestudy .casestudy__name {
  margin-bottom: 10px;
}

.specializations {
  padding-bottom: 85px;
}

.specialization {
  background-color: #f6f6f6;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.specialization__image {
  height: 234px;
  overflow: hidden;
}
.specialization__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialization__content {
  padding: 20px 20px 40px;
}
.specialization__name {
  color: #242424;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 300;
}
.specialization__text {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}
.specialization__text a {
  display: inline-block;
  position: relative;
  color: #3972b4;
  padding-right: 12px;
}
.specialization__text a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  background: url("../images/arrow-right-blue.png") no-repeat;
  width: 5px;
  height: 10px;
  transition: transform 0.3s;
}
.specialization__text a:hover {
  text-decoration: underline;
}
.specialization__text a:hover::after {
  transform: translateX(5px);
}

.services-blocks {
  padding-bottom: 50px;
}

.service-block {
  padding-top: 45px;
  padding-bottom: 70px;
}
.service-block.odd {
  background-color: #f6f6f6;
}
.service-block.even .row {
  text-align: right;
  flex-direction: row-reverse;
}
.service-block__icon {
  display: block;
  margin: 20px auto;
}
.service-block__name {
  color: #1e2e3a;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.service-block__description {
  color: #4a5f70;
  margin-bottom: 25px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}
.service-block__button {
  display: inline-block;
  background-color: #1e4a7d;
  color: #fff;
  padding: 0 26px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  transition: background-color 0.3s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.service-block__button:hover {
  background-color: #000;
  color: #fff;
}

.contact-maps {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-maps .map {
  display: block;
  width: 50%;
  height: 508px;
}

#contact_form {
  margin-top: 30px;
}
#contact_form .form-group {
  margin: 0;
}
#contact_form input[type=text] {
  height: 40px;
  line-height: 40px;
}
#contact_form textarea {
  height: 120px;
  padding: 10px 0;
  resize: none;
}
#contact_form input[type=text],
#contact_form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 20px;
  width: 100%;
  color: #6c7b88;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}
#contact_form input[type=checkbox] {
  display: none;
}
#contact_form input[type=checkbox] + label {
  position: relative;
  padding-left: 32px;
  color: #4a5f70;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 300;
}
#contact_form input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border: 1px solid #dbdbdb;
}
#contact_form input[type=text].error,
#contact_form textarea.error,
#contact_form p.error {
  color: #ff0000 !important;
  border-color: #ff0000;
}
#contact_form p.error {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
#contact_form input[type=checkbox]:checked + label::before {
  background: url("../images/list-pointer.png") no-repeat center center;
}
#contact_form .form-group.error label::before {
  border-color: #ff0000;
}
#contact_form .form-group.form-buttons-group {
  text-align: right;
}
#contact_form .submit {
  display: inline-block;
  background-color: #1e4a7d;
  border: none;
  color: #fff;
  padding: 0 35px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  transition: background-color 0.3s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#contact_form .submit:hover {
  background-color: #000;
  color: #fff;
}

.search-phrase {
  font-size: 22px;
  font-weight: 300;
}

div.search-results {
  margin-top: 50px;
  margin-bottom: 90px;
}

.search-result {
  display: block;
  position: relative;
  padding: 20px 20px 20px 40px;
}
.search-result::before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 29px;
  background: url("../images/list-pointer.png") no-repeat;
  width: 10px;
  height: 10px;
  transition: transform 0.4s;
}
.search-result:nth-child(2n-1) {
  background-color: #f6f6f6;
}
.search-result .title {
  color: #3972b4;
  font-size: 18px;
  font-weight: 300;
}
.search-result .excerpt {
  color: #4a5f70;
  margin-top: 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}
.search-result:hover::before {
  transform: translate(5px);
}
.search-result:hover .title {
  color: #000;
}

#sitemap a:visited {
  color: #000;
}

/*--------------------------------------------------
## Posts
--------------------------------------------------*/
.single .textcontent {
  padding-top: 30px;
  padding-bottom: 50px;
}

.textcontent p,
.textcontent ul:not(.wp-block-gallery) li {
  color: #242424;
  line-height: 24px;
  font-size: 17px;
  font-weight: 300;
}

.single .blogpost-date {
  text-align: center;
}

.wp-block-image {
  margin: 25px 15px !important;
}

.single-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}
.single-buttons .back {
  display: inline-block;
  position: relative;
  color: #3972b4;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 400;
  transition: color 0.3s;
}
.single-buttons .back::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  background: url("../images/arrow-right-blue.png") no-repeat;
  width: 5px;
  height: 10px;
  transform: rotate(180deg);
}
.single-buttons .back:hover {
  color: #000;
}
.single-buttons .social .button {
  display: inline-block;
  vertical-align: top;
  margin: 0 9px;
}

.single-team .role {
  color: #1e2e3a;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.single .textcontent img.thumbnail {
  max-width: 38%;
}

/*--------------------------------------------------
## RWD
--------------------------------------------------*/
/* lg */
@media only screen and (max-width: 1199px) {
  header #main-nav .menu > .menu-item > a {
    padding: 25px 10px;
  }

  header #main-nav .menu > .menu-item.menu-item-has-children > a {
    padding-right: 28px;
    background-position: right 10px center;
  }

  header .upper .searchbox {
    margin-right: 30px;
  }
}
/* md */
@media only screen and (max-width: 991px) {
  #main-nav {
    display: none;
  }

  #hamburger {
    display: block;
  }

  body {
    padding-top: 0;
  }

  #site-container {
    padding-top: 100px;
  }

  header {
    height: 100px;
  }

  header.minimized {
    height: 70px;
  }

  header .logo {
    height: 70px;
  }

  .front-slider .box .title {
    line-height: 40px;
    font-size: 40px;
  }

  .front-slider .box .subtitle {
    line-height: 20px;
    font-size: 15px;
  }

  .partner {
    margin-bottom: 30px;
  }

  header .header-right {
    width: 100%;
  }

  footer .top .menu-columns > div {
    width: 100%;
  }
}
/* sm */
@media only screen and (max-width: 767px) {
  .section-partners .front-section__title {
    text-align: center;
  }

  .section-partners .front-section__title::after {
    margin-left: auto;
  }

  .partner {
    margin-top: 10px;
    text-align: center;
  }

  .partner .image {
    height: auto;
    margin: 10px auto;
  }

  .partner .image img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  footer .top .menu li {
    text-align: center;
  }

  footer .top .footer-addresses .inner {
    width: 100%;
    margin: 20px 0;
    text-align: center;
  }

  footer .bottom,
footer .bottom .design {
    text-align: center;
  }

  .alignright {
    margin: 20px auto;
    height: auto;
    float: none;
  }

  #wpadminbar {
    display: none;
  }

  .page-template-page-template-contact .textcontent {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact-maps {
    flex-direction: column;
  }

  .contact-maps .map {
    width: 100%;
  }

  .front-slider .slide .image {
    position: relative;
    height: 35%;
  }

  .front-slider .box {
    position: relative;
    bottom: 0;
    width: calc(100% + 30px);
    height: calc(65% + 22px);
    margin: 0 -15px;
  }

  .specialization__image {
    height: auto;
  }

  #hamburger {
    top: 32px;
    transition: top 0.3s;
  }

  header.minimized #hamburger {
    top: 3px;
  }

  #site-container {
    padding-top: 100px;
  }

  header {
    height: auto;
  }

  header .upper {
    justify-content: flex-end;
  }

  header .upper .searchbox {
    display: none;
  }

  header .upper .rightside {
    justify-content: space-between;
  }

  header .upper .langbox {
    padding-left: 0;
  }

  header .searchbox-mobile {
    display: flex;
    width: auto;
    margin: 10px 55px 15px 0;
  }

  header .searchbox-mobile form {
    text-align: right;
  }

  header .searchbox-mobile form input[type=text] {
    width: 0;
    transition: width 0.3s;
  }

  header .searchbox-mobile form.opened input[type=text] {
    width: 100%;
  }

  header.minimized .searchbox-mobile {
    display: none;
  }

  header .searchbox-mobile form {
    width: 100%;
  }

  header .upper .social-icons {
    display: none;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
  }

  .single .textcontent img,
.single .textcontent img.thumbnail {
    max-width: 100%;
  }
}
/* xs */
@media only screen and (max-width: 575px) {
  .front-section.section-advantages {
    padding-top: 10px;
    padding-bottom: 80px;
  }
  .front-slider .owl-nav button {
    display: inline-block;
    position: absolute;
    bottom: 25px;
    left: 30%;
    background: #dee2e6 url(../images/arrow-right-black.png) no-repeat center center;
    border: none;
    width: 39px;
    height: 30px;
    margin: 0 1px;
    transform: translateX(95px);
    transition: background-color 0.3s;
  }
  .front-slider-container{
    height: unset;
  }
  .front-slider{
    height: unset;
  }
  .front-slider .box {
    padding: 15px 15px 70px;
  }

  .blogpost {
    margin-bottom: 30px;
  }

  .section-contact .formbox {
    padding: 20px;
  }

  .textcontent table {
    display: block;
    table-layout: fixed;
    height: auto !important;
    overflow-x: auto;
  }

  .subpage-banner .title {
    font-size: 40px;
  }

  .single-buttons,
.blog-filters {
    flex-direction: column;
  }

  .single-buttons .social .button {
    display: block;
    margin: 10px auto;
  }

  .service-block .row {
    text-align: center !important;
  }

  .blogpost__image {
    height: auto;
  }

  .subpage-banner {
    height: 200px;
  }
}

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