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

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
}

html, body {
  border-collapse: collapse;
}

button:focus {
  outline-color: transparent;
  outline-style: none;
  outline: none;
}

body {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  background-color: #ffffff;
  margin: 0px;
  padding: 0px;
}

p, a:not(.btn), li {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

p {
  margin-top: 0px;
}

a, a:hover {
  color: #C69A68;
}

a:visited {
  color: #C69A68;
}

a:focus {
  color: #C69A68;
  outline: none;
}

*:focus {
  outline: none;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hover-tekst:hover {
  color: #C69A68;
}

h1 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  margin: 0px 0px 30px 0px;
  padding: 0px;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-align: left;
  text-transform: uppercase;
}

h2 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  margin: 0px 0px 30px 0px;
  padding: 0px;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center;
}

h3 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  margin: 0px 0px 20px 0px;
  padding: 0px;
  font-weight: 900;
  font-size: 35px;
  line-height: 38px;
  text-align: left;
}

.btn {
  padding: 10px 30px;
  font-size: 16px;
  line-height: 16px;
}

.btn-default {
  position: relative;
  font-family: "Roboto", sans-serif;
  background-color: #C69A68;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  padding: 20px 50px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  transition: all 0.3s ease 0s;
  box-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-default:visited, .btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus {
  color: #ffffff;
  text-decoration: none;
}
.btn-default:hover {
  opacity: 0.8;
}

.btn-primary {
  position: relative;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  color: #C69A68;
  padding: 20px 50px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  transition: all 0.3s ease 0s;
  box-shadow: none;
  text-decoration: none;
}
.btn-primary:visited, .btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus {
  color: #C69A68;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.8;
}

.maincontent {
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". content .";
  margin-top: 115px;
}
.maincontent .content {
  grid-area: content;
  padding: 40px 20px;
}

.smallcontent {
  display: grid;
  grid-template-columns: auto 1000px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". content .";
  margin-top: 115px;
}
.smallcontent .content {
  grid-area: content;
  padding: 40px 20px;
}

.mobile-icons {
  position: fixed;
  width: 50px;
  top: 50%;
  left: 0px;
  transform: translate(0, -50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
}
.mobile-icons .mobile-icon {
  background-color: #C69A68;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.mobile-icons .mobile-icon img {
  max-width: 30px;
  height: auto;
}

.mobile-icons {
  position: fixed;
  width: 50px;
  top: 20%;
  left: 0px;
  transform: translate(0, -50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
}
.mobile-icons .mobile-icon {
  background-color: #C69A68;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.mobile-icons .mobile-icon img {
  max-width: 30px;
  height: auto;
}
.mobile-icons .lfYmBl {
  border-radius: 0px;
  width: 50px;
  height: 50px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.mobile-icons .cJsWMx {
  margin-top: 20px;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
  z-index: 4999;
}
.modal.open {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

.modal-popup {
  width: 50%;
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  z-index: 5000;
}
.modal-popup .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal-popup .close:hover, .modal-popup .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .modal {
    height: 100%;
    width: 100vh;
    position: absolute;
  }
  .modal.open {
    display: flex;
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
  }
  .modal.open .modal-popup {
    width: 90%;
    padding: 50px;
  }

  .mobile-icons {
    position: fixed;
    width: 50px;
    top: 50%;
  }
  .mobile-icons .cJsWMx {
    top: -300px;
    left: 60px;
    width: 300px !important;
  }

  html, body {
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .btn-default {
    font-size: 20px;
    padding: 20px;
  }

  .btn-primary {
    font-size: 20px;
    padding: 20px;
  }

  .maincontent {
    display: flex;
    flex-direction: column;
    padding: 20px 50px;
    margin-top: 0px;
  }

  .smallcontent {
    display: flex;
    flex-direction: column;
    padding: 20px 50px;
    margin-top: 0px;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .maincontent {
    display: grid;
    grid-template-columns: auto 990px auto;
    grid-template-rows: 1fr;
    grid-template-areas: ". content .";
  }
  .maincontent .content {
    grid-area: content;
    padding: 40px 20px;
  }

  .smallcontent {
    display: grid;
    grid-template-columns: auto 990px auto;
    grid-template-rows: 1fr;
    grid-template-areas: ". content .";
  }
  .smallcontent .content {
    grid-area: content;
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .maincontent {
    display: grid;
    grid-template-columns: auto 769px auto;
    grid-template-rows: 1fr;
    grid-template-areas: ". content .";
  }
  .maincontent .content {
    grid-area: content;
    padding: 40px 20px;
  }

  .smallcontent {
    display: grid;
    grid-template-columns: auto 769px auto;
    grid-template-rows: 1fr;
    grid-template-areas: ". content .";
  }
  .smallcontent .content {
    grid-area: content;
    padding: 40px 20px;
  }
}
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". header-top .";
  background-color: #000000;
}
.header .header-top {
  grid-area: header-top;
  display: flex;
  justify-content: stretch;
  align-items: center;
}
.header .header-logo {
  padding: 20px 0px;
}
.header .navigation {
  display: flex;
  flex-grow: 1;
}

.header-bottom {
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: 150px;
  grid-template-areas: ". header-info header-chat";
  align-items: center;
}
.header-bottom .header-info {
  grid-area: header-info;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header-bottom .header-info .header-info-block {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
}
.header-bottom .header-info .header-info-block img {
  margin-right: 20px;
}
.header-bottom .header-info .header-info-block a {
  color: #C69A68;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}
.header-bottom .header-chat {
  grid-area: header-chat;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  background-color: #C69A68;
}

ul.mainnav {
  display: flex;
  flex-grow: 1;
  margin: 0px;
  padding: 0px;
  list-style: none;
  justify-content: space-around;
  align-items: center;
  background-color: #000000;
}
ul.mainnav li {
  margin: 0 20px;
  cursor: pointer;
}
ul.mainnav li a {
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
}

.main-header {
  position: relative;
}
.main-header .logo {
  margin-top: 10px;
  padding: 10px;
  background-color: #ffffff;
}
.main-header .logo .img-fluid {
  max-width: 137px;
  transition: 0.2s;
}
.main-header .top-nav {
  height: 30px;
}
.main-header .top-nav .top-nav-holder {
  background-color: #C69A68;
  text-align: right;
}
.main-header .top-nav .top-nav-holder ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  display: inline-block;
}
.main-header .top-nav .top-nav-holder ul li {
  display: inline-block;
  margin-left: 30px;
  color: #ffffff;
}
.main-header .top-nav .top-nav-holder ul li a {
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 300;
}
.main-header .top-nav .top-nav-holder ul li a.dropdown-item {
  color: #C69A68;
  border-bottom: #C6C2C2;
}
.main-header .logo-holder {
  position: relative;
}
.main-header .bottom-nav {
  align-content: center;
  align-items: center;
}

.navigation-holder {
  padding-right: 14px;
  align-content: center;
  align-items: center;
  height: 100%;
}

.hamburger-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .header {
    position: static;
    display: flex;
    flex-direction: column;
  }
  .header .header-logo {
    padding-bottom: 0px;
  }
  .header .header-top {
    display: flex;
    flex-direction: column;
  }
  .header .navigation {
    display: none;
  }

  .header-bottom {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 0px;
  }
  .header-bottom .header-info {
    padding: 0 20px 50px;
    display: none;
    flex-direction: column;
  }
  .header-bottom .header-info .header-info-block {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .header-bottom .header-info .header-info-block img {
    margin-right: 0px;
  }
  .header-bottom .header-info .header-info-block .header-link {
    text-align: center;
  }
  .header-bottom .header-chat {
    width: 100%;
    padding: 10px;
  }

  ul.mainnav {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
  ul.mainnav li {
    margin-bottom: 10px;
  }

  .hamburger-menu {
    padding: 0px 20px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .mainmenu {
    display: flex;
    width: 30px;
    z-index: 10001;
    color: #ffffff;
    background-color: transparent;
  }
  .mainmenu .nav-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 2px auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  .mainmenu .nav-icon3 span {
    background-color: #ffffff;
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  .mainmenu .nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  .mainmenu .nav-icon3 span:nth-child(2), .mainmenu .nav-icon3 span:nth-child(3) {
    top: 10px;
  }
  .mainmenu .nav-icon3 span:nth-child(4) {
    top: 20px;
  }
  .mainmenu .nav-icon3.turn {
    transform: rotate(90deg);
  }
  .mainmenu .nav-icon3.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
  .mainmenu .nav-icon3.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .mainmenu .nav-icon3.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .mainmenu .nav-icon3.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .header {
    display: grid;
    grid-template-columns: auto 990px auto;
  }

  .header-bottom {
    display: grid;
    grid-template-columns: auto 890px 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .header {
    display: flex;
    flex-direction: column;
  }
  .header .header-top {
    display: flex;
    flex-direction: column;
  }

  .header-bottom {
    display: grid;
    grid-template-columns: auto 669px 100px;
  }
}
.banner {
  display: grid;
  grid-template-columns: auto 512px 768px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". banner-left banner-right .";
  background-color: #000000;
}
.banner .banner-text {
  grid-area: banner-left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #000000;
  color: #ffffff;
  height: 740px;
  padding-right: 50px;
}
.banner .banner-text h1 {
  color: #ffffff;
  text-transform: uppercase;
}
.banner .banner-text p, .banner .banner-text a, .banner .banner-text li {
  color: #ffffff;
}
.banner .banner-text .btn-default {
  margin-top: 30px;
}
.banner .banner-image {
  grid-column: 3 / -1;
  grid-row: 1;
  display: flex;
  flex-shrink: 1;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .banner {
    display: flex;
    flex-direction: column;
  }
  .banner .banner-image {
    height: 150px;
    order: 1;
  }
  .banner .banner-text {
    padding: 70px 50px;
    align-items: center;
    height: auto;
    order: 2;
  }
  .banner .banner-text h1 {
    text-align: center;
  }
  .banner .banner-text p {
    text-align: center;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .banner {
    display: grid;
    grid-template-columns: auto 512px auto auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .banner {
    display: grid;
    grid-template-columns: auto 512px auto auto;
  }
}
.header-holder {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 30px 1fr;
}
.header-holder .header-top-back {
  grid-column: 1;
  grid-row: 1 / 2;
  background-color: #C69A68;
  z-index: 1;
  width: 100%;
  height: 30px;
}
.header-holder .header-bottom-back {
  grid-column: 1;
  grid-row: 2 / -1;
  background-color: #ffffff;
  z-index: 2;
}
.header-holder .dropdown-menu {
  border-radius: 0px;
  padding: 0 20px;
}
.header-holder .main-header {
  grid-column: 1;
  grid-row: 1 / -1;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.header-holder .main-header .header-logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header-holder .main-header .header-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.header-holder .main-header .header-navigation .header-top {
  width: 100%;
}
.header-holder .main-header .header-navigation .header-top ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0px;
  padding: 0px;
}
.header-holder .main-header .header-navigation .header-top ul li {
  margin-left: 20px;
}
.header-holder .main-header .header-navigation .header-top ul li a {
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}
.header-holder .main-header .header-navigation .header-top ul li a:hover {
  color: #143D74;
}
.header-holder .main-header .header-navigation .header-top ul li a.dropdown-item {
  color: #C69A68;
  padding: 0 20px;
  border-bottom: solid 1px #C6C2C2;
}
.header-holder .main-header .header-navigation .header-top ul li a.dropdown-item:last-child {
  border-bottom: 0px;
}
.header-holder .main-header .header-navigation .header-top ul li.active a {
  color: #143D74;
}
.header-holder .main-header .header-navigation .header-top ul li.active a:hover {
  color: #143D74;
}
.header-holder .main-header .header-navigation .header-bottom {
  width: 100%;
  padding: 20px 0px;
  transition: 0.2s;
}
.header-holder .main-header .header-navigation .header-bottom ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0px;
  padding: 0px;
}
.header-holder .main-header .header-navigation .header-bottom ul li {
  margin-left: 20px;
}
.header-holder .main-header .header-navigation .header-bottom ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #C69A68;
  text-decoration: none;
  font-weight: 400;
}
.header-holder .main-header .header-navigation .header-bottom ul li a:hover {
  color: #143D74;
}
.header-holder .main-header .header-navigation .header-bottom ul li.active a {
  color: #143D74;
}
.header-holder .main-header .header-navigation .header-bottom ul li.active a:hover {
  color: #143D74;
}

.navbar-toggler {
  display: none;
  border-color: #1e3059;
  background-color: #ffffff;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(30,48,89, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
    margin-top: 20px;
  }

  .login-nav {
    width: 100%;
  }

  .login-title {
    font-size: 14px;
    line-height: 35px;
    color: #143D74;
    padding: 0 20px;
  }

  .login-items {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .login-items a.login-item {
    font-size: 14px;
    line-height: 35px;
    color: #C69A68;
    padding: 0 20px;
  }
  .login-items a.login-item:hover {
    color: #143D74;
  }

  .header-holder .main-header {
    grid-column: 1;
    grid-row: 1 / -1;
    z-index: 10;
    flex-direction: column;
    transition: all 0.5s ease;
  }
  .header-holder .main-header .header-logo {
    width: 100%;
  }
  .header-holder .main-header .header-navigation {
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  }
  .header-holder .main-header .header-navigation.show {
    display: flex;
  }
  .header-holder .main-header .header-navigation .header-top {
    width: 100%;
  }
  .header-holder .main-header .header-navigation .header-top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .header-holder .main-header .header-navigation .header-top ul li {
    margin-left: 0px;
    padding-left: 20px;
  }
  .header-holder .main-header .header-navigation .header-top ul li a {
    font-size: 14px;
    line-height: 35px;
    color: #143D74;
    text-decoration: none;
    font-weight: 400;
    display: block;
  }
  .header-holder .main-header .header-navigation .header-top ul li a:hover {
    color: #C69A68;
  }
  .header-holder .main-header .header-navigation .header-top ul li:hover {
    background-color: #C69A68;
  }
  .header-holder .main-header .header-navigation .header-top ul li:hover a {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-top ul li:hover a:hover {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-top ul li.active {
    background-color: #C69A68;
  }
  .header-holder .main-header .header-navigation .header-top ul li.active a {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-top ul li.active a:hover {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-bottom {
    width: 100%;
    padding: 5px 0px;
  }
  .header-holder .main-header .header-navigation .header-bottom ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li {
    max-width: 100%;
    word-wrap: normal;
    margin-left: 0px;
    padding-left: 20px;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li a {
    display: block;
    font-size: 14px;
    line-height: 35px;
    color: #C69A68;
    text-decoration: none;
    font-weight: 400;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li a:hover {
    color: #143D74;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li:hover {
    background-color: #143D74;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li:hover a {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li:hover a:hover {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li.active {
    background-color: #143D74;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li.active a {
    color: #ffffff;
  }
  .header-holder .main-header .header-navigation .header-bottom ul li.active a:hover {
    color: #ffffff;
  }
}
.cta-holder {
  display: grid;
  grid-template-columns: auto 670px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". cta .";
  padding-top: 100px;
  background-color: #C69A68;
}
.cta-holder .cta-block {
  grid-area: cta;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-holder h2 {
  color: #000000;
  text-align: center;
  font-size: 28px;
  line-height: 30px;
}
.cta-holder .btn-primary {
  margin-top: 50px;
}
.cta-holder .cta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.cta-holder .cta-info .cta-info-block {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
  margin: 50px 30px 0px;
}
.cta-holder .cta-info .cta-info-block img {
  margin-right: 20px;
}
.cta-holder .cta-info .cta-info-block a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.brands-container {
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: auto;
  grid-template-areas: ". brands .";
  padding: 100px 0px;
}
.brands-container .brands-holder {
  grid-area: brands;
  display: block;
  text-align: center;
}

.brands-middle {
  padding: 40px 0px 70px;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  grid-template-rows: 1fr;
  align-items: center;
  grid-template-areas: "sleft swiper sright";
  overflow: hidden;
}

.brands-bottom {
  display: flex;
  justify-content: center;
}

.brands-swiper {
  grid-area: swiper;
  max-width: 1180px;
  overflow: hidden;
}

.button-left {
  grid-area: sleft;
}

.button-right {
  grid-area: sright;
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer {
  display: grid;
  grid-template-columns: auto 1000px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". footer .";
  padding: 100px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer .footer-container {
  color: #ffffff;
  grid-area: footer;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.footer .footer-container h3 {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  padding-bottom: 0px;
  margin: 0px;
}
.footer .footer-container .item {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.footer .footer-container .item a {
  color: #C69A68;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none;
}
.footer .footer-container .item.mail-item {
  display: flex;
  align-items: flex-end;
}
.footer .footer-container .item.mail-item img {
  margin-right: 5px;
}
.footer .footer-container .footer-address {
  flex-grow: 1;
  flex-basis: 0;
}
.footer .footer-container .footer-text {
  flex-grow: 1;
  flex-basis: 0;
}
.footer .footer-container .footer-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.footer .footer-container .footer-text .footer-info {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-text .footer-info .footer-info-block {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer .footer-container .footer-text .footer-info .footer-info-block span {
  display: inline-flex;
  width: 50px;
}
.footer .footer-container .footer-text .footer-info .footer-info-block img {
  margin-right: 5px;
  display: inline-flex;
}
.footer .footer-container .footer-text .footer-info .footer-info-block a {
  color: #C69A68;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}
.footer .footer-container .footer-logos {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  .cta-holder {
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
  }

  .brands-container {
    display: flex;
    flex-direction: column;
  }

  .footer {
    display: flex;
    flex-direction: column;
    padding: 20px 50px;
  }
  .footer .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer .footer-container .footer-address {
    margin-top: 30px;
  }
  .footer .footer-container .footer-text {
    margin-top: 30px;
    padding: 20px 0px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
  }
  .footer .footer-container .footer-logos {
    margin-top: 30px;
    align-items: center;
    width: 100%;
  }

  .cta-holder {
    padding-top: 100px;
  }
  .cta-holder .cta-info {
    margin-bottom: 50px;
  }
  .cta-holder .cta-info .cta-info-block img {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .brands-container {
    display: grid;
    grid-template-columns: auto 990px auto;
  }

  .footer {
    display: grid;
    grid-template-columns: auto 990px auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .brands-container {
    display: grid;
    grid-template-columns: auto 769px auto;
  }

  .footer {
    display: grid;
    grid-template-columns: auto 769px auto;
  }
}
.home-about {
  display: grid;
  grid-template-columns: auto 670px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". about-us .";
  padding-top: 100px;
}
.home-about .about-us {
  grid-area: about-us;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-about .about-us p {
  text-align: center;
}
.home-about .about-us .btn-default {
  margin-top: 30px;
  margin-bottom: 30px;
}

.home-usp-holder {
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". usp .";
  padding-top: 50px;
  padding-bottom: 100px;
}
.home-usp-holder .home-usps {
  grid-area: usp;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-usp-holder .home-usps .home-usp {
  display: flex;
  align-items: center;
}
.home-usp-holder .home-usps .home-usp img {
  margin-right: 10px;
}
.home-usp-holder .home-usps .home-usp .usp-text {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.workshop {
  display: grid;
  grid-template-columns: auto 512px 768px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". workshop-left workshop-right .";
  background-color: #000000;
}
.workshop .workshop-text {
  grid-area: workshop-left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #000000;
  color: #ffffff;
  height: 740px;
  padding-right: 50px;
}
.workshop .workshop-text h2 {
  color: #ffffff;
  text-transform: uppercase;
}
.workshop .workshop-text p, .workshop .workshop-text a, .workshop .workshop-text li {
  color: #ffffff;
}
.workshop .workshop-text .btn-default {
  margin-top: 30px;
}
.workshop .workshop-image {
  grid-column: 3 / -1;
  grid-row: 1;
  display: flex;
  flex-shrink: 1;
  background-size: cover;
  background-repeat: no-repeat;
}

iframe.fill-width {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16 / 9) {
  iframe.fill-width {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16 / 9) {
  iframe.fill-width {
    height: 150%;
    top: -25%;
    width: 300%;
    left: -100%;
  }
}
@media only screen and (max-width: 768px) {
  .home-about {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
  }
  .home-about .about-us {
    padding: 20px 50px;
  }

  .home-usp-holder {
    display: flex;
    flex-direction: column;
    padding: 20px 50px;
  }
  .home-usp-holder .home-usps {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .home-usp-holder .home-usps .home-usp {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .workshop {
    display: flex;
    flex-direction: column;
  }
  .workshop .workshop-text {
    padding: 50px 50px;
    align-items: center;
    height: auto;
    order: 2;
  }
  .workshop .workshop-text p {
    text-align: center;
  }
  .workshop .workshop-image {
    height: 150px;
    order: 1;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .home-usp-holder {
    display: grid;
    grid-template-columns: auto 990px auto;
  }

  .workshop {
    display: grid;
    grid-template-columns: auto 512px auto auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .home-usp-holder {
    display: grid;
    grid-template-columns: auto 769px auto;
  }

  .workshop {
    display: grid;
    grid-template-columns: auto 512px auto auto;
  }
}
.cars-holder {
  display: grid;
  grid-template-columns: auto 1280px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". cars .";
  padding: 0px 0px 100px;
}
.cars-holder .cars {
  grid-area: cars;
  display: flex;
  width: 100%;
  border: none;
  height: 1300px;
}

@media (max-width: 768px) {
  .cars-holder {
    display: flex;
    flex-direction: column;
  }
  .cars-holder .cars {
    grid-area: cars;
    display: flex;
    width: 100%;
    border: none;
    height: 3200px;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .cars-holder {
    display: grid;
    grid-template-columns: auto 990px auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .cars-holder {
    display: grid;
    grid-template-columns: auto 769px auto;
  }
}
.contactpage {
  display: grid;
  grid-template-columns: auto 460px 460px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". contactform address .";
  grid-column-gap: 80px;
}
.contactpage h1 {
  padding: 0px 20px;
  text-align: left;
}
.contactpage .contact-form {
  grid-area: contactform;
  z-index: 10;
}
.contactpage .contact-info {
  grid-area: address;
}
.contactpage .contact-info h2 {
  text-align: left;
}
.contactpage .contact-info h3 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 5px;
}

.trade-content {
  display: grid;
  grid-template-columns: auto 640px 640px auto;
  grid-template-rows: 1fr;
  grid-template-areas: ". trade . .";
}
.trade-content .form-holder {
  grid-area: trade;
}

.form-holder {
  padding: 0px 20px 70px;
}
.form-holder form {
  display: flex;
  flex-direction: column;
}
.form-holder form ::-webkit-input-placeholder {
  font-size: 14px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder form :-moz-placeholder {
  font-size: 14px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder form ::-moz-placeholder {
  font-size: 14px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder form :-ms-input-placeholder {
  font-size: 14px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder.trade-form-holder form {
  display: flex;
  flex-direction: column;
}
.form-holder.trade-form-holder form ::-webkit-input-placeholder {
  font-size: 18px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder.trade-form-holder form :-moz-placeholder {
  font-size: 18px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder.trade-form-holder form ::-moz-placeholder {
  font-size: 18px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder.trade-form-holder form :-ms-input-placeholder {
  font-size: 18px;
  color: #C6C2C2;
  font-weight: 700;
  opacity: 1 !important;
  padding: 5px 0px 15px;
}
.form-holder h1 {
  padding-bottom: 0px;
  margin-bottom: 0px;
  color: #C69A68;
  text-align: center;
  font-size: 30px;
}
.form-holder h2 {
  font-size: 30px;
  line-height: 37px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.form-holder h2.form-title {
  padding-bottom: 0px;
  margin-bottom: 0px;
  color: #C69A68;
  text-align: center;
  font-size: 25px;
}
.form-holder p, .form-holder li {
  color: #C69A68;
  font-size: 18px;
  font-weight: 300;
}
.form-holder .form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: solid 1px #707070;
  border-radius: 0px;
  font-size: 20px;
  padding: 5px 20px 20px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.form-holder .form-control.error {
  color: #721c24;
  border-color: #f5c6cb;
  display: block;
  padding: 10px 20px;
}
.form-holder .button-holder {
  text-align: center;
}
.form-holder .alert-danger {
  color: #721c24;
  border-color: #f5c6cb;
  background-color: #f8d7da;
  padding: 20px;
  margin-bottom: 20px;
}
.form-holder .alert-success {
  color: #155724;
  border-color: #c3e6cb;
  background-color: #d4edda;
  padding: 20px;
  margin-bottom: 20px;
}

.custom-select {
  display: grid;
  grid-template-columns: 1fr 30px;
  grid-template-rows: 1fr;
}
.custom-select select {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
  display: flex;
  width: 100%;
  color: #C6C2C2;
  font-size: 18px;
  padding: 10px 20px 23px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  font-weight: 700;
  border-radius: 0px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
.custom-select img {
  grid-column: 2 / -1;
  grid-row: 1;
  z-index: 1;
  margin: 10px 10px 0 0;
}

.req {
  color: #C6C2C2;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 40px;
}

select::-ms-expand {
  display: none;
  /* Remove default arrow in Internet Explorer 10 and 11 */
}

.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info .item {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.contact-info .item a {
  color: #C69A68;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none;
}
.contact-info .item.mail-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-info .item.mail-item img {
  margin-right: 5px;
}
.contact-info .item span {
  display: inline-flex;
  width: 45px;
}
.contact-info .footer-info-block {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
  margin-bottom: 20px;
}
.contact-info .footer-info-block img {
  margin-right: 5px;
}
.contact-info .footer-info-block a {
  color: #C69A68;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

#map {
  height: 540px;
  width: 100%;
}

.map-icon-label .map-icon {
  font-size: 24px;
  color: #ffffff;
  line-height: 48px;
  text-align: center;
  white-space: nowrap;
}

/* =============================================================================
   Google maps
   ========================================================================== */
.gmap3 {
  padding: 0px;
  width: 100%;
  height: 600px;
  margin: 10px 0px 20px 0px;
}

.gmap3 img {
  max-width: none;
}

.gmapMember {
  padding: 0px;
  width: 100%;
  height: 250px;
  margin: 10px 0px 20px 0px;
}

.gmapMember img {
  max-width: none;
}

.location-company {
  display: block;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .contactpage {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  .contactpage .contact-info {
    padding: 20px 50px;
  }

  .trade-content {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1280px) {
  .contactpage {
    display: grid;
    grid-template-columns: auto 445px 445px auto;
  }

  .trade-content {
    display: grid;
    grid-template-columns: auto 640px auto auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 989px) {
  .contactpage {
    display: grid;
    grid-template-columns: auto 370px auto auto;
    grid-column-gap: 29px;
  }

  .trade-content {
    display: grid;
    grid-template-columns: auto 769px auto auto;
  }
}

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