* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

header {
  border-top: 10px solid #005ac7;
  border-bottom: 30px solid #005ac7;
  background-color: #000;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 50px;
}
header .hero {
  width: 100%;
  aspect-ratio: 16/9;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 640px) {
  header .hero {
    height: 100%;
  }
}
header .branding {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  header .branding {
    flex-direction: column;
  }
}
header .branding .brand {
  text-decoration: none;
}
header .branding .brand h1 {
  width: fit-content;
  font-family: "Cairo", serif;
  font-size: 70px;
  margin: 0;
  font-weight: 500;
  padding-top: 50px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 640px) {
  header .branding .brand h1 {
    margin: 0 auto;
  }
}
header .branding .brand h1 em {
  font-family: "Cairo", serif;
  font-size: 70px;
  color: #005ac7;
  font-style: normal;
  font-weight: 400;
}
header .branding nav {
  display: flex;
  gap: 30px;
  margin-top: auto;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  header .branding nav {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  header .branding nav a {
    margin-left: auto;
    margin-right: auto;
  }
}
header .branding nav a img {
  height: 40px;
  width: auto;
}
header .branding .content {
  gap: 50px;
  display: flex;
}
header .branding .content .cols30 {
  width: calc((100% - 50px) / 10 * 3);
}
header .branding .content .cols70 {
  width: calc((100% - 50px) / 10 * 7);
}
header .branding .content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}
header .branding .content p strong {
  font-size: 16px;
  font-weight: 600;
  color: #2d7eec;
}
header .branding .content p em {
  font-size: 16px;
}

.home header .branding {
  flex-direction: column;
}
.home header .hero {
  width: 100%;
  aspect-ratio: 16/9;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home header .content {
  gap: 50px;
  display: flex;
  justify-content: space-between;
}
.home header .content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  margin-top: 30px;
  margin-bottom: 0;
}
.home header .content p strong {
  font-size: 16px;
  font-weight: 600;
  color: #2d7eec;
}
.home header .content p em {
  font-size: 16px;
}
.home header .products {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  height: 100%;
  padding: 100px 0 50px;
}
@media (max-width: 1024px) {
  .home header .products {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .home header .products {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 640px) {
  .home header .products {
    width: 100%;
  }
}
.home header .products a {
  display: flex;
  flex-direction: column;
  width: calc((100% - 50px) / 2);
  text-decoration: none;
}
@media (max-width: 1024px) {
  .home header .products a {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .home header .products a {
    width: 100%;
  }
}
.home header .products a figure {
  line-height: 0;
}
@media (max-width: 640px) {
  .home header .products a figure {
    text-align: center;
  }
}
.home header .products a figure img {
  width: auto;
  height: 60px;
}
@media (max-width: 640px) {
  .home header .products a figure img {
    height: 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home header .products a .text {
  font-family: "Cairo", serif !important;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: white;
  transition: background 0.5s ease-in-out;
  line-height: 30px;
  font-weight: 200;
  font-size: 18px !important;
}
.home header .products a .text:hover {
  background: rgba(0, 90, 199, 0.5);
  transition: background 0.5s ease-in-out;
}

footer {
  padding: 50px 0 0;
}
footer .logos {
  display: flex;
  gap: 40px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  footer .logos {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  footer .logos {
    justify-content: center;
    flex-direction: column;
    padding-bottom: 50px;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  footer .logos > * {
    display: flex;
    justify-content: center;
  }
}
footer .logos svg {
  fill: #ccc;
  height: 20px;
  width: auto;
}
@media (max-width: 700px) {
  footer .logos svg {
    height: 15px;
  }
}
@media (max-width: 640px) {
  footer .logos svg {
    margin-right: auto;
    margin-left: auto;
  }
}
footer .logos .rdc svg {
  height: 25px;
  margin-top: -3px;
}
@media (max-width: 700px) {
  footer .logos .rdc svg {
    height: 18px;
    margin-top: -1px;
  }
}
footer .colophone {
  width: 100%;
  display: flex;
  background-color: #f6f6f6;
  padding: 20px 0;
}
footer .colophone a:link, footer .colophone a:visited {
  color: #005ac7;
  text-decoration: none;
}
footer .colophone a:hover, footer .colophone a:active {
  color: #da0642;
  text-decoration: underline;
}
footer .colophone .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .colophone .container {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .colophone .container > * {
  display: flex;
  gap: 15px;
  font-size: 14px;
  font-family: "Roboto Condensed", serif;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  footer .colophone .container > * {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  footer .colophone .container > * {
    flex-direction: column;
  }
}

.newslineWrapper {
  background-color: #f3f3f3;
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  background-image: url("../images/bg.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
@media (max-width: 680px) {
  .newslineWrapper {
    background-size: cover;
  }
}
.newslineWrapper .newsLineTitle {
  font-size: 50px;
  color: #005ac7;
  font-family: "Cairo", serif;
  font-weight: 200;
}
@media (max-width: 768px) {
  .newslineWrapper .newsLineTitle {
    text-align: center;
    line-height: 60px;
  }
}
.newslineWrapper .newsLine {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .newslineWrapper .newsLine {
    justify-content: center;
  }
}
.newslineWrapper .newsLine .newsItem {
  font-family: "Roboto Condensed", serif;
  width: calc((100% - 120px) / 5);
  padding: 27px 20px 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  /* &:after {
     content: "";
     width: 40px;
     height: 40px;
     position: absolute;
     bottom: 0;
     right: 0;
     border-radius: 8px 0 8px 0;
     // background-color: #005ac7;
     background: linear-gradient(135deg,  #bcdcff 0%,#5d8ec6 50%,#005699 51%,#005ac7 100%);
   }*/
}
@media (max-width: 1260px) {
  .newslineWrapper .newsLine .newsItem {
    width: calc((100% - 90px) / 4);
  }
  .newslineWrapper .newsLine .newsItem:last-child {
    display: none;
  }
}
@media (max-width: 980px) {
  .newslineWrapper .newsLine .newsItem {
    width: calc((100% - 60px) / 3);
  }
  .newslineWrapper .newsLine .newsItem:nth-last-child(2) {
    display: none;
  }
  .newslineWrapper .newsLine .newsItem:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .newslineWrapper .newsLine .newsItem {
    width: calc((100% - 60px) / 2);
    flex-wrap: wrap;
  }
  .newslineWrapper .newsLine .newsItem:nth-last-child(2) {
    display: flex;
  }
  .newslineWrapper .newsLine .newsItem:last-child {
    display: none;
  }
}
@media (max-width: 640px) {
  .newslineWrapper .newsLine .newsItem {
    width: 100%;
    flex-wrap: wrap;
  }
  .newslineWrapper .newsLine .newsItem:nth-last-child(2) {
    display: none;
  }
  .newslineWrapper .newsLine .newsItem:last-child {
    display: none;
  }
}
.newslineWrapper .newsLine .newsItem:before {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #005ac7;
}
.newslineWrapper .newsLine .newsItem data {
  font-size: 14px;
  color: #666;
}
.newslineWrapper .newsLine .newsItem h3 {
  color: #005ac7;
}
.newslineWrapper .newsLine .newsItem span {
  color: #141414;
  opacity: 0.8;
}
.newslineWrapper .newsLine .newsItem em {
  margin: auto 0 0;
  width: 100%;
  padding-top: 20px;
  display: block;
  font-size: 12px;
  color: #999;
}
.newslineWrapper .newsLine .newsItem:hover {
  background-color: #005ac7;
  background: linear-gradient(135deg, #1481ff 0%, #005ac7 40%);
  transition: all 0.5s ease-in-out;
}
.newslineWrapper .newsLine .newsItem:hover data, .newslineWrapper .newsLine .newsItem:hover h3, .newslineWrapper .newsLine .newsItem:hover span, .newslineWrapper .newsLine .newsItem:hover em {
  color: #fff;
}
.newslineWrapper .newsLine .newsItem:hover:before, .newslineWrapper .newsLine .newsItem:hover:after {
  display: none;
}

.main-home {
  padding-top: 100px;
  padding-bottom: 100px;
  font-family: "Cairo", serif;
  font-size: 20px;
  line-height: 30px;
  columns: 2;
  column-gap: 60px;
  font-weight: 200;
}
@media (max-width: 1024px) {
  .main-home {
    column-gap: 30px;
  }
}
@media (max-width: 640px) {
  .main-home {
    columns: 1;
    column-gap: unset;
    font-size: 18px;
    line-height: 26px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.main-home p {
  margin: 0;
}

.art-head {
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px;
}
.art-head h1 {
  font-size: 70px;
  color: #005ac7;
  font-family: "Cairo", serif;
  margin: auto auto auto 0;
  font-weight: 300;
}
@media (max-width: 640px) {
  .art-head h1 {
    font-size: 50px;
    padding-top: 50px;
  }
}
.art-head .feature {
  line-height: 0;
  filter: invert(1);
  margin: auto 0 auto auto;
}
@media (max-width: 640px) {
  .art-head .feature {
    display: none;
  }
}
.art-head .feature img {
  height: 50px;
  width: auto;
  opacity: 0.5;
}

.art-content {
  width: 80%;
  font-family: "Cairo", serif;
  padding-bottom: 100px;
  font-size: 18px;
}
@media (max-width: 980px) {
  .art-content {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .wp-block-gallery.columns-4 {
    flex-wrap: wrap;
  }
  .wp-block-gallery.columns-4 figure.wp-block-image {
    width: calc((100% - 18px) / 2) !important;
  }
}
@media (max-width: 640px) {
  .wp-block-gallery.columns-4 figure.wp-block-image {
    width: 100% !important;
  }
}

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