:root {
  --color-yellow: #F8D04B;
  --color-yellow2: #FFF7E0;
  --color-white: #FFF;
  --color-black: #272C2E;
  --color-text: #3E4345;
  --color-link: #2859A0;
  --color-blue: #2D5CA0;
  --color-gray: #DADADA;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;
  font: inherit;*/
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

* {
  font-family: "Montserrat", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

body.body--hidden {
  overflow: hidden;
}

body.header--mobile {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat" !important;
}

a,
a:active,
a:visited,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

button,
button:active,
button:visited,
button:hover,
button:focus {
  outline: none;
  cursor: pointer;
}

.btn,
.btn:active,
.btn:visited,
.btn:hover,
.btn:focus {
  outline: none;
  box-shadow: none;
}

p {
  line-height: 20px;
}

.far {
  font-family: "Font Awesome 5 Free" !important;
}

.list-inline {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .list-inline {
    flex-direction: row;
    align-items: center;
  }
}

.list-inline-item,
.list-inline-link {
  font-size: 14px;
}

.list-inline-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.list-inline-item span {
  margin-left: 4px;
}

.list-inline-item:not(:last-child) {
  margin-right: 0;
}

.list-inline-item:not(:last-child):after {
  content: "";
  display: block;
  width: 3px;
  height: 21px;
  background: #DADEE1;
  margin: 0 12px;
}

@media only screen and (min-width: 768px) {
  .list-inline-item {
    margin-bottom: 0;
  }
}

.list-inline-link {
  color: var(--color-black);
}

.btn {
  font-weight: bold;
  transition: none;
}

.btn:first-letter {
  text-transform: uppercase;
}

.btn-primary-box .elementor-button,
.btn.btn-primary {
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #003160;
  border-radius: 4px;
  background: linear-gradient(180deg, #397CDD 0%, #0E4AA0 100%);
}

.btn-primary-box .elementor-button span,
.btn.btn-primary span {
  margin-left: 4px;
}

.btn-primary-box .elementor-button:hover,
.btn.btn-primary:hover {
  background: #0E4AA0;
}

.btn.btn-primary.btn-outline {
  color: #2D5CA0;
  background: transparent;
}

.btn.btn-yellow {
  color: #2D5CA0;
  background: linear-gradient(180deg, #F8D04B 0%, #EBB942 100%);
}

.btn.btn-yellow:hover {
  background: #F8D04B;
}

.btn-yellow-gradient .elementor-button {
  background: linear-gradient(180deg, #F8D04B 0%, #EBB942 100%);
  box-shadow: 0 2px 10px rgba(68, 68, 68, 0.1);
  border-radius: 4px !important;
}

.form-control {
  height: 42px;
}

.app-label {
  width: 100%;
}

.app-label > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 6px;
}

.min-header {
  display: none;
  padding: 10px 0;
  background-color: #F4F4F4;
}

.min-header .btn {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .min-header {
    display: block;
  }
}

.min-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.min-header-btns .btn {
  padding-left: 25px;
  padding-right: 25px;
}

.min-header-btns .btn:not(:last-child) {
  margin-right: 16px;
}

.header {
  --header-border-color: #d2d2d2;
  --header-height: 85px;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  height: var(--header-height);
  box-shadow: 0px 2px 10px rgba(68, 68, 68, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

@media only screen and (min-width: 1024px) {
  .header__inner {
    width: 90%;
  }
}

.header__brand {
  position: relative;
  z-index: 1;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header__logo {
  display: block;
  height: var(--header-height);
}

.header__trigger {
  --size: 40px;
  position: relative;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  transform: translateX(0);
  transition: transform 0.25s, width 0.2s;
}

.header__trigger span,
.header__trigger span:before,
.header__trigger span:after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 1px;
  background: var(--color-blue);
  box-shadow: 1px 2px 2px rgba(var(--color-blue), 0.1);
  transform-origin: 50% 50%;
  transition: width 0.25s, transform 0.4s, background-color 0.25s;
}

.header__trigger span:before {
  position: absolute;
  bottom: 9px;
  right: 0;
}

.header__trigger span:after {
  position: absolute;
  top: 9px;
  right: 0;
}

.header--mobile .header__trigger span {
  background-color: transparent;
  box-shadow: none;
}

.header--mobile .header__trigger span:before,
.header--mobile .header__trigger span:after {
  width: 28px;
}

.header--mobile .header__trigger span:before {
  bottom: 0;
  transform: rotate(45deg);
}

.header--mobile .header__trigger span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
  .header__trigger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    visibility: visible;
  }
}

.header-nav-inner {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  width: 100vw;
  padding: var(--header-height) 0 0 0;
  background-color: var(--color-yellow);
  overflow: hidden;
  overflow-y: auto;
}

.header-nav-inner:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.header--mobile .header-nav-inner {
  transform: translateX(0);
}

@media only screen and (min-width: 768px) {
  .header-nav-inner {
    position: static;
    transform: translateX(0);
    width: auto;
    padding: 0;
    background: #FFF;
  }
}

@media only screen and (min-width: 1024px) {
  .header-menu-secondary {
    display: none;
  }
}

.header__menu {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .header__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.header__menu .menu-item {
  padding: 0 14px;
}

.header__menu .menu-item.current-menu-item a {
  border-bottom: 2px solid var(--color-blue);
}

@media only screen and (min-width: 768px) {
  .header__menu .menu-item {
    padding: 0;
  }
}

.menu-with-dropdown .menu-item.menu-item-has-children {
  position: relative;
  border-bottom: none;
}

.menu-with-dropdown .menu-item.menu-item-has-children.is-active > .sub-menu {
  display: block;
}

.menu-with-dropdown .menu-item.menu-item-has-children.is-active > a::after {
  transform: rotate(180deg);
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .menu-with-dropdown .menu-item.menu-item-has-children {
    border-bottom: none;
  }
}

.menu-with-dropdown .menu-item > a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 17px;
  color: var(--color-blue);
  border-bottom: 1px solid #CCA530;
}

@media only screen and (min-width: 768px) {
  .menu-with-dropdown .menu-item > a {
    color: var(--color-black);
    border-bottom: none;
  }
}

.menu-with-dropdown .menu-item.menu-item-has-children > a {
  justify-content: space-between;
}

.menu-with-dropdown .menu-item.menu-item-has-children > a::after {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNSIgdmlld0JveD0iMCAwIDEyIDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDVMMC44MDM4NDkgLTIuNTEyNDRlLTA4TDExLjE5NjIgOC44MzRlLTA3TDYgNVoiIGZpbGw9IiMyRDVDQTAiLz4KPC9zdmc+Cg==);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease-out;
}

.menu-with-dropdown .sub-menu {
  --sub-menu-bg: #FFF;
  display: none;
  padding: 0 15px 0;
}

@media only screen and (min-width: 1024px) {
  .menu-with-dropdown .sub-menu {
    position: absolute;
    z-index: 20;
    top: 52px;
    left: 0;
    min-width: 220px;
    padding: 0;
    background-color: var(--sub-menu-bg);
  }

  .menu-with-dropdown .sub-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 30px;
    border: 8px solid transparent;
    border-bottom-color: var(--sub-menu-bg);
  }
}

.menu-with-dropdown .sub-menu a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 15px;
  color: var(--color-black) !important;
  border-bottom: none;
}

.menu-with-dropdown .sub-menu a:hover {
  background: #f1f1f1;
}

@media only screen and (min-width: 1024px) {
  .menu-with-dropdown .sub-menu a {
    border-bottom: 1px solid #E3E5E6;
  }
}

.header-menu-mobile .menu-item:last-child > a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .header-menu-mobile {
    display: none;
  }
}

.info-menu {
  --info-menu-height: 70px;
  --info-menu-bg: #F8D04B;
  --info-menu-border-color: #BBC7D1;
  --info-menu-link-color: #2D5CA0;
  display: none;
}

@media only screen and (min-width: 768px) {
  .info-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--info-menu-height);
    background: var(--info-menu-bg);
  }

  .info-menu .menu-item > a {
    color: var(--info-menu-link-color);
  }

  .info-menu .menu-item > a:hover {
    color: #1c3a64;
  }
}

.footer {
  padding: 35px 0 20px;
  color: #FFF;
  background: #333333;
}

.footer .list-inline-link {
  color: #FFF;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.footer-menu .menu-item a {
  display: block;
  text-decoration: underline;
  color: #FFF;
  margin-bottom: 10px;
}

.footer-menu .menu-item a:hover {
  text-decoration: none;
  color: #f1f1f1;
}

@media only screen and (min-width: 1024px) {
  .footer-menu {
    flex-direction: row;
    align-items: center;
  }

  .footer-menu .menu-item:not(:last-child) {
    margin-right: 15px;
  }
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}

@media only screen and (min-width: 768px) {
  .footer-socials {
    align-items: flex-start;
    margin-top: 0;
  }
}

.footer-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

@media only screen and (min-width: 768px) {
  .footer-social-list {
    margin-top: 12px;
    justify-content: flex-start;
  }
}

.footer-social-list li {
  display: inline-flex;
}

.footer-social-list li:not(:last-child) {
  margin-right: 16px;
}

.footer-social-list a {
  --footer-social-list-link-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--footer-social-list-link-size);
  height: var(--footer-social-list-link-size);
  font-size: 18px;
  border-radius: 50em;
  color: #FFF;
  background-color: #FFF;
}

.footer-social-list a:hover {
  background-color: #c9c9c9;
}

.footer-owner {
  align-items: center;
  margin-top: 14px;
}

@media only screen and (min-width: 1024px) {
  .footer-owner {
    margin-top: 25px;
  }
}

.footer__logo {
  display: block;
  margin: 0 auto 10px;
}

@media only screen and (min-width: 768px) {
  .footer__logo {
    margin: 0;
  }
}

.footer-copyright {
  font-size: 12px;
  color: #FFF;
}

@media only screen and (min-width: 768px) {
  .footer-copyright {
    font-size: 14px;
    text-align: left !important;
  }
}

@media only screen and (min-width: 768px) {
  .testimonial-wrapper {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .testimonial-wrapper {
    padding: 0 40px;
  }
}

.testimonial {
  padding: 60px 0 0;
}

.testimonial__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 20px 20px;
  border: 1px solid #BAC7D5;
  border-radius: 4px;
}

.testimonial__img {
  --img-size: 106px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--img-size);
  height: var(--img-size);
}

.testimonial__description {
  text-align: center;
  line-height: 26px;
  color: #46515E;
  margin-bottom: 15px;
}

.testimonial__author {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  color: #000;
}

.testimonial__position {
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  color: #7F91A8;
}

.projects {
  display: flex;
  flex-wrap: wrap;
}

.project-wrapper {
  cursor: pointer;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .project-wrapper {
    width: 50%;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .project-wrapper {
    width: 33.33%;
    padding: 0;
    margin-bottom: 0;
  }
}

.project {
  position: relative;
  overflow: hidden;
}

.project:hover .project__main {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.project:hover .project__img {
  transform: scale(1.1);
}

.project__img {
  display: block;
  height: 262px !important;
  width: 434px;
  transition: transform 1.5s ease-out;
}

.project__main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 20px 10px;
  background: rgba(2, 27, 121, 0.7);
  transition: transform 0.4s ease-in-out, opacity 0.5s;
}

@media only screen and (min-width: 1024px) {
  .project__main {
    top: 0;
    padding: 14px 20px 30px;
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
}

@media only screen and (min-width: 1024px) {
  .project__zoom {
    position: absolute;
    top: 15px;
    left: 15px;
  }
}

.project__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #FFF;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s 1s cubic-bezier(0.17, 0.67, 0.93, 0.59), opacity 0.3s;
}

.project__description {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.slides-wrapper {
  position: relative;
}

.slides {
  position: relative;
  display: none;
}

.slides .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  justify-content: center !important;
  padding: 0 !important;
  max-width: 1140px;
  margin: 0 auto;
}

.slides .slick-dots li button {
  background: rgba(255, 255, 255, 0.7) !important;
}

.slides .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.9) !important;
}

.slides .slick-dots li.slick-active button {
  background: #FFF !important;
}

.slides .slick-dots li.slick-active::after {
  border-color: #FFF !important;
}

@media only screen and (min-width: 1024px) {
  .slides .slick-dots {
    justify-content: flex-end !important;
    bottom: 50px;
    right: 20px;
  }
}

@media only screen and (min-width: 1170px) {
  .slides .slick-dots {
    right: 0;
  }
}

.slide-item {
  position: relative;
  z-index: 5;
  height: 314px !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

@media only screen and (min-width: 768px) {
  .slide-item {
    height: 400px !important;
  }
}

@media only screen and (min-width: 1170px) {
  .slide-item {
    height: 522px !important;
  }
}

.slide-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 50px;
}

@media only screen and (min-width: 1024px) {
  .slide-item__content {
    padding: 0 20px 50px;
  }
}

@media only screen and (min-width: 1170px) {
  .slide-item__content {
    padding: 0 0 50px;
  }
}

.slide-item__description {
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #FFF;
  text-shadow: 1px 1px 3px rgba(204, 204, 204, 0.1);
}

@media only screen and (min-width: 768px) {
  .slide-item__description {
    font-size: 36px;
    line-height: 42px;
    padding: 0 60px;
  }
}

@media only screen and (min-width: 1024px) {
  .slide-item__description {
    max-width: 530px;
    padding: 0;
    text-align: left;
  }
}

.custom-slick-dots {
  --btn-size: 16px;
}

.custom-slick-dots .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0;
}

.custom-slick-dots .slick-dots li {
  position: relative;
  display: inline-block;
  width: var(--btn-size);
  height: var(--btn-size);
  margin: 0 6px;
}

.custom-slick-dots .slick-dots li button {
  position: relative;
  display: block;
  width: var(--btn-size);
  height: var(--btn-size);
  font-size: 0.1px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 1px 1px 8px rgba(70, 81, 94, 0.1);
  border: none;
  background: rgba(70, 81, 94, 0.5);
  transform: scale(1);
  transition: transform 0.3s ease-in, background 0.5s;
}

.custom-slick-dots .slick-dots li button:hover {
  background: rgba(70, 81, 94, 0.7);
}

.custom-slick-dots .slick-dots li.slick-active::after {
  transform: scale(1);
}

.custom-slick-dots .slick-dots li.slick-active button {
  background: #46515E;
}

.box-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 40px auto;
}

@media only screen and (min-width: 768px) {
  .box-404 {
    flex-direction: row;
  }
}

.box-404__icon {
  display: flex;
  margin-right: 20px;
}

.posts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin: 0 -15px;
}

@media only screen and (min-width: 768px) {
  .posts {
    flex-direction: row;
  }
}

.post-wrapper {
  padding: 0 15px;
}

.post-wrapper.post-page-item {
  margin-bottom: 28px;
}

@media only screen and (min-width: 768px) {
  .post-wrapper {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .post-wrapper {
    width: 33.33%;
  }
}

.post {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 1024px) {
  .post {
    margin: 0;
  }
}

.post__img {
  display: block;
}

.post__main {
  padding: 15px 20px 20px;
  background: #FFF;
  box-shadow: 0 4px 6px rgba(153, 167, 179, 0.2);
}

.post_categories {
  margin-bottom: 16px;
}

.post__category {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #5E6366;
  padding: 5px 15px;
  border: 1px solid #C6CACC;
  border-radius: 50em;
}

.post__category:hover {
  color: #46494b;
  border-color: #5E6366;
}

.post__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 10px;
  color: var(--color-black);
}

.post__description {
  margin-bottom: 14px;
  color: var(--color-text);
}

.post__link {
  border-bottom: 1px solid var(--color-link);
  color: var(--color-link);
}

.post__link:hover {
  color: #142d51;
}

.post-wrapper.post-related .post__main {
  position: relative;
}

.post-wrapper.post-related .post__title {
  width: 100%;
  padding: 14px;
  margin-top: -40px;
  background: #FFF;
}

@media only screen and (min-width: 768px) {
  .post-single {
    margin: 30px 0 0;
  }
}

.post-single__img {
  display: block;
  width: 100%;
  margin: 20px 0 0;
}

.post-single__main {
  padding: 0 0 15px;
  margin: 0 auto;
  background: #FFF;
}

@media only screen and (min-width: 768px) {
  .post-single__main {
    max-width: 742px;
  }
}

.post-single__heading {
  position: relative;
  max-width: 85%;
  padding: 10px;
  margin: -20px auto 0;
  background: #FFF;
}

@media only screen and (min-width: 768px) {
  .post-single__heading {
    padding: 20px 10px;
    margin: -45px auto 22px;
  }
}

@media only screen and (min-width: 1024px) {
  .post-single__heading {
    max-width: 742px;
  }
}

.post-single__info {
  display: none;
}

@media only screen and (min-width: 768px) {
  .post-single__info {
    display: block;
  }
}

.post-single__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 auto 10px;
  word-break: break-word;
}

.post-single__title:first-letter {
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .post-single__title {
    font-size: 32px;
  }
}

.post-single__category {
  display: inline-block;
  font-size: 13px;
  border-radius: 50em;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #FFF;
  background: #42C8F3;
}

.post-single__excerpt {
  line-height: 20px;
  color: #6B757D;
  margin-bottom: 15px;
}

.post-single__content {
  line-height: 30px;
  margin: 5px 0 30px;
}

@media only screen and (min-width: 1024px) {
  .post-single__content {
    padding: 0 20px;
  }
}

.post-single__content * {
  font-family: "Montserrat";
}

.post-single_metadata {
  display: flex;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #5E6366;
  margin: 0 0 20px;
}

@media only screen and (min-width: 768px) {
  .post-single_metadata {
    margin: 0 0 22px;
  }
}

.post-socials {
  display: flex;
  flex-direction: column;
}

.post-socials.post-socials--center {
  align-items: center;
}

@media only screen and (min-width: 1024px) {
  .post-socials {
    padding: 0 20px;
  }
}

.post-socials__title {
  font-weight: bold;
  font-size: 10px;
  color: #919699;
  margin-bottom: 6px;
}

.services {
  padding: 10px -20px;
}

.service-wrapper {
  padding: 15px 15px;
  background-repeat: no-repeat;
}

@media (max-width: 1086px) {
  .service-wrapper {
    height: 100px;
  }
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 15px 20px;
  border-radius: 4px;
  width: 340px;
  height: 170px;
}

@media only screen and (min-width: 768px) {
  .service {
    padding: 20px 15px 30px;
  }

  .service:hover {
    box-shadow: 0 14px 16px rgba(51, 51, 51, 0.4);
  }
}

@media only screen and (min-width: 1024px) {
  .service {
    flex-direction: row;
  }
}

.service__img {
  display: block;
  margin-bottom: 14px;
}

.service__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .service__main {
    margin-left: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .service__main {
    align-items: flex-start;
  }
}

.service__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.service__title:first-letter {
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .service__title {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .service__title {
    text-align: left;
  }
}

.service__description {
  font-weight: 500;
  text-align: center;
  color: var(--color-black);
}

@media only screen and (min-width: 1024px) {
  .service__description {
    text-align: left;
  }
}

.box {
  position: relative;
}

.box .text {
  position: absolute;
  z-index: 999;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 40%;
  /* Adjust this value to move the positioned div up and down */
  font-family: Arial, sans-serif;
  color: #fff;
  width: 60%;
  /* Set the width of the positioned div */
  border-radius: 25px;
  padding-top: 10px;
}

.service__title > a {
  color: #FFFFFF;
}

.mail-tracking {
  border-radius: 5px;
  padding: 20px;
  color: #FFF;
  background-color: #2D5CA0;
  box-shadow: 0px 15px 30px rgba(45, 92, 160, 0.5);
}

.mail-tracking .form-control {
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid #153E79;
}

.mail-tracking .btn {
  font-weight: bold;
  padding: 8px 0;
  width: 100%;
}

.mail-tracking .btn:first-letter {
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .mail-tracking {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1170px) {
  .mail-tracking {
    max-width: 100%;
    margin: auto;
  }
}

.mail-tracking-header {
  display: flex;
  margin-bottom: 18px;
}

.mail-tracking__image {
  display: block;
  margin-right: 15px;
}

.mail-tracking__title {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
}

.mail-tracking__description {
  font-size: 14px;
  line-height: 18px;
}

.about-widget {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 768px) {
  .about-widget {
    flex-direction: row;
  }
}

.about-widget__img {
  display: block;
  margin: 0 0 22px;
}

@media only screen and (min-width: 768px) {
  .about-widget__img {
    margin: 0 15px 0 0;
  }
}

.about-widget__main {
  max-width: 350px;
}

.about-widget__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-black);
  margin: 0 0 4px 0;
}

@media only screen and (min-width: 768px) {
  .about-widget__title {
    margin: 0 0 13px 0;
  }
}

.about-widget__description {
  font-weight: 500;
  line-height: 25px;
  color: var(--color-text);
  margin-bottom: 18px;
}

.faq-container {
  margin-bottom: 80px;
}

.faq-search-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0 25px;
}

@media only screen and (min-width: 768px) {
  .faq-search-box {
    margin: 25px auto 20px;
    padding: 0 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .faq-search-box {
    margin: 30px auto 50px;
  }
}

.faq-search-form {
  width: 100%;
  margin-bottom: 30px;
}

.faq-search-form label {
  position: relative;
  width: 100%;
}

.faq-search-form .form-control {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E3E5E6;
}

.faq-search-form .form-control:focus {
  box-shadow: none;
  border-color: var(--color-yellow);
}

.faq-search-form .btn {
  position: absolute;
  top: 0;
  right: 0;
}

.faq-search-form .btn:hover {
  background: #F1F1F1;
}

@media only screen and (min-width: 768px) {
  .faq-search-form {
    margin-bottom: 20px;
  }
}

.faq-filters-box {
  position: relative;
}

@media only screen and (min-width: 1024px) {
  .faq-filters-box {
    display: none;
  }
}

.faq-filter-btn.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  min-width: 300px;
  border: 1px solid #C6CACC;
  color: rgba(0, 0, 0, 0.87);
}

.faq-filter-btn.btn .faq-filter-btn__name {
  margin: 0 10px 0;
}

.faq-filters {
  display: none;
  position: absolute;
  z-index: 1;
  top: calc(100% + 15px);
  left: 0;
  right: 0;
  padding: 10px 20px 20px;
  margin: 0 0 15px;
  border: 1px solid #F1F3F4;
  background: #FFF;
  box-shadow: 0px 2px 10px rgba(68, 68, 68, 0.1);
}

.faq-filters .faq-types {
  margin: 0;
}

.faq-filters-btn-all {
  font-weight: 500;
  font-size: 14px;
  padding: 5px 0;
  margin: 0 0 7px;
}

.faq-filters-apply {
  width: 100%;
  padding: 8px 0;
}

.faq-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-black);
}

@media only screen and (min-width: 768px) {
  .faq-title {
    margin-bottom: 18px;
  }
}

.faq-sub-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-text);
  margin: 0 0 5px;
}

@media only screen and (min-width: 1024px) {
  .faq-sub-title {
    margin: 0 0 6px;
  }
}

.faq-types-sidebar {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .faq-types-sidebar {
    display: block;
  }
}

.faq-types {
  margin: 16px 0 0;
}

.faq-type-label {
  font-weight: 500;
  padding: 10px 0;
  margin-bottom: 4px;
  cursor: pointer;
}

.faq-type-label:hover {
  color: var(--color-text);
}

.faq-category {
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #E3E5E6;
}

.faq-item.is-active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__icon {
  transition: transform 0.3s;
}

.faq-item__trigger {
  display: flex;
  justify-content: space-between;
  padding: 18px 4px;
  line-height: 16px;
  cursor: pointer;
  transition: padding 0.3s;
}

@media only screen and (min-width: 768px) {
  .faq-item__trigger:hover {
    padding: 18px 4px 18px 18px;
    color: #FFF;
    background: var(--color-yellow);
  }
}

.faq-item__name {
  font-size: 14px;
  font-weight: 500;
  width: calc(100% - 20px);
  color: var(--color-blue);
}

@media only screen and (min-width: 768px) {
  .faq-item__name {
    font-size: 16px;
  }
}

.faq-item__main {
  display: none;
}

.faq-item__content {
  font-size: 14px;
  max-width: 690px;
  padding: 10px 0 15px;
}

@media only screen and (min-width: 768px) {
  .faq-item__content {
    font-size: 16px;
    padding: 10px 15px 15px;
  }
}

.faq-item__feed {
  padding: 8px 15px;
  background: #F1F3F4;
}

.faq-item__feed > span {
  display: block;
  font-weight: 500;
  color: #000;
  margin: 0 0 6px;
}

.faq-item__feed .btn {
  border-radius: 3px;
  color: #FFF;
  background: #919699;
}

.faq-item__feed .btn:not(:last-child) {
  margin-right: 6px;
}

.faq-item__feed .btn:hover {
  background: #333;
}

@media only screen and (min-width: 768px) {
  .faq-item__feed {
    display: flex;
    align-items: center;
    min-height: 54px;
  }

  .faq-item__feed > span {
    margin: 0 25px 0 0;
  }
}

input[type=checkbox].check-custom {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input[type=checkbox].check-custom ~ .check-toggle {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid var(--color-gray);
  border-radius: 1px;
  cursor: pointer;
  margin-right: 2px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input[type=checkbox].check-custom:hover ~ .check-toggle {
  background: #c1c1c1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input[type=checkbox].check-custom:checked ~ .check-toggle {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNSAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMDMwMTggMTIuNjAzM0M1LjU4NTgyIDEzLjEzMjIgNC44NjgwMSAxMy4xMzIyIDQuNDIzNjUgMTIuNjAzM0wwLjMzMzI1NCA3LjczNDIyQzAuMTE5OTAxIDcuNDgwODIgMCA3LjEzNjggMCA2Ljc3ODA0QzAgNi40MTkyOCAwLjExOTkwMSA2LjA3NTI1IDAuMzMzMjU0IDUuODIxODZDMC43Nzc2MTQgNS4yOTI5MSAxLjQ5NTQzIDUuMjkyOTEgMS45Mzk3OSA1LjgyMTg2TDUuMjIxMjIgOS43Mjc5NkwxMy4wNjAyIDAuMzk2NzE0QzEzLjUwNDYgLTAuMTMyMjM4IDE0LjIyMjQgLTAuMTMyMjM4IDE0LjY2NjcgMC4zOTY3MTRDMTUuMTExMSAwLjkyNTY2NSAxNS4xMTExIDEuNzgwMTMgMTQuNjY2NyAyLjMwOTA4TDYuMDMwMTggMTIuNjAzM1oiIGZpbGw9IiMyMDYyRjYiLz4KPC9zdmc+Cg==) center no-repeat;
  background-size: 85%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.about-user-section {
  background-color: var(--color-gray);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-user {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #000;
}

@media only screen and (min-width: 768px) {
  .about-user {
    flex-direction: row;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) {
  .about-thumbbox {
    width: 50%;
  }
}

.about-user__image {
  display: block;
}

.about-user__main {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 50px;
  background-color: var(--color-yellow);
}

@media only screen and (min-width: 768px) {
  .about-user__main {
    position: static;
    padding: 20px 0;
    width: 50%;
    background-color: transparent;
  }
}

@media only screen and (min-width: 1024px) {
  .about-user__main {
    padding: 40px 0;
  }
}

.about-user__main-inner {
  display: none;
}

@media only screen and (min-width: 768px) {
  .about-user__main-inner {
    display: block;
  }
}

.about-user__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 15px;
}

.about-user__object {
  margin-bottom: 6px;
}

.about-user__object,
.about-user__content {
  font-style: italic;
  font-weight: normal;
  font-size: 15px;
  line-height: 25px;
}

.about-user__content {
  margin-bottom: 15px;
}

.about-user__text {
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--color-blue);
}

.about-user__name {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

@media only screen and (min-width: 768px) {
  .about-user__name {
    font-size: 16px;
    text-align: left;
  }
}

.about-container {
  margin: 50px auto 60px;
}

.about-types {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .about-types {
    margin-top: 0;
  }
}

.about-types-btn {
  margin-bottom: 20px;
}

.about-types-btn {
  width: 100%;
}

.about-type-link {
  display: block;
  font-weight: 600;
  width: 100%;
  padding: 18px 0;
  color: var(--color-text);
  border-bottom: 1px solid #E3E5E6;
}

.about-type-link.is-active {
  color: var(--color-blue);
}

.about-content {
  display: none;
}

.about-content * {
  font-family: "Montserrat";
  line-height: 24px;
}

.about-content.is-active {
  display: block;
}

.product-container {
  margin: 30px auto 100px;
}

.product-box-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .product-box-title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.product-box-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
  .product-box-link {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.pagination-box-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

@media only screen and (min-width: 1024px) {
  .pagination-box-wrapper {
    margin-bottom: 80px;
  }
}

.pagination-box {
  display: inline-flex;
}

.page-numbers {
  --page-number-size: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--page-number-size);
  height: var(--page-number-size);
  color: #5E6366;
  border-radius: 4px;
}

.page-numbers:hover {
  color: #000;
}

.page-numbers.current {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.87);
  background: #C6CACC;
}

.page-numbers.prev,
.page-numbers.next {
  color: rgba(0, 0, 0, 0.87);
}

.wpcf7 label {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.wpcf7 .form-control {
  height: 45px;
  border: 1px solid #C6CACC;
}

.wpcf7 .btn {
  padding: 0 30px;
  height: 45px;
}

.wpcf7 textarea.form-control {
  height: 134px;
}

.contact-info * {
  color: #FFF;
}

.contact-info .contact-info__content {
  margin-bottom: 6px;
}

.contact-info .elementor-widget-wrap {
  background: #084FB6;
  padding: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.main {
  flex: 1;
}

.app-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
  color: var(--color-black);
  margin: 0 0 20px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .app-title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .blog-posts .post-wrapper:nth-of-type(1) {
    width: 60%;
  }

  .blog-posts .post-wrapper:nth-of-type(2) {
    width: 40%;
  }
}

.post-related-box {
  margin-top: 30px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .post-related-box {
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 742px;
    margin-left: auto;
    margin-right: auto;
  }
}

.post-related-box__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-bottom: 18px;
}

.hero {
  max-width: 590px;
  margin: 0 auto;
}

.hero__subtitle p {
  line-height: 21px;
}

.tablepress tbody td,
.tablepress tfoot th {
  border-top: none;
}

.table-product * {
  font-family: Montserrat;
  font-weight: 600;
  color: #3E4345;
}

.table-product tbody tr:first-child td {
  background: var(--color-yellow2);
}

.table-product thead tr th:not(:last-child),
.table-product tbody tr td:not(:last-child) {
  border-right: 1px solid #C6CACC;
}

.table-product thead th {
  padding: 28px 20px;
  line-height: 22px;
}

.table-product tbody td {
  padding: 22px 20px;
}

.table-product tbody tr:nth-child(odd) {
  background: #F1F3F4;
}

.main-back {
  /*display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;*/
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-row-gap: 20px;
  justify-items: center;
  background-color: #E5E5E5;
}

.auth-box {
  position: relative;
  width: 360px;
  box-shadow: 0px 2px 10px rgba(68, 68, 68, 0.1);
}

.auth-box .btn {
  width: 100%;
  height: 40px;
  margin-top: 8px;
}

.auth-box__header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 60px;
  border-radius: 4px 4px 0 0;
  color: var(--color-blue);
  background-color: var(--color-yellow);
}

.auth-box__main {
  padding: 35px 30px 30px;
  border-radius: 0 0 4px 4px;
  background: #FFF;
}

.auth-box__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 6px;
}

.auth-box__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
  margin-bottom: 18px;
}

.auth-box__footer {
  position: absolute;
  top: 100%;
}

.auth-box__link {
  font-size: 14px;
  color: var(--color-blue);
  text-decoration: underline;
}

.auth-box-fields-number {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-box-fields-number input[type=number] {
  width: 48px;
  height: 48px;
  margin: 0 6px;
  padding: 0;
}

.dash-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-blue);
  margin: 40px 0 30px;
}

.dash-info {
  margin-bottom: 15px;
}

.dash-table-box {
  padding: 15px 15px 0;
  background-color: #FFF;
}

.dash-table-box table {
  margin-bottom: 0;
}

.dash-table-box table tr th {
  color: #5E6366;
  border-top: none;
}

.dash-table-box table tr td {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
}

.dash-table-box .table td,
.dash-table-box .table th {
  vertical-align: middle;
}

.dash-total {
  display: flex;
  align-items: center;
  width: auto;
  padding: 15px;
  margin: 30px 0 0 auto;
  background: #DFE9F7;
  border: 1px solid #A1C1F0;
  border-radius: 4px;
}

.dash-total__count {
  margin: 0 14px 0 0;
}

.dash-total__count b {
  color: var(--color-black);
}

.modal-dash .modal-dialog {
  max-width: 407px;
}

.modal-dash .modal-header {
  font-weight: 500;
  font-size: 18px;
  color: #5E6366;
  background-color: #F1F3F4;
}

.modal-dash .modal-title {
  width: 100%;
  text-align: center;
}

.modal-dash .modal-body {
  padding: 25px 40px 35px;
}

.modal-dash .btn {
  width: 100%;
}

.modal-dash .name {
  display: block;
}

.modal-dash .price {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: var(--color-blue);
}

.field-radio-wrapper {
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 8px;
  border: 1px solid #A1C1F0;
  border-radius: 4px;
  background: #DFE9F7;
}

.service-card > .elementor-column-wrap > .elementor-widget-wrap {
  border: 1.34024px solid #F1F3F4;
  box-shadow: 0 2px 10px rgba(68, 68, 68, 0.1);
}

.service-card .elementor-widget-wrap {
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .service-card.elementor-column {
    width: 50% !important;
  }
}

@media only screen and (min-width: 1024px) {
  .service-card.elementor-column {
    width: 33.33% !important;
  }
}

.service-card-inner {
  flex: 1;
}

.service-card-footer {
  padding-bottom: 6px;
}

.breadcrumb-container {
  display: none;
  font-weight: 500;
  font-size: 13px;
  padding: 15px 15px;
}

.breadcrumb-container a {
  color: #3E4345;
}

.breadcrumb-container a:hover {
  color: #999;
}

@media only screen and (min-width: 768px) {
  .breadcrumb-container {
    display: block;
  }
}

