:root {
  --primary-color: #ce343e;
  --secondary-color: #6f953f;
  --ternary-color: #0e5981;
  --light-grey-color: #E9E9E9;
  --black-color: #141414;
  --transition-time: 0.5s;
}

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

@font-face {
  font-family: "Montserrat";
  src: url("../assets/font/Montserrat-Italic-VariableFont_wght.ttf");
  src: url("../assets/font/Montserrat-VariableFont_wght.ttf");
}

body {
  font-family: "Montserrat";
  overflow: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #141414;
}

.red {
  background: red;
}

.outline {
  outline-style: solid;
}

.white-color {
  color: #fff;
}

.black-color {
  color: var(--black-color);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.ternary-color {
  color: var(--ternary-color);
}

.bg-primary-color {
  background-color: var(--primary-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-ternary-color {
  background-color: var(--ternary-color);
}

.section-margin-y {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}

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

.semibold {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}
.m-1{
  margin-bottom: 0.5rem;
}

.bold {
  font-weight: 800;
}

.heading-text {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.header-text {
  font-size: 2.5rem;
  font-weight: 800;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w80 {
  width: 80%;
}

.container {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}

.container-full {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.border-image {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.border-button {
  border-radius: 0.9rem;
  -webkit-border-radius: 0.9rem;
  -moz-border-radius: 0.9rem;
  -ms-border-radius: 0.9rem;
  -o-border-radius: 0.9rem;
}

.flex-row-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-row-around {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

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

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

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

.gap-2{
  gap: 2rem;
}

.gap-1{
  gap: 1rem;
}

.row-gap-2{
  gap: 2rem;
}

/* nav styling */
nav{
  align-items: center;
  padding: 1rem 0;
}

nav > div > ul{
  gap: 2rem;
}

.active > a{
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: all var(--transition-time) ease;
}

.links > li > a:hover{
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* home header styling */
.home-header{
  height: 100%;
  min-height: 450px;
  background: url('./../assets/photos/globaleuu.png') no-repeat  center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-opacity{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 2;
  background: var(--primary-color);
}

.header-content{
  z-index: 5;
}

.header-content h1{
  font-size: 3rem;
}

.header-content h3{
  font-size: 1.5rem;
  font-weight: 400;
}

/* about us section */
#about-us{
  gap: 5rem;
}

#about-us .description p{
  margin-bottom: 2rem;
}

#about-us .description a{
  display: block;
  color: var(--ternary-color);
  margin-bottom: 2rem;
  font-weight: 600;
}

#about-us .description a:hover{
  text-decoration: underline;
}

/* services section */
#services .cards-container{
  gap: 3.5rem;
}

.service-card{
  width: 100%;
  background-color: var(--light-grey-color);
  padding: 1rem;
  align-items: center;
}

.service-card > img{
  display: block;
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.service-card > h3{
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-card > p{
  font-size: 0.9rem;
  font-weight: 200;
}

.service-card .link{
  cursor: pointer;
  width: 80%;
  background: var(--ternary-color);
  color: #fff;
  padding: 0.9rem 0;
  border-radius: 1rem;
  transform: translateY(30px);
}

/* why section styling */
#why-section{
  position: relative;
}

#why-section .heading-text{
  font-size: 2rem;
}

.background-controller{
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--secondary-color);
  border-radius: 150px 0 0 150px;
  opacity: 0.35;
  z-index: -1;
}

.why-boxes{
  row-gap: 20px;
}

.why-box{
  padding: 0.75rem 0 0.75rem 1.5rem;
  display: flex;
  width: 85%;
  flex-direction: row;
  align-items: center;
  border: 1px var(--secondary-color) solid;
  border-radius: 1rem;
  background: #fff;
}

.why-box > span{
  width: 60px;
}

.why-section{
  align-items: center;
  padding: 3rem;
}

.why-logo{
  width: 100%;
  display: flex;
  justify-content: end;
}

.why-logo .logo-bg{
  width: 300px;
  height: 300px;
  padding: 1rem;
  position: relative;
  border-radius: 100px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
}

.logo-bg > img{
  width: 100%;
  transform: rotate(-45deg);
}

/* contact section styling */
#contact{
  position: relative;
  margin-top: 4rem;
}

.contact-background{
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}

.contact-box{
  align-items: center;
  gap: 3.5rem;
  width: 100%;
}

.contact-box:last-child{
  padding-left: 60px;
}

.contact .text > div > span{
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-links{
  margin-top: 1.5rem;
}

.contact-links span{
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
}

.contact-links span:not(:last-child){
  margin-right: 1.5rem;
}

.contact-links a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* footer styling */
#footer {
  padding: 4rem 0 5.5rem 0;
}

.img-footer{
  height: 200px;
  width: auto;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.copyright {
  padding: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}


/* about us page styling */
.about-header{
  width: 100%;
  height: auto;
  min-height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-header::before{
  content: '';
  background: url('./../assets/photos/aboutus.png') no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.about-opacity{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 0.2;
}

.about-header > div > div{
  position: relative;
  z-index: 5;
  font-weight: 600;
}

#working-hours{
  padding: 2rem 0 4rem;
  background: var(--light-grey-color);
}

.heading-wh{
  font-size: 1.25rem;
}

.weekdays{
  width: 60%;
}

.weekend{
  width: 35%;
  border-left: 1px solid var(--black-color);
  padding-left: 2rem;
}

.hours-week{
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.heading-wh{
  margin-bottom: 1.5rem;
}

/* showroom page styling */
.shr-header{
  width: 100%;
  height: auto;
  min-height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shr-header::before{
  content: '';
  background: url('./../assets/photos/globalbgv2.jpg') no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.shr-header > div > div{
  position: relative;
  font-weight: 600;
}

.shr-image{
  position: absolute;
  right: 0;
  bottom: 0;
}

.shr-image-doms{
  top: 0;
}

.location-box{
  width: 100%;
}

.locations-container, .representations-container{
  gap: 2rem
}

.representations{
  margin-top: 3rem;
}

.representations-container{
  margin-top: 2rem;
}

.location-title{
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.location-content{
  font-size: 0.9rem;
}

.subheading-text{
  font-size: 1.25rem;
}

.package-box{
  background: var(--light-grey-color);
  padding: 2rem 1rem;
  min-height: 260px;
  align-items: center;
  justify-content: start;
  text-align: center;
}

.package-box .title{
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0.75rem 0 1rem 0;
}

.package-box .price{
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0.75rem 0 1rem 0;
}

.package-price{
  color: var(--primary-color);
}

.partner-images{
  display: flex;
  background: var(--light-grey-color);
  padding: 3rem 0 4rem 0;
}

.partner-images img{
  height: 150px;
  width: auto;
}

.partner-img-wrapper{
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.partner-img-wrapper > img{
  width: 100%;
  height: auto;
}