/*-----------------
* palette
* ----------------
*
*/

/******** GLOBAL *******/

html {}

body {
  font-size: var(--fontsizePrimary);
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  color: #383838;
}

input,
form {
  color: #111;
}

input {
  padding: 5px 10px;
}

.img-responsive {
  object-fit: cover;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--hoverColour);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--linkColour);
}

.button,
a.button,
.btn,
input.wpcf7-form-control.wpcf7-submit,
input[type="submit"] {
  background-color: #FFD800;
  color: #151515;
  padding: var(--buttonPadding);
  font-weight: bold;
  border-color: transparent;
  border-radius: 0;
}

.button:hover,
a.button:hover,
.btn:hover,
input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: var(--backgroundSecond);
  color: #fff;
}

.breadcrumbs {
  margin-top: 30px;
  background: #f7f7f7;
  border: 1px solid #eee;
  padding: 10px;
  font-size: 12px;
}

.breadcrumbs-wrap {
  background: transparent;
  font-weight: 700;
  padding: 0;

  a {
    color: #FFD800;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #151515;
  font-weight: var(--textFontWeight);
  margin-top: 0;
}

h1,
.h1 {
  font-size: var(--fontsizeLarge);
}

h2,
.h2 {
  font-size: var(--fontsizeMedium);
}

h3,
.h3 {
  font-size: var(--fontsizeSmall);
}

h4,
.h4 {
  font-size: var(--fontsizeExSmall);
}

.image-strip {
  position: relative;

  .col-rel {

    position: relative;
  }

  .inner-image-strip {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
  }
}

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

table.striped-table {
  width: 100%;

  td {
    font-weight: 700;
  }

  tr {
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
  }

  tr:nth-child(odd) {
    background-color: #002B7C;
    color: #fff;

    td {
      color: #FFD800;
    }
  }

}

.section-grey {
  background-color: #E6EAF2 !important;
}

.blue-block--slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 30px;
  background: #002B7C;
  color: #fff;
  position: relative;

  h1,
  h2,
  h3 {
    color: #fff;
  }
}

.blue-block--slider:after {
  content: "";
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='rgb(0, 43, 124)' preserveAspectRatio='none'%3E%3Cpolygon points='0, 0 100, 0 0, 100' /%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
  transform: rotate(180deg);
  width: 75px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: -75px;
  z-index: 999999;
  transform: scaleX(-1) rotate(180deg);
}

.page-template-template-contact {
  iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
  }
}

.block_alternating_boxes_wrap {
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.margin-bottom--minus {
  margin-bottom: -10px;
}

.inner-block-inner--wrap {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;


  & .inner-block--title {
    a {
      color: #fff;
    }
  }

  .inner-block--title:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 120px solid transparent;
    border-bottom: 120px solid transparent;
    border-left: 30px solid #002B7C;
    position: absolute;
    top: 0;
    height: 100%;
    right: -30px;
  }

  .inner-block--title {
    background: #002B7C;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    bottom: 0;
    font-weight: 800;
    width: auto;
  }
}

.alternating_wrap {
  .inner-block-inner--wrap {
    margin-bottom: 0px;
  }
}

.inner-block--title:hover {
  background-color: #FFD800;
  color: #383838 !important;

}

.inner-block--title:hover:after {
  border-left: 30px solid #FFD800;
  color: #383838;
}

.arrow-wrap {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  justify-content: center;

  li {
    margin: 0 3.5px;
    background: #002B7C;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
  }

  .swiper-button-disabled,
  li:hover {
    background: #383838;
  }

  svg {
    width: 15px;
    height: 15px;
    fill: #fff;
  }
}

.logo-single--wrap {
  border: 1px solid #CCD5E5;
  padding: 15px;
  background-color: #fff;

  img {
    height: 80px;
    object-fit: contain;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.intro-content {
  color: #fff;

  h1,
  h2,
  h3 {
    color: #fff;
  }
}

.blue-strip {
  background: #002263;
}

.intro-content {
  .btn:hover {
    background-color: #fff;
    color: #151515;
  }
}

.wpcf7-text,
.wpcf7-textarea {
  border: 1px solid #CCD5E5;
}

.blue-btn--over {
  button {
    background-color: #002B7C;
    color: #fff;
  }
}


.brand-wrap {
  margin-bottom: 30px;
}

.brand-wrap a {
  margin-bottom: 15px;
  display: block;
}

.brand-wrap img {
  height: 180px !important;
  max-width: 100%;
  padding: 15px;
  background: #fff;
  object-fit: contain;
}

.brand-li-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

ul.brands-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;

  li {
    margin: 0 10px;
  }
}

ul.brands-wrap a {
  color: #212529;
  font-weight: 600;
  font-size: 20px;
}

ul.brands-wrap a:hover {
  color: #F49700;
}

.term-brands ul.brands-wrap {
  margin-top: 20px;
}

/******** Responsive ***********/

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {}

/* L */
@media (max-width: 1200px) {}

/* M */
@media (max-width: 992px) {
  .img-strip {
    height: 300px;
  }

  .block_alternating_boxes_wrap {
    margin-top: 10px;
  }
}

/* S */
@media (max-width: 768px) {
  .img-strip {
    height: 400px;
  }

  .image-strip {
    .inner-image-strip {
      position: absolute;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8);
      padding: 30px;
      width: 100%;
      left: 0;
      right: 0;
    }
  }
}

/* XS */
@media (max-width: 576px) {}