:root {
  --primary-color: #C02324;
  --secondary-color: #2B367D;
  --off-black-color: #1F1C1E;
  --white-color: #fff;
  --dark-color: #333;
  --light-grey-color: rgb(247, 247, 247);
} 

/* Basic styling*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body, html {
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin:0;
  padding:0;
}

.primary-heading {
  font-size: 2.6rem;
  letter-spacing: 1px;
  color: var(--off-black-color);
  padding: 10px 0px 20px 0px;
  display: inline-block;
}

a, a#anchor {
  cursor: pointer !important;
  margin:0;
  padding:0;
} 

@media all and (max-width:700px) {
  .primary-heading {
    font-size: 2rem;
  }
}

.text-primary {
  color: var(--off-black-color);
}

.header-border {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-border:after {
  content: '';
  border-bottom: 2px solid var(--secondary-color);
  padding-top: 5px;
  width: 80px;
}

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

/* Navigation */

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

#navbar {
  overflow: hidden;
  background: #fff;
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index:1;
  border-bottom: 2px solid var(--primary-color);
}

/* #location.item h6 {
  display: inline-block;
  padding: 20px;
  margin:0;
  color: var(--off-black-color);
  font-size: 1rem;
  line-height: 1.5rem;
  vertical-align: middle;
}
#location.item i {
  display: inline-block;
  padding: 10px;
  margin-left:10px;
  color: var(--primary-color);
  background: var(--off-black-color);
  border-radius: 50%;
}

#location.item {
  background: rgb(247, 247, 247);
  padding: 13px;
} */

ul {
  list-style-type: none;
}

a {
  color: var(--off-black-color);
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 5px;
  text-decoration: none;
  cursor:pointer;
}

.logo a:hover {
  text-decoration: none;
}
.menu li {
  font-size: 16px;
  padding: 0 1.2rem 0 1.2rem;
  white-space: nowrap;
}
.logo a,
.toggle a {
  font-size: 1.6rem;
  padding: 10px;
}

.toggle a, .toggle a:hover {
  text-decoration: none;
  border: none;
  color: var(--secondary-color);
  background: var(--off-black-color);
  padding:7px;
  border-radius: 1px;
}

.logo a {
  padding-top:50px;  
  display: inline-block;
}

#navbar .logo-link {
    all: unset;
    cursor: pointer;
    display: inline-block;
    padding-left:10px;
}

/* Mobile menu */
li.logo {
  padding:0;
}
li.logo img {
  width: 100px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.toggle {
  order: 1;
}
.item {
  width: 100%;
  text-align: center;
  order: 3;
  display: none;
}
.item.active {
  display: block;
}

.logo img {
  padding:10px 0px 0px 0px;
  margin-left:40px;
}
@media all and (max-width:900px){
  .logo img {
    padding:10px;
    margin:0;
  } 
}
li.item {
  border-top: 1px solid #efefef;
  padding:1rem;
}


li.item:nth-last-child(6) {
  border-top: 1px solid var(--primary-color);
}
li.item:nth-last-child(1) {
  border-bottom: 1px solid var(--primary-color);
}


.current-menu-item {
  border: none;
}

/* Mobile and tablet additional styles   */
@media all and (max-width:1100px) {
  #location.item {
  display: none;
  }
}

/* Tablet menu */
@media all and (min-width: 600px) {
  .menu {
      justify-content: center;
  }
  .logo {
      flex: 1;
  }
  .toggle {
      flex: 1;
      text-align: right;
  }
  .toggle {
      order: 2;
  }
  .logo, .toggle {
    margin:0 30px;
  }
}

/* Desktop menu */
@media all and (min-width: 1050px) {
  .logo, .toggle {
    margin:0 5px;
  }

  li.item {
    border:none;
  }
  li.item:nth-last-child(1), li.item:nth-last-child(6) {
    border:none;
  }

  .item {
      display: block;
      width: auto;
  }
  a {
    color: var(--off-black-color);
    font-weight: bold;
    font-size: 1.4rem;
    /* padding: 5px 5px; */
    text-decoration: none;
    cursor:pointer;
    margin:0;
  }
  a:hover {
    padding: 5px 5px;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.1s ease-in;
  }
  .toggle {
      display: none;
  }
  .logo {
      order: 0;
  }
  li.logo img {
    width: 200px;
  }
  .item {
      order: 1;
  }
  .current-menu-item {
    border-bottom: 2px solid var(--secondary-color);
  }
}

/* Showcase */
#showcase {
  background: url('./img/Slider1.jpg') no-repeat center center/cover;
  background-size: 100% 100%;
  height:550px;
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

#showcase .showcase-text {
  background: rgba(45, 57, 66, 0.808);
  padding:30px 60px;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

/* Showcase Tablet styles */
@media all and (max-width:1100px) {
  #showcase {
    height:400px;
    margin-top: 140px;
  }
  #showcase .showcase-text {
    padding:30px;
    font-size: 0.8rem;
  }
}
@media all and (max-width:800px){
  #showcase .showcase-text {
  font-size: 0.7rem;
}
}
/* Showcase Mobile styles */ 
@media all and (max-width:1050px) {
  #showcase {
    margin-top: 76px;
  }
}
@media all and (max-width:600px) {
  #showcase {
    height:300px;
    margin-top: 76px;
  }
  #showcase .showcase-text {
    font-size: 0.6rem;
  }
}
@media all and (max-width:450px){
  #showcase {
    height:200px;
    margin-top: 76px;}
  #showcase .showcase-text {
  font-size:0.4rem;
  padding:10px;
}
}
/* Trust section */
section .trust-container {
  background: var(--light-grey-color);
  padding: 30px 80px 30px 80px;
}
.trust {
  background: var(--light-grey-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow: hidden;
  text-align: center;
}

.trust .item i {
  color: var(--primary-color);
  background: #000;
  padding: 15px;
  border-radius: 50%;
  font-size:1.8rem;
} 

.trust .item h5 {
  display: inline-block;
  padding-left: 10px;
  font-size: 1.8rem;
}

.trust li:nth-child(1) {
  order:0;
}
.trust li:nth-child(2) {
  order:1;
}
.trust li:nth-child(3) {
  order:2;
}

/* Trust Mobile styles */
@media all and (max-width:1340px){
  section .trust-container {
    background: var(--light-grey-color);
    padding: 30px 20px 30px 20px;
  }
  .trust {
    background: var(--light-grey-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: hidden;
    text-align: center;
  }
  
  .trust .item i {
    color: var(--primary-color);
    background: #000;
    padding: 15px;
    border-radius: 50%;
    font-size:1.4rem;
  } 
  
  .trust .item h5 {
    display: inline-block;
    padding-left: 10px;
    font-size: 1.4rem;
  }
}

@media all and (max-width:800px){ 
  section .trust-container {
    padding: 10px 0px;
  }
  .trust {
    display:flex;
    flex-flow: row nowrap;
  }
  .trust .item {
    display:inline-block;
    width: 30vw;
    margin:auto;
  }
  .trust .item i {
    padding:10px;
    font-size:1rem;
  }
  .trust .item h5 {
    font-size: 1rem;
    display: block;
    margin:10px 0;
  }
}

@media all and (max-width:500px){
  .trust #trust-mobile {
    display:block;
  }
}
 
/* Section: About */
.about-container {
  margin: 20px 50px 50px 50px;
  display:block;
}

.heading {
  text-align: center;
}

.about-container p {
  line-height: 1.6rem;
  font-size:1.1rem;
  text-align: left;
}

/* Mobile styles for About section */
@media all and (max-width:700px) {
  .about-container p {
  font-size: 0.7rem;
  }
  .about-container {
    margin: 5px 20px 20px 20px;
  }
}

/* Shop section */
.shop-container{
  margin: 0px auto 60px auto;
  display: block;
  text-align: center;
}

.shop-featured {
  display: flex;
  justify-content: space-around;
  flex-flow: row nowrap;
  align-items: center;
  margin:0;
}

.shop-featured .module1 {
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(./img/featured1.jpg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0; 
  position: relative;
}
.shop-featured .module2 {
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(./img/featured2.3.jpeg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0;
  position: relative;
}
.shop-featured .module3 {
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(./img/featured3.jpeg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0;
  position: relative;
}
.shop-featured .mid a {
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px 0 10px 0;
  letter-spacing: 1px;
}

/* Shop Section Responsive styles */
@media all and (max-width:1220px) {
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:350px;
    height:300px;
  }
}
@media all and (max-width:1080px) {
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:300px;
    height:250px;
  }
}
@media all and (max-width:918px) {
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:270px;
    height:220px;
  }
}
@media all and (max-width:850px) {
  .shop-featured {
    flex-flow: column nowrap;
  }
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:400px;
    height:300px;
    margin-bottom: 10px;
  }
}

@media all and (max-width:600px){
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:350px;
    height:250px;
    margin-bottom: 10px;
  }
  .shop-container {
    margin: 0px auto 20px auto;
}
}
@media all and (max-width:400px){
  .shop-featured .module1, .shop-featured .module2, .shop-featured .module3 {
    width:300px;
    height:200px;
    margin-bottom: 10px;
  }
}

/* Section: Brands */
.brand-items {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

.brand-item img {
  display: block;
  margin: auto;
  width:60%;
}

/* Brands Mobile styles */
@media all and (max-width:700px){
  .brand-items {
    display: flex;
    flex-flow: row wrap;
  }
  .brand-item {
    display: block;
    width:25vw;
    margin:auto;
  }
}

/* Contact section styling */
#section-two {
  background: var(--light-grey-color);
}
.contact-container {
  margin: 0px 200px 0px 200px;
  padding-bottom: 20px;
}
.field .input-field, textarea#comment-content.input-field-message {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}
 #address a, #address a:hover, #address > p {
  font-weight: normal;
  text-decoration: none;
  line-height: 1.6rem;
  border: none;
  color: black;
  font-size: 1rem;
}

#address #phours {
  padding-left: 60px;
}
@media all and (max-width:767px){
  #address #phours {
    padding-left: 50px;
  } 
}
#address #paddress {
  padding-left: 20px;
}
#address #pcity {
  padding-left: 60px;
}
@media all and (max-width:767px){
#address #pcity {
  padding-left: 50px;
}}
#address #ptelephone {
  padding-left: 10px;
}
#address #pemail {
  padding-left: 10px;
}

.contact-container > .contact-heading {
  text-align: center;
  display:block;
  padding-bottom: 20px;
}

#address h6 {
  display: inline-block;
  padding: 10px;
  margin:0;
  font-size: 1rem;  
  font-weight: bold;
  line-height: 1.6rem;
  vertical-align: middle;
  color: black
}
#address i {
  display: inline-block;
  font-size: 1rem;
  padding: 10px;
  margin-left:10px;
  color: var(--primary-color);
  background: #000;
  border-radius: 50%;
}

.contact-section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0px auto 0px auto;
  overflow: hidden;
}

.contact-information {
  order:0;
  width: 50vw;
}

/* Responsive contact section styles */
@media all and (max-width:1300px){
  .contact-container {
    margin: 0px 150px;
  }
}
@media all and (max-width:1200px){
  .contact-container {
    margin: 0px 50px;
  }
}
@media all and (max-width:830px){
  .google-maps {
    position: relative;
    padding-bottom: 75%; /*This is the aspect ratio*/
    height:0;
    overflow: hidden;
  }
  .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90% !important;
    height: 100% !important;
  }
}
@media all and (max-width:900px){
  .contact-container {
    margin: 0px 20px;
  }
}

@media all and (max-width:765px){
  .contact-section {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    margin:0px;
  }
  .contact-information {
    flex-grow: 0;
    flex-basis: 50%;
    width: 100%;
    width:100%;
    padding:0px 10px 0px 20px;
  }

  .contact-information #address a, .contact-information #address p, .contact-address #address a {
    font-size: 0.7rem;
  }

  #address h6 {
    font-size: 0.7rem;  
  }
  #address i, #address h6 {
    margin-left:0;
  }
  .contact-container {
    margin:0;
  }

  .contact-address .google-maps {
    margin:10px 20px 10px 20px;
  } 
  .google-maps {
    position: relative;
    padding-bottom: 75%; /*This is the aspect ratio*/
    height:0;
    overflow: hidden;
  }
  .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

@media all and (max-width:768px) {
  .google-maps {
  height: 50px;
  }
}

/* Contact form styling */
.contact-form {
  background: rgb(233, 233, 233); 
  order:1;
  width: 49vw;
  overflow: hidden;
  padding:50px 20px 10px 20px;
}
/* Style icons inside input box */
.contact-form .field .input-icons i { 
  position: absolute; 
  padding: 10px; 
  font-size: 18px;
  color: var(--dark-color); 
  min-width: 50px; 
} 
.contact-form .field .input-icons { 
  width: 100%; 
  margin: 10px 0px; 
}  
/* Contact Form Spacing */
.contact-form .field .input-field { 
  width: 100%; 
  padding: 10px 0px 10px 40px; 
  font-size:15px;
} 
.contact-form .field .input-field-message { 
  width: 100%; 
  padding: 10px 0px 150px 40px; 
  font-family: Arial, Helvetica, sans-serif;
} 
    
.contact-form input, .contact-form textarea {
      width:100%;
      padding: 10px;
      border: 1px solid #A1A1A1;
      }
.contact-form button {
			padding: 12px 50px;
			background: var(--off-black-color);
      border-radius: 5px;
			color: #fff;
      font-size:1rem;
      font-weight: bold;
      cursor: pointer;	
      float:left;
    }
.contact-form button:hover {
      background:  rgba(2, 11, 37, 0.87);
    }
		/* .contact-form #message {  padding: 0px 40px 0px 0px; } */
.contact-form #mail-status {
			padding: 10px 10px;
			width: 100%;
			display:none; 
			font-size: 1rem;
			color: rgb(40, 40, 40);
		}
.error{background-color: rgb(233, 33, 19);  margin-bottom: 10px;}
.success{background-color: #0de28d; margin-bottom: 10px;}
.g-recaptcha {
  display: block;
  margin: 10px 0px 10px 0px;
  transform:scale(0.92);
  -webkit-transform:scale(0.92);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
}	 

/* Contact form responsive styles */
@media all and (max-width:760px) {
.contact-form {
  /* flex-grow:0;
  flex-basis:50%; */
  justify-content: center;
  align-items: center;
  text-align: center;
  /* display: block; */
   width: 90%;
   margin:10px 20px 10px 20px;
}

.contact-form .field .input-field-message {
  padding: 10px 0px 100px 40px;
}
div#central {	margin: 0px;}
.contact-form input, .contact-form textarea {
  font-size: 0.4rem;
}	 
}
@media all and (max-width:1424px) {
  .g-recaptcha {
    margin: 0px;
    transform:scale(0.71);
    -webkit-transform:scale(0.71);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
  }
}
/* @media all and (min-width:900px) {
  .g-recaptcha {
    transform:scale(0.6);
    -webkit-transform:scale(0.6);
  }
  .google-maps {
    height: 580px;
  }
} */


/* Footer styling */
footer {
  border-top: 2px solid var(--secondary-color);
  background: var(--light-grey-color);
}

.footer li{
  display: inline;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--off-black-color);
  align-items: center;
  margin: 0 3rem;
  height: 3rem;  
}

.footer li.copy {
  order:0;
  font-weight: bold;
  font-size: 1.1rem;
}

.footer li.copy a {
  text-decoration: none;
  font-size:1.1rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

/* Footer Tablet styles */
@media all and (max-width:800px) {
  .footer li.copy {
    font-size: 0.75rem;
  }
  .footer li.copy a {
    text-decoration: none;
    font-size:0.75rem;
    cursor: pointer;
    border: none;
  }
}

  /* Footer Mobile styles */
@media all and (max-width:500px) {
  .footer {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    overflow: hidden;
  }
  .footer li.copy {
    font-size: 8px;
  }
  .footer li.copy a {
    text-decoration: none;
    font-size: 8px;
    cursor: pointer;
    border: none;
  }
}
@media all and (max-width:359px){
  .footer li.copy {
    font-size: 7px;
  }
  .footer li.copy a {
    font-size: 7px;
  }
}

