/** Designed by xantec Song Teck Kang **/
@font-face {
	font-family: "SourceSans3";
	src: url('fonts/SourceSans3/49362facc45e3191a3bec040c31f6dec.woff') format('woff'),
       url('fonts/SourceSans3/49362facc45e3191a3bec040c31f6dec.woff2') format('woff2'), url('fonts/SourceSans3/SourceSans3-Regular.ttf');
	src: local('SourceSans3-Regular'), url('fonts/SourceSans3/SourceSans3-Regular.ttf') format('ttf'), url('fonts/SourceSans3/SourceSans3-Regular.ttf') format('truetype');
	font-style: initial;
	font-weight: initial;
	font-display: swap;
}
@font-face {
	font-family: "SourceSans3 Bold";
	src: url('fonts/SourceSans3/1f4df2cbda15523de6df06e5fbe396f2.woff') format('woff'),
       url('fonts/SourceSans3/1f4df2cbda15523de6df06e5fbe396f2.woff2') format('woff2'), url('fonts/SourceSans3/SourceSans3-Regular.ttf');
	src: local('SourceSans3-Bold'), url('fonts/SourceSans3/SourceSans3-Bold.ttf') format('ttf'), url('fonts/SourceSans3/SourceSans3-Bold.ttf') format('truetype');
	font-style: initial;
	font-weight: initial;
	font-display: swap;
}
@font-face {
	font-family: "Golden Hopes";
	src: url('fonts/25ad17996805495ee069542169e4504f.woff') format('woff'),
       url('fonts/25ad17996805495ee069542169e4504f.woff2') format('woff2'), url('fonts/Golden Hopes.otf');
	src: local('Golden Hopes'), url('fonts/Golden Hopes.otf') format('otf'), url('fonts/Golden Hopes.otf') format('opentype');
	font-style: initial;
	font-weight: initial;
	font-display: swap;
}
@font-face {
	font-family: "Bodoni Moda";
	src: url('fonts/BodoniModa/f31c2837aee8472712022432025aed45.woff') format('woff'),
       url('fonts/BodoniModa/f31c2837aee8472712022432025aed45.woff2') format('woff2'), url('fonts/BodoniModa/BodoniModa_9pt-SemiBold.ttf');
	src: local('BodoniModa_9pt-SemiBold.ttf'), url('fonts/BodoniModa/BodoniModa_9pt-SemiBold.ttf') format('ttf'), url('fonts/BodoniModa/BodoniModa_9pt-SemiBold.ttf') format('truetype');
	font-style: initial;
	font-weight: initial;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans SC";
	src: url('fonts/Noto Sans SC/6a6a989df68893069a7dc19bc4e9f6f2.woff') format('woff'),
       url('fonts/Noto Sans SC/6a6a989df68893069a7dc19bc4e9f6f2.woff2') format('woff2'), url('fonts/Noto Sans SC/BodoniModa_9pt-SemiBold.ttf');
	src: local('6a6a989df68893069a7dc19bc4e9f6f2.ttf'), url('fonts/Noto Sans SC/6a6a989df68893069a7dc19bc4e9f6f2.ttf') format('ttf'), url('fonts/Noto Sans SC/6a6a989df68893069a7dc19bc4e9f6f2.ttf') format('truetype');
	font-style: initial;
	font-weight: initial;
	font-display: swap;
}

:root {
  --primary: #025EA9;
  --secondary: #00B6B5;
  --text-dark: #4d4d4f;
  --text-light: #ffffff;
  --gray-bg: #f5f5f5;
  --font-main: "SourceSans3", sans-serif;
  --font-bold: "SourceSans3 Bold", sans-serif;
  --font-special: "Golden Hopes", sans-serif;
  --font-special1: "Bodoni Moda", sans-serif;
  --font-body: "Noto Sans SC", sans-serif;
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Modern Styles Refinement */

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}
header nav a {font-family: var(--font-bold)!important;}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(10, 47, 150, 0.85), rgba(33, 173, 171, 0.8)), url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  /* Modern slant */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-bold)!important;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-bold);
}

/* About */
.about {
  padding: 100px 0 40px;
  text-align: center;
  background: white;
  position: relative;
}

.about .container:before {
	content: '';
	display: block;
	background: url(images/pattern1.png) no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	width: 700px;
	height: 600px;
	opacity: .35;
	top: 0;
	right: 0;
}

.about h2 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: var(--font-bold)!important;
}

#about .container h2 + p  {
	font-size:4rem;line-height:5rem;font-weight: 700;color:var(--primary);font-family: var(--font-special1);
}
#about .container h2 + p b {
	font-size: 6rem;
    color: var(--text-dark);
    font-weight: 700 !important;
}
#about .container h2 + p + p  {
	font-size:1.5rem;font-weight: 500;color: var(--text-dark);margin-bottom: 10px;
}
#about .container h2 + p + p + p {
	font-size:1.5rem;font-weight: 700;color:var(--secondary);font-family: var(--font-bold);
}


.about-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 0.875rem;
  color: #555;
  font-family: var(--font-body)!important;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.vm-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vm-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.vm-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about .about-data {
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
	gap: 20px 20px;
	position: relative;
}
.about .about-data:after {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(2, 94, 169,1) 30%, rgba(2, 94, 169, 1) 70%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    margin: 10px 0;
    position: absolute;
    top: calc(50% - 70px);
}
.about .about-data > div {
	flex: 0 0 calc(25% - 20px);
	position: relative;
	margin-bottom: 80px;
}
.about .about-data > div h3 {
	font-size: 5rem;
    font-family: var(--font-bold);
    color: var(--primary);
}
.about .about-data > div p:not(.description) {
	font-size: 1rem;
    color: #555;
	line-height: 1.2;
	display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 43px;
	font-family: var(--font-body)!important;
}
.about .about-data > div.data-item {z-index: 2;}
.about .about-data > div.data-item > div {
	max-width: 250px;
    margin: 0 auto;
    position: relative;
	height: calc(128px - 30px);
}
.about .about-data > div span {
	position: absolute;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-bold);
}
.about .about-data > div span.prev {
	left: 0;
}
.about .about-data > div span.suffix {
	right: 0;
	bottom: 0;
}
.about .about-data > div span.suffix.block {
	left: 0;
	bottom: -25px;
	text-align: center;
}
.about .about-data > div span.suffix.year {
	transform: translateX(-30px);
	-webkit-transform: translateX(-30px);
}
.about .about-data > div p.description {
	font-size: .8rem;
	font-family: var(--font-body);
    color: var(--text-dark);
	line-height: 1.2;
	margin: 0 auto;
    margin-top: 15px;
    max-width: 220px;
}
.about .about-data > div.lines {
	position: absolute;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    top: -60px;
	z-index: 1;
}
.about .about-data > div.lines > div {
	display: block !important;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 94, 169, 1) 30%, rgba(2, 94, 169, 1) 70%, transparent 100%);
    width: 2px;
    height: 80%;
    top: 17%;
    margin-left: -10px;
    left: 25%;
    position: absolute;
}
.about .about-data > div.lines > div:nth-child(2) {left: 50%;}
.about .about-data > div.lines > div:nth-child(3) {left: 75%;}

/* Products */
.products-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: var(--font-bold)!important;
}

.product-list {
	display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}

.product-item {
  display: flex;
  align-items: center;
  background: white;
  margin-bottom: 30px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.03);
  flex: 0 0 calc(50% - 20px);
  align-items: flex-start;
  margin-bottom: 0 !important;
  overflow: hidden;
  position: relative;
}

.product-item:after {
	content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
	-webkit-transform: translate(-50%, -50%) rotate(-20deg);
    width: 200%;
    height: 180%;
    background-image: conic-gradient(var(--secondary) 0deg, var(--secondary) 90deg, transparent 130deg, transparent 180deg, var(--primary) 180deg, var(--primary) 270deg, transparent 310deg, transparent 360deg);
    transition: transform 2s;
    z-index: -1;
}

.product-item:hover:after {
	transform: translate(-50%, -50%) rotate(-100deg);
	-webkit-transform: translate(-50%, -50%) rotate(-100deg);
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item:nth-child(even) {
  flex-direction: row-reverse;
}

.product-content {
  flex: 1;
  padding: 40px;
    background: #fff;
    margin: 1px;
    z-index: 2;
	height: calc(100% - 2px);
}

.product-image {
  flex: 1;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: var(--font-bold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.product-content p {
  margin-bottom: 25px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.product-content p.subTitle {
	font-size: 1.5rem;
	line-height: 1.2;
	display: block;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-bold);
	margin-bottom: 15px!important;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(33, 173, 171, 0.3);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: var(--font-bold);
  margin-bottom: 10px!important;
}

.btn:hover {
  background: var(--primary);
  box-shadow: 0 6px 15px rgba(10, 47, 150, 0.4);
}

.product-item .product-content a.btn:not(:last-child) {
	background: var(--primary);
}

.product-item .product-content a.btn.btn-green {
	background: var(--secondary);
}

.product-item .product-content a.btn.btn-green:hover {
	background: var(--primary);
}

.product-item .product-content a.btn + a.btn {
	margin-left: 10px;
}

.product-item .product-content a.btn + a.btn + a.btn {
	margin-left: 0;
}

.product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) {
	display: block;
    width: fit-content;
}

.product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) + a.btn {
	margin-left: 0!important;
}

.product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) + a.btn + a.btn {
	margin-left: 10px!important;
}


/* Contact */
.contact {
  padding: 100px 0;
/*  background: linear-gradient(135deg, #0a2f96 0%, #051a5c 100%); */
  background: linear-gradient(135deg, rgba(10, 47, 150, 0.85) 50%, rgba(33, 173, 171, 0.8) 100%);
  color: white;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIj48cGF0aCBkPSJNMCAwaDQwdjQwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTAgMjBoMjB2MjBIMHoiLz48L3N2Zz4=');
  /* Subtle texture */
  opacity: 0.3;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
      max-width: 1260px;
}

.contact-container:after {
	content: '';
    display: block !important;
    background: url(images/pattern1.png) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 700px;
    height: 600px;
    z-index: -1;
    transform: scale(-1, -1);
    bottom: 225px;
    right: -200px;
    opacity: .5;
}

.contact-info-block h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-align: center;
    color: #fff;
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 30px;
    font-family: var(--font-bold) !important;
}

.contact-info-block h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  min-width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: white;
  color: var(--primary);
}

/* Footer */
footer {
  background: #051a5c;
  color: #8fa0c9;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

header a.mobile-toggleButton {display: none!important; flex: 0 0 0!important;}

@media only screen and (max-width: 1024px) {
	.contact-container {
		max-width: calc(100% - 50px);
	}
	.product-list {margin-right: -20px!important;}
	.product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) + a.btn + a.btn {margin-left: 0px!important;}
}

@media only screen and (max-width: 768px) {
   body {overflow-x: hidden;}
   header a.mobile-toggleButton {
	   display: flex!important; flex: 0 0 58px!important;
	   width: 58px;
	   height: 58px;
	   align-items: center;
       justify-content: center;}
	header a.mobile-toggleButton span {
	   display: flex!important; flex: 0 0 58px!important;
	   width: 58px;
	   height: 2px;
	   justify-content: center;
	align-items: center;
    background: rgba(0, 0, 0, 0.51);
    padding: 0;
    position: relative;}
   header a.mobile-toggleButton span:before {
	content: '';
    display: inline-flex !important;
    height: 1.5px;
    width: 100%;
    flex: 0 0 100%;
    right: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.51);
    margin-top: -24px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
   }
   header a.mobile-toggleButton span:after {
	content: '';
    display: inline-flex !important;
    height: 1.5px;
    width: 100%;
    flex: 0 0 100%;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.51);
    margin-bottom: -24px;
   }
   header nav {display: none!important;}
   body.mobile a.mobile-toggleButton span {background: transparent!important;}
   body.mobile a.mobile-toggleButton span:before {
	transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
	margin-top: -2px;
   }
   body.mobile a.mobile-toggleButton span:after {
	transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
	margin-bottom: 0px;
   }
   body.mobile header nav {
	display: flex !important;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px;
    background: #fff;
   }
   body.mobile header nav ul {
	flex-wrap: wrap;
    flex-direction: column; 
   }
	
  .hero h1 {
    font-size: 2.5rem;
  }

  .vision-mission,
  .contact-container,
  .product-item,
  .product-item:nth-child(even) {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .product-image {
    height: 200px;
  }

  .nav ul {
    gap: 15px;
    font-size: 0.8rem;
  }

  .contact-container {
    padding: 30px;
  }
  
  .about .container:before {
	top: -30px;
    right: -40px;
  }
  .about .about-data > div {
	 flex: 0 0 calc(50% - 20px);
	 margin-bottom: 70px;
  }
  .about .about-data:after {
	background: linear-gradient(to bottom, transparent 0%, rgba(2, 94, 169, 1) 30%, rgba(2, 94, 169, 1) 70%, transparent 100%);
    width: 2px;
    height: 100%;
    top: -40px;
    left: 49%;
  }
  .about .about-data > div.lines > div {
	background: linear-gradient(to right, transparent 0%, rgba(2, 94, 169, 1) 30%, rgba(2, 94, 169, 1) 70%, transparent 100%);  
	width: calc(100% - 0px);
    height: 2px;
    left: 0;
	top: 25%;
    margin: 0;
  }
  .about .about-data > div.lines > div:nth-child(2) {
	  left: initial!important;
	  top: 52%;
  }
  .about .about-data > div.lines > div:nth-child(3) {
	  left: initial!important;
	  top: 75%;
  }
  #about .container h2 + p b {
	    font-size: 6rem;
        margin-bottom: 0;
        line-height: 1.1;
  }
  #about .container h2 + p {margin-bottom: 15px;}
  
  .product-item {flex: 0 0 calc(100% - 20px);}
  .product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) + a.btn + a.btn {margin-left: 10px!important;}
  
  .contact-container {position: relative!important; padding: 60px 36px;}
  .contact-container:after {
	top: -100px !important;
    bottom: initial !important;
    right: -270px;
  }
  header nav a {font-size: 1.5rem!important;}
}

@media only screen and (max-width: 600px) {
	.hero {background-position: right center;}
	body.mobile header nav {padding: 100px 40px;}
	
	.hero h1 {font-size: 36px; line-height: 1.2;}
	.hero p {line-height: 1.3;    max-width: 260px;}
	
	.about .container:before {
		top: -80px;
        right: -200px;
        width: 600px;
        height: 600px;
	}
	#about .container h2 + p  {
		font-size: 38px!important;
		line-height: 1.2!important;
		margin-bottom: 15px;
	}
	#about .container h2 + p + p {
		line-height: 1.3!important;
	}
	#about .container h2 + p + p + p {
		line-height: 1.2!important;
		margin-bottom: 15px;
	}
	#about .container h2 + p b {
		font-size: 4rem;
        line-height: 1;
        margin-bottom: 0;
        transform: translateY(-7px);
        display: block;
	}
	
	.about .about-data > div.data-item {margin-bottom: 40px;}
	.about .about-data > div.data-item:nth-child(even) {transform: translateX(10px);}
	.about .about-data > div.data-item > div {
		max-width: 150px;
		height: calc(98px - 30px);}
	.about .about-data > div span.prev {left: 7px;}
	.about .about-data > div h3 {font-size: 42px; transform: translateY(15px);}
	.about .about-data > div p:not(.description) {
		font-size: 14px;
		min-height: 68px;
    max-width: 120px;
    margin: 0 auto;
	}
	.about .about-data > div p.description {font-size: 12px;}
	.about .about-data > div span.suffix:not(.block) {right: -7px;}
	.about .about-data > div span.suffix.year {
		transform: translateX(-15px);
		-webkit-transform: translateX(-15px);
	}
	.about .about-data > div.lines > div {top: 25%;}
	.about .about-data > div.lines > div:nth-child(2) {
		  top: 50%;
	  }
	.about .about-data > div p:not(.description) {
		min-height: initial!important;
	}
	.about .about-data > div.data-item:nth-child(6) p:not(.description) {min-height: 68px!important;}
	.products-section, .contact {padding: 60px 0;}
	.product-item .product-content a.btn:last-child {margin-left: 0!important;}
	.product-item.moreBtns .product-content a.btn:not(:last-child):not(.btn-green) + a.btn + a.btn {margin-left: 0!important;}
	.contact-info-block h3::after {
		left: 0;
		right: 0;
		margin: 7px auto 0;
	}
	.product-content h3 {font-size: 42px!important;}
	.product-content p.subTitle {line-height: 1.1!important;}
	.product-content p {font-size: 14px;}
	.product-content {padding: 30px 25px;}
	.product-item:after {z-index: initial!important;}
	.product-item .btn {min-width: 220px!important; text-align: center!important;}
	.contact-container {gap: 20px;}
	.contact-container:after {
		top: -200px !important;
        bottom: initial !important;
        right: -360px;
	}
	.contact-container {padding: 40px 30px;}
	nav a::after {width: 100%!important;
	    height: 3px;
		bottom: -6px; display: none!important;}
	header nav a {font-size: 2rem!important;}
	footer .container {padding: 0 16px;}
}

footer a {display: none!important;}