﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {
    background-color: #F2F2F2;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


:root {
  /* Colors */
  --clr-blue: #1C3D60;
  --clr-red: #C13E3B;
  --clr-gray: #58595B;
  --clr-grey: #F2F2F2;
  --clr-blk: #151515;
  --clr-white: #F5F5F5;

  /* Typography */
  --font-main: "oswald", sans-serif;
  --font-body: "montserrat", sans-serif;
  --italic: italic;
  --uppercase: uppercase;
  --capitalize: capitalize;
	
	
  /* Hero Heading */
  --hero-size: clamp(3rem, 6vw, 5rem);

  /* Section Heading */
  --heading-size: clamp(2rem, 4vw, 3.5rem);
  --heading-weight: 600;

  /* Secondary Heading */
  --subheading-size: 1.5rem;
  --subheading-weight: 500;
  --subheading-line: 1.3;

  /* Radius */
  --radius: 20px;
   --radius-lg: 30px;

  /* Shadows */
  --shadow-1:
    0 10px 30px rgba(0,0,0,.25);

  /* Container */
  --container: 1500px;

  --space-xs: 12px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;

  --padd-sm: 3%

  --transition: .3s ease;
	
}

.heading1 {
    font-family: var(--font-main);
	font-size: clamp(42px, 6vw, 70px);
	font-style: normal;
	font-weight: 500;
	line-height: 1.05; 
	text-transform: uppercase;}
.subheading {
    font-family: var(--font-body);
	font-size: clamp(18px, 2vw, 32px);
    line-height: 1.4;
    font-weight: 400;
 }
.heading-md {
        font-family: var(--font-main);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}
.heading-sm {
    font-family: var(--font-main);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.heading-xs {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #58595B;
}
.white {
    color: #fff;
}


.wid95 {width: 95%;margin: 0 auto;}
.wid90 {width: 90%;margin: 0 auto;}
.wid85 {width: 85%;margin: 0 auto;}
.wid80 {width: 80%;margin: 0 auto;}
.wid75 {width: 75%;margin: 0 auto;}

.padlr-norm { padding-left: max(4%, calc(50% - 1200px)); padding-right: max(4%, calc(50% - 1200px)); }


a.btn {
  padding: 15px 20px;
  color: #eee;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s ease-out;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
a.btn:hover {
  transform: translateY(-3px);
}
.primary-btn {
  background-color: #1C3D5F;
  color: #eee;
}
.secondary-btn {
  background-color: transparent;
  color: #eee;
  border: 1px solid #eee;
  border-radius: 30px;
    margin-top: 24px;

}
.secondary-btn:hover {
    background-color: #f0f0f0;
    color: #1C3D60;
}


/*--- HEADER STYLES ---------------------*/
.header {
    background-color: #fff;
    justify-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    z-index: 99;
    position: relative;
}
.head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(98%, 1855px);
    padding: 10px 0 5px;
}


.header-icon i {
    background-color: #58595B;
    color: #fff;
    padding: 14px 12px;
    border-radius: 40px;
    font-size: 14px;
}


.breadcrumbs {
    display: flex;
    font-size: 16px !important;
    color: #151515 !important;
    padding: 3% 0 2%;
    flex-wrap: wrap;
    align-items: center;
    letter-spacing: 0.05em;
    gap: 10px;
	font-family: var(--font-body);
}
.breadcrumbs a {
    display: inline-block;
    padding: 12px;
    color: #151515;
    font-size: 16px !important;
	font-family: var(--font-body);
}


/*---BODY--------------------------------*/

section.hero {
    padding: 0 20px;
}

.hero-text {
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 75px 0 40px;
    align-items: center;
}
.hero-lf {
    flex: 1.4;
}
.hero-rt {
    flex: 1;
    max-width: 485px;
}
.hero-rt h2 {
    margin-bottom: 25px;
}
.hero-btns {
    /* margin: 20px 0; */
    gap: 15px;
    display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.hero-btns a {
    flex: 1;
    width: 100%;
    text-align: center;
	align-content: center;
}

.swiper.mySwiper {
    border-radius: 20px;
}
.swiper {
    width: 100%;
    height: 500px;
}

  .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #444;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* background-color: #000; */
	/* filter: brightness(0.6); */
  }

.swiper-pagination-bullet {
	background: #fff!important;
}
.swiper-pagination {
    position: sticky!important;
    z-index: 99999!important;
    background-color: #ffffff38!important;
    padding: 5px!important;
    justify-self: center!important;
    border-radius: 30px!important;
}
.swiper-pagination-bullet-active {
	background: #fff!important;
}








.selling-points{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:100;
    display:flex;
    gap:10px;
}

.point{
    background:#fff;
    border-radius:10px;
    padding:18px 16px;
    min-width:110px;
    max-width: min-content;
    text-align:center;
}

.point.red{
    background:#C13E3B;
    color:#fff;
}

.point h4{
    margin-bottom:8px;
}

.point span{
    font-size:15px;
    line-height:1.4;
    color:#151515;
    font-family: var(--font-body);
}

.point.red span{
    color:#fff;
}


section.category-section {
    max-width: 1600px;
    margin: 75px auto 75px;
    padding: 0 25px;
}
.cat-text {
    display: flex;
    align-items: center;
    gap: 25px;
}
.cat-lf {
    flex: 1;
}
.cat-rt {
    flex: 1;
}

/* ABOUT SECTION */
section.about-section {
    background: linear-gradient(135deg, #1C3D60 0%, #2a5a8a 100%);
    padding: 80px 0;
    /* margin: 50px 0; */
    /* border-radius: 20px; */
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
}

.about-left {
    flex: 0 1 50%;
    color: #fff;
}

.about-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    margin-bottom: 24px;
    color: #fff;
}

.about-right {
    flex: 0 1 50%;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.about-image-lg {
    grid-row: 1 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    /* transform: scale(1.05); */
}



section.about-page-wrap {
    padding: 80px 0;
    background: #fff;
}
section.about-page-wrap .about-left {
    color: #000 !important;
}




.subhero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.subhero.sell-equip {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(/siteart/bg-sell-equip.jpg) center / cover no-repeat;
}
.subhero.about {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url(/siteart/bg-about.jpg) center / cover no-repeat;
}
.hero-bg-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-text.subpage {
    max-width: fit-content;
}




/* CONTACT SECTION */
section.page-hero {
    padding: 80px 0 40px;
    background-color: #F2F2F2;
}

.hero-contact .hero-lf {
    max-width: 900px;
}

.hero-contact h1,
.hero-contact .subheading {
    /* color: #151515; */
}

section.how-it-works-section {
    padding: 70px 0 60px;
    background-color: #1C3D60;
}

.how-it-works-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 42px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.how-step-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-title {
    font-family: var(--font-main);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: #fff;
    text-transform: none;
}

.step-desc {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.7;
}

section.contact-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.contact-card,
.contact-info-card,
.contact-map {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-card {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-head .heading-lg {
    margin-bottom: 16px;
}

.contact-card-head .body-lg {
    color: #58595B;
    max-width: 720px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #151515;
}

.contact-field span {
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #151515;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #1C3D60;
    box-shadow: 0 0 0 4px rgba(28, 61, 96, 0.08);
}

.contact-field textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit {
    width: fit-content;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: 0.02em;
    border: none;
}

.contact-side {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
}

.contact-info-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-head .heading-sm {
    margin-bottom: 12px;
}

.contact-info-head .body {
    color: #58595B;
    max-width: 520px;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--font-body);
    color: #151515;
}

.contact-item i {
    color: #1C3D60;
    font-size: 22px;
    margin-top: 3px;
    min-width: 28px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-item p {
    line-height: 1.6;
    color: #58595B;
    margin: 0;
}

.contact-map {
    min-height: 340px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.heading-lg {
    font-family: var(--font-main);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #151515;
}




/* =========================
   Team Section
   ========================= */
.team-section {
  --team-bg: #f7f7f5;
  --team-card: #ffffff;
  --team-text: #171717;
  --team-muted: #737373;
  --team-border: #e5e5e5;
  --team-accent: #171717;

  padding: 100px 24px;
  background: var(--team-bg);
  color: var(--team-text);
}
.team-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
}
.team-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  overflow: hidden;
  background: var(--team-card);
  border: 1px solid var(--team-border);
  border-radius: 24px;
  

  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.team-photo {
  aspect-ratio: 4 / 6;
  overflow: hidden;
  background: #eaeaea;
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-photo img {
  transform: scale(1.035);
}
.team-content {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.team-content h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.team-role {
  margin: 7px 0 0;
}
.team-bio {
  margin-top: 24px;
  border-top: 1px solid var(--team-border);
}
.team-bio span.subheading {
    font-size: 18px;
}
.team-bio summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}
.team-bio summary::-webkit-details-marker {
  display: none;
}
.team-bio summary:focus-visible {
  outline: 2px solid var(--team-accent);
  outline-offset: 5px;
  border-radius: 3px;
}
.team-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--team-border);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 200ms ease,
    background 200ms ease;
}
.team-bio[open] .team-icon {
  transform: rotate(45deg);
  background: var(--team-text);
  color: white;
}
.bio-content {
  padding-top: 16px;
  animation: bioReveal 250ms ease;
}
.bio-content p {
  margin: 0;
  color: var(--team-muted);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes bioReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Tablet
   ========================= */

@media (max-width: 800px) {
  .team-section {
    padding: 80px 20px;
  }

  .team-header {
    margin-bottom: 40px;
  }

  .team-grid {
    gap: 18px;
  }

  .team-content {
    padding: 22px;
  }
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 600px) {
  .team-section {
    padding: 64px 16px;
  }

  .team-header {
    margin-bottom: 32px;
  }

  .team-header h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .team-header p {
    margin-top: 18px;
    font-size: 15px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-card {
    border-radius: 16px;
  }

  .team-photo {
    aspect-ratio: 16 / 11;
  }

  .team-content {
    min-height: 100px;
    padding: 22px;
  }

  .team-content h3 {
    font-size: 21px;
  }
}

/* =========================
   Reduced motion
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-photo img,
  .team-icon {
    transition: none;
  }

  .bio-content {
    animation: none;
  }
}


/*--------FORM STYLES--------------------*/




/*-------- FOOTER STYLES ----------------*/
.footer {
    background: linear-gradient(135deg, #525252 0%, #3f3f3f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
    padding: 80px 25px;    
    z-index: 10;
    position: relative;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    /* width: 200px; */
    margin-bottom: 16px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-tagline {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}
.footer-left h2.subheading {
    padding-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}
.footer-contacts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #C13E3B;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #C13E3B;
}

.contact-btn:hover {
    background-color: transparent;
    color: #C13E3B;
}

.contact-btn i {
    font-size: 16px;
}

.copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Middle */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F2F2F2;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-person {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.contact-person strong {
    font-weight: 600;
    color: #fff;
}

.contact-person p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-person a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-person a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-address {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-address p {
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: #fff;
    color: #525252;
    transform: translateY(-4px);
}

.footer-illustration {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
}

.footer-illustration img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
    position: relative;
}

/* Category card (image, title, rounded CTA) */
.cat-wrap { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; 
    padding: 30px 0;
}
.cat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 28px;
    color: #151515;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 25px 0px;
}
.cat-media { flex: 1 0 auto; display:flex; align-items:center; justify-content:center; }
.cat-media img { width: 100%; max-width: 260px; height: 160px; object-fit: contain; display:block; }
.cat-body { display:flex; align-items:center; justify-content:space-between; gap: 12px; padding-top: 12px; }
.cat-texts { display:flex; flex-direction:column; justify-content:center; }
.cat-title { font-family: var(--font-main); font-size: clamp(16px, 2vw, 20px); font-weight:700; text-transform:uppercase; margin-bottom:6px; }
.cat-sub { font-family: var(--font-body); color: var(--clr-gray); font-size: 14px; }
.cat-cta { width:56px; height:56px; border-radius:50%; background:#D9D9D9; display:flex; align-items:center; justify-content:center; color:var(--clr-blue); box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; transition: all 0.3s ease; flex-shrink: 0; }
.cat-cta:hover { background-color: #1C3D60; color: #fff; }
.cat-cta i { font-size: clamp(16px, 2vw, 16px); }






/*---------- RESPONSIVE STYLES ----------*/





/*SMALL DESKTOP*/
@media only screen and (max-width: 1250px) {
	.cat-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-card {
        height: auto;
    }
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-photo {
        aspect-ratio: 4 / 5;
    }
    }

@media only screen and (max-width: 1050px) {
    .hero-text {
        flex-direction: column;897
        text-align: center;
        gap: 30px;
        text-align: center;
    }
    .hero-rt {
        max-width: 100%;
        place-items: center;
        text-align: center;
    }
    a.btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    .cat-cta {
        width: 45px;
        height: 45px;
    }
    .about-wrapper {
		flex-direction: column;
		gap: 40px;
	}
}


/*TABLET*/
@media only screen and (max-width: 991px) {
    .header {
        display: flex;
        align-items: center;
        padding: 0 25px;
    }
}


@media (max-width: 980px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-row {
        grid-template-columns: 1fr;
    }

    
    .how-it-works-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .footer-illustration {
        max-width: 82vw;
    }
}


@media (max-width: 880px) {
    .footer-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-middle {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.footer-right {
		align-items: flex-start;
	}
}



/*TABLET*/
@media only screen and (max-width: 767px) {
	.cat-wrap { 
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 28px;
	}
	.cat-card { padding: 24px; }
	.cat-media img { max-width: 200px; height: 140px; }
	.cat-cta { width:48px; height:48px; }
	.cat-title { font-size: 16px; }
	.cat-sub { font-size: 14px; }
		
	.about-left, .about-right {
		flex: 1 1 100%;
	}
	
	.about-left h2 {
		font-size: 28px;
	}
	
	.body-lg {
		font-size: 14px;
	}
	
	.about-images {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-image-lg {
		grid-row: auto;
	}
	
	section.about-section {
		padding: 70px max(3%, calc(50% - 600px));
	}
	
	.contact-wrapper {
		flex-direction: column;
		gap: 40px;
	}
	
	.contact-map, .contact-content {
		flex: 1 1 100%;
	}
	
	.contact-content h2 {
		font-size: 28px;
	}
	
	section.contact-section {
		padding: 50px max(3%, calc(50% - 600px));
	}

    .heading-xs {
        font-size: 15px;
    }
    .point {
        min-width: 80px;
    }
    .point span {
        font-size: 14px;
    }

    .footer-logo img {
        width: 250px;
        max-width: 100%;
    }

    .cat-text {
        flex-direction: column;
    }
    .cat-lf {
        align-self: flex-start;
    }
    .cat-lf h2 {
        margin-bottom: 0;
    }
}


@media (max-width: 680px) {
    section.page-hero {
        padding-top: 50px;
    }

    .hero-contact .hero-lf {
        max-width: 100%;
    }

    .contact-card,
    .contact-info-card,
    .contact-map {
        border-radius: 20px;
    }

    .about-images {
        gap: 10px;
    }

    .about-image {
        border-radius: 5px;
    }
}



/*MOBILE*/
@media only screen and (max-width: 480px) {

    .team-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
	.cat-wrap { 
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px 0;
	}
	.cat-card { 
		padding: 20px;
	}
	.cat-media img { 
		max-width: 180px;
		height: 120px;
	}
	.cat-cta { 
		width:44px; 
		height:44px; 
	}
	.cat-title {
		font-size: 14px;
	}
	.cat-sub {
		font-size: 12px;
	}
	.cat-cta i {
		font-size: 14px;
	}
	
	/* Contact Section Mobile */
	.contact-wrapper {
		flex-direction: column;
		gap: 30px;
	}
	
	.contact-map {
		min-height: 300px;
	}
	
	.contact-content h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.contact-content .body-lg {
		font-size: 14px;
		margin-bottom: 24px;
	}
	
	.contact-item {
		font-size: 14px;
		gap: 12px;
	}

    .swiper {
        height: 215px;
    }

    .selling-points {
        display: none;
    }
	
	.footer-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 50px max(3%, calc(50% - 600px)) 40px;
	}
	
	.footer-left {
		gap: 24px;
	}
	
	.footer-tagline {
		font-size: 24px;
	}
	
	.footer-contacts {
		gap: 12px;
	}
	
	.contact-btn {
		padding: 12px 20px;
		font-size: 13px;
	}
	
	.footer-middle {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.footer-right {
		align-items: flex-start;
		gap: 30px;
	}
	
	.footer-illustration {
		max-width: 200px;
	}
	
	.footer-title {
		font-size: 14px;
	}
	
	.footer-contact-info {
		gap: 16px;
	}
	
	.contact-person, .contact-address {
		font-size: 12px;
	}
	
	.footer-links a {
		font-size: 12px;
	}
	
	.social-icon {
		width: 44px;
		height: 44px;
		font-size: 18px;
	}

    .selling-points {
        flex-direction: column;
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }
    .point {
        padding: 14px 12px;
    }

    .head-logo img {
        width: 185px;
    }
    .header-icon i {
        display: none;
    }

    .body {
        font-size: 14px;
    }

    .contact-card {
        padding: 25px;
    }
    .contact-item {
        flex-direction: column;
    }
    .contact-wrapper {
        padding: inherit;
    }
}