
/* google font link  */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* font awesome cdn link  */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');

:root{
   --main-color:#ffffff;
   --primary-color:#001F52;
   --secondary_color:#8888883a;
   --paragraph_text:#000000;
   --white_text:#ffffff;
   --body_background: rgb(255, 255, 255);
   --black:#000000;
   --white:#ffffff;
   --hover_color:#3d87ff;
   --background_black_opacity:#000000b7;
   --dark_black:#050505;

   --border:.1rem solid rgba(0,0,0,.2);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
   --panel-color: #404040;
   --paragraph_text-size: 15px;
   --small_screen_size: 25px;
   --menu_size: 16px;

   /* Heading Sizes for desktop and mobile */
   --h1_desktop: clamp(2rem, 5vw, 3.5rem);
   --h2_desktop: clamp(1.75rem, 4vw, 3rem);
   --h3_desktop: clamp(1.5rem, 3vw, 2.5rem);
   --h4_desktop: clamp(1.25rem, 2.5vw, 2rem);
   --h5_desktop: clamp(1.125rem, 2vw, 1.75rem);
   --h6_desktop: clamp(1rem, 1.5vw, 1.5rem);

   --h1_mobile: 2rem;
   --h2_mobile: 1.75rem;
   --h3_mobile: 1.5rem;
   --h3_mobile: 1.25rem;

   /* Text and paragraph sizes for desktop and mobile */
   --paragraph_text_desktop: 1.125rem;
   --paragraph_text_mobile: 0.875rem;
   --pText_line_height: 1.6;

   --scalable_body_texts: clamp(1rem, 2vw, 1.5rem);

}

*{
   font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
   margin: 0; padding: 0;
   box-sizing: border-box;
   outline: none; border: none;
   text-decoration: none;
   scrollbar-color: var(--main-color) var(--black);
   scrollbar-width: thin;
   line-height: 20px;
   text-align: justify;
}

html{
   font-size: 90%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   transition: 0.5s;
}

body{
   height: 100vh;
   width: 100vw;
   background: var(--body_background);
   padding-bottom: 0rem;
}

/* Carousel container */
/* Base */


.pd-carousel {
  width: 100vw;
  height: 68vh;
  background: #111;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
}

/* Inner track (horizontal scroll) */
.pd-carousel__inner {
  display: flex;
  flex-direction: row;   /* ensure horizontal */
  gap: 20px;
  overflow-x: auto;      /* scroll horizontally */
  overflow-y: hidden;    /* block vertical */
  scroll-snap-type: x mandatory;
  padding: 20px;
  width: 80%;
  height: 100%;
  /* background: white; */
}
.pd-carousel__inner::-webkit-scrollbar {
    display: none; 
}

/* Cards */
.pd-mini-card {
  flex: 0 0 auto;         /* don’t shrink */
  width: 350px;
  height: 450px;
  background: #222;
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 20px;
  scroll-snap-align: start;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  gap: 1rem;
  transition: transform 0.3s;
}

.pd-mini-card:hover {
  transform: scale(1.05);
}

/* Buttons */
.pd-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;              /* 🔥 ensure always on top */
  pointer-events: auto;      /* make sure clicks work */ opacity: 1;
  transition: opacity 0.3s, background 0.3s;
}

.pd-btn[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}
.pd-btn:hover { background: rgba(255,255,255,0.4); }

.pd-btn--left { left: 30px; }
.pd-btn--right { right: 50px; }

#pd-mini-card1{
   background: url("/benz G1320 (2).jpg");
   background-size: cover;
}

#pd-mini-card2{
   background: url("/ford\ f150-.jpg");
   background-size: cover;
}

#pd-mini-card3{
   background: url("/tundra.jpg");
   background-size: cover;
}

#pd-mini-card4{
   background: url("/corolla-.jpg");
   background-size: cover;
}

#pd-mini-card5{
   background: url("/Lexus\ Ix570.jpg");
   background-size: cover;
}

#pd-mini-card6{
   background: url("/jeep\ 1.jpg");
   background-size: cover;
}

#pd-mini-card7{
   background: url("/ford\ fiesta\ 2014---.jpg");
   background-size: cover;
}

#pd-mini-card8{
   background: url("/roa100119fea-fiesta-02-1572533441.avif");
   background-size: cover;
}

#pd-mini-card9{
   background: url("/chevrolet.png");
   background-size: cover;
}

#pd-mini-card10{
   background: url("/land\ cruiser.avif");
   background-size: cover;
}

.pd-mini-card h2{
   color: var(--white_text);
}

.pd-mini-card a.gen_btn{
   background: var(--hover_color);
}

/* Responsive */
/* Small phones */
@media (max-width: 480px) {
   .pd-carousel {
      height: 50vh;
   }

  .pd-mini-card {
      width: 100%;
      height: 350px;
      align-items: center;
      gap: 1rem;
      padding: 20px 10px;
  }

   .pd-btn {
      position: absolute;
      top: 43%;
      /* background: red; */
   }

   .pd-btn--left { left: 0px; }
   .pd-btn--right { right: 0px; }

   .pd-mini-card a.gen_btn{
      width: 100%;
      font-size: small;
      padding: 10px;
      background: var(--hover_color);
   }

}


/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .pd-mini-card {
    width: 45%;
    height: 300px;
  }
}

/* Small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .pd-mini-card {
    width: 30%;
    height: 320px;
  }
}


/* Container */
.logo-carousel {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 300px;
   overflow: hidden;
   background: #111; /* optional background */
   padding: 20px 0;
}

/* Track */
.logo-track {
   display: flex;
   align-items: center;
   justify-content: center;
   width: calc(250px * 12); /* image width * number of logos */
   animation: scroll 20s linear infinite;
}

/* Logos */
.logo-track img {
   width: 20%;
   margin: 0 30px;
   object-fit: contain;
   transition: transform 0.3s;
}

.logo-track img:hover {
  transform: scale(1.1);
}

/* Keyframes */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* move half (because we duplicated) */
}


h1, h2, h3{
   text-transform: uppercase;
   text-align: left;
   line-height: 40px;
   color: var(--dark_black);
   font-weight: 300px;
}

h1{
   font-size: var(--h1_desktop);
   text-align: left;
}

h2{
   font-size: var(--h2_desktop);
}

h3{
   font-size: var(--h3_desktop);
}

a{
   color: var(--primary-color);
}

p{
   font-size: var(--scalable_body_texts);
   line-height: var(--pText_line_height);
}

/* #device_view{
   display: none;
} */

#mobile_view{
   display: block;
}

.mobile_menu{
   display: none;
}

.menu_icon{
   display: none;
}

#logoOnScroll_mobile{
   display: none;
}

body .wrapper{
   width: 100%;
   height: auto;
   /* background: var(--black); */
   display: flex;
   flex-direction: column;
   /* justify-content: center; */
   align-items: center;
   position: relative;
}

body .wrapper header{
   width: 100%;
   height: auto;
   display: flex;
   flex-direction: column;
   position: sticky;
   top: 0;
   z-index: 1000;
   /* padding: 0px 50px; */
   background: var(--white);
}

body .wrapper header > div{
   /* height: 200px; */
   padding: 20px 215px;
}

body .wrapper header > div:first-child{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   color: var(--primary-color);
   border: var(--border);
}

body .wrapper header > div:first-child .media_icons{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 1.6rem;
   font-size: x-large;
}

body .wrapper header > div:first-child .media_icons a ion-icon{
   color: var(--dark_black);
}

body .wrapper header > div:first-child .media_icons a ion-icon:hover{
   color: var(--hover_color);
}

body .wrapper header > div:last-child{
   display: flex;
   flex-direction: row;
   align-items: center;
   /* justify-content: space-between; */
   gap: 8rem;
   color: var(--dark_black);
   border: var(--border);
}


body .wrapper header > div:last-child img{
   width: 5%;
   opacity: 0;
   /* box-shadow: var(--box-shadow); */
}

body .wrapper header > div:last-child .menu{
   display: flex;
   flex-direction: row;
   gap: 2rem;
   border-left: 2px solid black;
   padding-left: 20px;
}

body .wrapper header > div:last-child .menu a{
   color: var(--dark_black);
   font-weight: 700;
   font-size: var(--h3_mobile);
   letter-spacing: 1px;
}

body .wrapper header > div:last-child .menu a.active{
   color: var(--hover_color);
}

body .wrapper main{
   width: 80%;
   height: 550px;
   background: url('pexels-photo-120049.webp');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   color: var(--white_text);
   padding: 50px 215px;
   font-family: 'Segoe UI', ;
}

body .wrapper main::before{
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--background_black_opacity);
   z-index: 1;
}

body .wrapper main div{
   position: absolute;
   z-index: 2;
}

body .wrapper main a.bookmark{
   z-index: 100;
   position: absolute;
   bottom: 10%;
   right: 10%;
   color: white;
   border: 2px solid white;
   padding: 20px;
}

body .wrapper main div h1{
   line-height: 40px;
   color: var(--white);
   font-size: var(--h1_desktop);
   margin-top: 20px;
}

body .wrapper main div h1 span{
   font-size: var(--h3_desktop);
}

body .wrapper main div:first-child{
   width: 70%;
   display: flex;
   flex-direction: column;
   /* align-items: center; */
   gap: 1.5rem;
}

body .wrapper main div:first-child p{
   width: 50%;
   font-size: var(--scalable_body_texts);
   line-height: var(--pText_line_height);
   /* font-weight: lighter; */
}

.picture_slides{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 50px 215px;
   background: var(--dark_black);
   position: relative;
}

/* sliding pictures column */
.slider{
   height: 300px;
   width: 600px;
   border-radius: 10px;
   overflow: hidden;
   background: var(--primary-color);
   
}

.slides{
   width: 500%;
   height: 100px;
   display: flex;
   /* overflow: hidden; */
}

.slides input{
   display: none;
}

.slide{
   width: 20%;
   transition: 2s;
}

.slide img{
   height: 300px;
   width: 600px;
   object-fit: cover;
   /* aspect-ratio: ; */
   position: absolute;
   /* left: 0; */
}

.navigation-manual{
   position: absolute;
   bottom: 5%;
   right: 24%;
   width: 800px;
   display: flex;
   justify-content: center;
   margin-top: -40px;
}

.manual-btn{
   border: 2px solid var(--white);;
   border-radius: 10px;
   cursor: pointer;
   padding: 5px;
   transition: 1s;
}

.manual-btn:not(:last-child){
   margin-right: -40px;
}

.manual-btn:hover{
   background: var(--white);
}

#radio1:checked ~ .first{
   margin-left: 0;
}

#radio2:checked ~ .first{
   margin-left: -20%;
}

#radio3:checked ~ .first{
   margin-left: -40%;
}

#radio4:checked ~ .first{
   margin-left: -60%;
}

#radio5:checked ~ .first{
   margin-left: -80%;
}

#radio6:checked ~ .first{
   margin-left: -100%;
}

#radio7:checked ~ .first{
   margin-left: -120%;
}

#radio8:checked ~ .first{
   margin-left: -140%;
}

#radio9:checked ~ .first{
   margin-left: -160%;
}

#radio10:checked ~ .first{
   margin-left: -180%;
}

/* css for automatic navigation */

.navigation-auto{
   position: absolute;
   bottom: 5%;
   right: 24%;
   display: flex;
   justify-content: center;
   width: 800px;
   margin-top: -40px;
}

.navigation-auto div{
   border: 2px solid var(--white);
   padding: 5px;
   border-radius: 10px;
   transition: 1s;
}

.navigation-auto div:not(:last-child){
   margin-right: -40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
   background: var(--white);
}

#radio2:checked ~ .navigation-auto .auto-btn2{
   background: var(--white);
}

#radio3:checked ~ .navigation-auto .auto-btn3{
   background: var(--white);
}

#radio4:checked ~ .navigation-auto .auto-btn4{
   background: var(--white);
}

#radio5:checked ~ .navigation-auto .auto-btn5{
   background: var(--white);
}

#radio6:checked ~ .navigation-auto .auto-btn6{
   background: var(--white);
}

#radio7:checked ~ .navigation-auto .auto-btn7{
   background: var(--white);
}

#radio8:checked ~ .navigation-auto .auto-btn8{
   background: var(--white);
}

#radio9:checked ~ .navigation-auto .auto-btn9{
   background: var(--white);
}

#radio10:checked ~ .navigation-auto .auto-btn10{
   background: var(--white);
}
/* end of scroll - top  */

body .wrapper .testimonies{
   width: 100%;
   height: 400px;
   display: flex;
   align-items: center;
   justify-content: center;
}

body .wrapper .testimonies .container{
   width: 70%;
   height: 70%;
   position: relative;
}

.imges{
   position: absolute;
   top: 40%;
   bottom: 40%;
   right: 30%;
   left: 15%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 70%;
}

.imges img{
   width: 100%;
   
   position: absolute;
   color: white;
   opacity: 0;
   transition: 0.4s;
   
}

img.activate{
   opacity: 1;
}

body .wrapper section div h3{
   position: relative;
   font-size: var(--h3_desktop);
   height: 50px;
}

body .wrapper section div h3::after{
   position: absolute;
   content: "";
   left: 0%;
   top: 150%;
   width: 10%;
   height: 3px;
   background: rgba(0, 0, 0, 0.644);
}

body .wrapper div.otherpartners{
   width: 70%;
   height: 100%;
   background: var(--secondary_color);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4rem;
   /* justify-content: center; */
   padding: 40px 215px;

}

body .wrapper div.otherpartners > div{
   width: 100%;
   height: 100%;
   /* background: black; */
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 2rem;
}

body .wrapper div.otherpartners > div p{
   text-align: center;
}

body .wrapper div.otherpartners > div > div > .partner_img2{
   background: url("https://brunswick.scene7.com/is/image/brunswick/Location_Hero_03?$H-2000-2000$&amp;fit=constrain&amp;fmt=webp-alpha");
   background-size: cover;
}

body .wrapper div.otherpartners > div > div > .partner_img1{
   background: url("Volvo-EX90-carousel-960x1178.avif");
   background-size: cover;
}



body .wrapper .testimonies .container .buttons{
   width: 100%;
   height: 100%;
   background: #000000;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

body .wrapper .testimonies .container .buttons p{
   color: white;
   font-size: xx-large;
   width: 40px;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
}

.toTop{
   width: 120px;
   height: 50px;
   position: fixed;
   z-index: 105;
   bottom: 100px;
   right: 0;
   cursor: pointer;
   pointer-events: none;
   opacity: 0;
   background: var(--hover_color);
   transition: 0.5s;
   display: flex;
   align-items: center;
   justify-content: center;
   transform:translateX(1200px);
}

.toTop img{
   width: 100%;
   /* background: #001F52; */
}

.toTop.showscroll{
   opacity: 1;
   pointer-events: auto;
   background: var(--hover_color);
   transform:translateX(0px);
}

#logoOnScroll{
   width: 10%;
   border-radius: 50%;
   opacity: 1;
   position: absolute;
   top: 50%;
   transition: 0.2s ease-in-out;
}

#logoOnScroll.sizelogo{
   width: 5%;
}

body .wrapper .testimonies .container .buttons p:hover{
   color: black;
   background: var(--hover_color);
}

body .wrapper .testimonies .container .buttons p ion-icon{
   font-size: xx-large;
}

body .wrapper section.our_mission{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   margin: 70px 100px;
}

body .wrapper section.two{
   flex-direction: row-reverse;
}

body .wrapper section img{
   width: 40%;
   border-radius: 5px;
}

body .wrapper section div{
   width: 40%;
   display: flex;
   flex-direction: column;
   gap: 4rem;
   line-height: 20px;
}

body .wrapper section div h3{
   /* font-size: var(--h2_desktop); */
   color: var(--primary-color);
}

body .wrapper section div p{
   font-size: var(--scalable_body_texts);
}

body .wrapper section div a{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-evenly;
   transition: 0.2s ease-in-out;
}

body .wrapper section div a ion-icon{
   font-size: x-large;
}



body .wrapper section.cards{
   background: url('Aluminum-Car-Parts-Manufacturer.png');
   height: auto;
   color: var(--white_text);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap:3rem;
   width: 100%;
   position:relative;
   z-index: 1;
   padding: 20px;
}

body .wrapper section.cards::before{
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.881);
   z-index: -4;
   /* isolation: isolate; */
}

body .wrapper section.cards h2{
   font-size: var(--h2_desktop);
   color: white;
}

body .wrapper section.cards > div{
   display: flex;
   flex-direction: row;
   justify-content: center;
   /* width: 80%; */
   height: 100%;
   border-radius: 5px 5px 0 0;
   overflow-y: auto;
   padding: 0 100px 0 100px;
}

body .wrapper section.cards > div > div{
   border-radius: 5px;
   font-size: var(--heading3_font-size);
   gap: 1rem;
   background: var(--dark_black);
   border: 2px solid white;
   display: flex;
   height: 500px;
   width: 1000px;
   justify-content: space-between;   
}


body .wrapper section.cards > div > div h3{
   font-size: var(--heading3_font-size);
   text-transform: uppercase;
   padding: 0 20px;
   line-height: 30px;
   color: var(--white);
}

body .wrapper section.cards > div > div p{
   color: var(--black);
   font-size: var(--paragraph_text-size);
   padding: 0 20px;
   color: rgb(194, 194, 194);
}

body .wrapper section.cards > div > div a{
   padding: 20px 20px;
   color: var(--dark_black);
   font-size: var(--heading3_font-size);
   background: var(--white);
}

body .wrapper section.cards div > div.card_1{
   background: url("Porsche_3512_engine_rear-left_2019_Prototyp_Museum.jpg");
   filter: opacity(.3);
   background-size: cover;
}

body .wrapper section.cards div > div.card_2 div.imgbg_2{
   background: url("Driving_Into_The_Future_Featured.webp");
   background-size: cover;
   border-bottom: 2px solid var(--dark_black);
}

body .wrapper section.cards div > div.card_3 div.imgbg_3{
   background: url("automotive-glass-2.jpg");
   background-size: cover;
   border-bottom: 2px solid var(--dark_black);
}

div.explore_btn{
   margin: 20px 50px;
   display: flex;
   justify-content: center;
   align-items: center;
}

div.explore_btn a{
   border: 2px solid #001F52;
   border-radius: 100px;
   margin: 20px;
   padding: 20px 100px;
   transition: 0.1s ease-in-out;
   /* width: 100px; */
}

div.explore_btn a:hover{
   background: var(--hover_color);
   border: 2px solid white;
   color: var(--white);
}



body .wrapper div.map{
   width: 100%;
   height: 400px; 
   margin-top: 0px;
}

body .wrapper .map iframe{
   width: 100%;
   height: 100%;
}

body .wrapper div.aside{
   width: 100%;
   height: auto;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 3rem;
   margin: 60px 0 60px 0;
   /* background: black; */
}

body .wrapper div.aside div.reputation{
   width: auto;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 3rem;
}

body .wrapper div.aside div.reputation div ion-icon{
   color: var(--white);
   font-size: xx-large;
}

body .wrapper div.aside div.reputation div p{
   color: var(--white);
   text-align: center;
}

body .wrapper div.aside div.reputation div{
   width: 150px;
   height: 150px;
   border-radius: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: .6rem;
   background: var(--dark_black);

}

body .wrapper div.aside .rating{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: .4rem; 
   color: var(--paragraph_text);
}

body .wrapper div.aside .rating div ion-icon{
   color: var(--primary-color);
   font-size: xx-large;
}

body .wrapper section.membership{
   width: 100%;
   height: 400px;
   background: var(--secondary_color);
   display: flex;
   align-items: center;
   justify-content: center;

}

body .wrapper section.membership > div{
   width: 80%;
   height: 80%;
   background: var(--hover_color);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 0;

}

body .wrapper section.membership > div > div{
   display: flex;
   flex-direction: row;
   width: 100%;
   padding: 20px;
   /* flex-wrap: wrap; */
}

body .wrapper section.membership > div > div div{
   width: 100%;
   height: 100%;
   background: var(--white);
   padding: 20px;
   box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.164);
}

/* body .wrapper section.membership > div > div div h3{
   font-size: medium;
} */

body .wrapper .main_partners{
   width: 100%;
   height: auto;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 150px;
}

body .wrapper .main_partners > div{
   width: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
   /* background: var(--secondary_color); */
}

body .wrapper .main_partners > div > div.partner_logos{
   display: flex;
   flex-direction: row;
   padding: 20px;
   align-items: center;
   justify-content: center;
   border-radius: 20px;
   background: var(--secondary_color);
}

body .wrapper .main_partners h3{
   color: var(--primary-color);
}


body .wrapper .ourShop div{
   width: 100%;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
}

body .wrapper .ourShop div img{
   width: 250px;
   height: auto;
   margin: 0px;
   transition: 0.3s ease-in-out;
}

body .wrapper .ourShop div img:hover{
   box-shadow: var(--box-shadow);
}

footer{
   width: 100%;
   height: auto;
   background: var(--dark_black);
   margin-top: 10px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   color: var(--white_text);
   font-size: var(--paragraph_text);
   gap: 6rem;
   padding: 30px 0;
}

footer img{
   width: 10%;
}

footer > p{
   text-align: center;
}

footer div{
   display: flex;
   flex-direction: row;
   align-content: center;
   justify-content: center;
   gap: 4rem;
}

footer div p{
   line-height: 30px;
}

footer div p:nth-child(2){
   padding: 0 50px;
   border-left: 1px solid white;
   border-right: 1px solid white;
}


body .wrapper .Foundation_img{
   width: 100%;
   height: 550px;
   background: url('slide-3-2.jpg');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI', ;
}

body .wrapper section.Foundation_first{
   display: flex;
   flex-direction: row-reverse;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   margin: 70px 100px;
}

body .wrapper section.Foundation_first h3{
   line-height: 40px;
}

a.gen_btn{
   width: 30%;
   background: var(--dark_black);
   color: var(--white);
   font-weight: bolder;
   padding: 15px;
   border-radius: 7px;
   text-align: center;
   transition: 0.1s ease-in-out;
}

body .wrapper .contact_img{
   width: 80%;
   background: url('mechanic-working-on-engine.jpg');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI';
}

body .wrapper .contact_img a.bookmark{
   z-index: 100;
   position: absolute;
   bottom: 15%;
   right: 5%;
   color: white;
   border: 2px solid white;
   padding: 20px;
}

body .wrapper .FBC_img{
   width: 100%;
   background: url('https://brunswick.scene7.com/is/image/brunswick/Richmond%20Hero?$H-2000-2000$&amp;fit=constrain&amp;fmt=webp-alpha" alt="RICHMOND" loading="lazy"');
   background-size: contain;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI';
}

body .wrapper .FBC_img a.bookmark{
   z-index: 100;
   position: absolute;
   bottom: 15%;
   right: 10%;
   color: white;
   border: 2px solid white;
   padding: 20px;
}

body .wrapper .details{
   width: 100%;
   height: auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   padding: 80px 20px;
   margin: 0;
}

body .wrapper .details > div:first-child{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
}

body .wrapper .details > div:last-child{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   width: 100%;
}

body .wrapper .details > div h3{
   color: var(--primary-color);
   text-align: left;
   /* font-size: var(--heading2_font-size); */
   font-weight: bolder;
}

body .wrapper .details > div p{
   width: 100%;
   text-align: center;
   font-style: italic;
}

body .wrapper .details > div > div p{
   text-align: left;
}

body .wrapper .details > div > div ion-icon{
   font-size: 100px;
   text-align: left;
}

body .wrapper .details > div a{
   font-style: italic;
   color: var(--hover_color);
}

body .wrapper .details > div > div{
   width: 400px;
   height: 400px;
   border: 2px solid black;
   padding: 40px;
}

body .wrapper .form_map{
   width: 100%;
   height: 800px;
   padding: 20px;
   background: var(--secondary_color);
   display: flex;
   align-items: center;
   justify-content: center;
}

body .wrapper .form_map > div{
   width: 80%;
   height: 80%;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: flex-start;
   gap: 3rem;
   background: url("f00ptc.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   position: relative;
   padding: 50px;
}

body .wrapper .form_map > div::before{
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: rgba(0, 0, 0, 0.805);
}

body .wrapper .form_map > div .form{
   width: 40%;
   height: 450px;
   z-index: 4;
}

body .wrapper .form_map > div .Loc_map{
   width: 100%;
   z-index: 4;
}



body .wrapper .form_map > div .Loc_map h2{
   color: var(--white);
   font-size: var(--h2_desktop);
   text-align: left;
   line-height: 0;
}

body .wrapper .form_map > div .form form{
   width: 100%;
   gap: 0rem;
   /* background: #001F52; */
}

body .wrapper .form_map > div .form form div{
   width: 100%;
   gap: 2rem;
}

body .wrapper .form_map > div .form form div legend{
   font-size: var(--heading3_font-size); 
   color: var(--white);
   line-height: 0;
}

body .wrapper .form_map > div .form form div input{
   width: 100%;
   height: 50px;
   background: var(--white);
   padding: 10px;
   color: var(--primary-color);
}

body .wrapper .form_map > div .form form div input[type=submit]{
   background: var(--primary-color);
   color: var(--white);
   text-align: center;
   font-weight: bolder;
}

body .wrapper .form_map > div .form form input::placeholder{
   color: var(--black);
   font-style: italic;
   opacity: .5;
   font-size: smaller;
}

body .wrapper .form_map > div .form form textarea{
   width: inherit;
   height: 140px;
   padding: 20px;
}

body .wrapper .volvo_img{
   width: 100%;
   height: 550px;
   background: url('Volvo-superJumbo-v2.jpg');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI';
}

body .wrapper section.volvo_dealership{
   display: flex;
   flex-direction: row-reverse;
   align-items: center;
   justify-content: space-between;
   /* width: 100%; */
   padding: 50px 215px;
   margin: 0;
   
}

body .wrapper section.volvo_dealership img{
   width: 50%;
}

#volvo{
   background: var(--white);
}

body .wrapper section.second{
   width: 100%;
   height: 600px;
   background: var(--secondary_color);
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
   padding: 0 215px;
   /* margin: 70px 100px; */
}

body .wrapper section.second img{
   width: 50%;
}

body .wrapper section.second div{
   width: 50%;
}

body .wrapper section.services_reach{
   height: 300px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding:  0px 215px;
}

body .wrapper section.services_reach div{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}
body .wrapper section.services_reach div p{
   text-align: center;
}

body .wrapper .services_img{
   width: 80%;
   height: 550px;
   background: url('Aluminum-Car-Parts-Manufacturer.png');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI';
}

body .wrapper .services div{
   line-height: 23px;
}

body .wrapper .services div h3{
   line-height: 40px;
}

body .wrapper div.list_box{
   width: 100%;
   height: auto;
   background: var(--white);

   padding:  50px 215px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2rem;
   /* justify-content: center; */
}

body .wrapper div.list_box div.services_list{
   background: var(--secondary_color);
   width: 100%;
   height: auto;
   border-radius: 60px;
   padding: 50px;
   display: flex;
   flex-direction: column;
   gap: 5rem;

}

body .wrapper div.list_box div.services_list > div{
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 4rem;
}

body .wrapper div.list_box div.services_list div img{
   width: 50%;
   border-radius: 40px;
}

body .wrapper div.list_box div.services_list > div .texthere{
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

body .wrapper div.list_box div.services_list > div .texthere{
   line-height: 20px;
}

body .wrapper div.list_box div.services_list > div.group_2{
   flex-direction: row-reverse;
}

body .wrapper div.list_box div.services_list > div.group_3{
   flex-direction: row;
}

body .wrapper div.list_box div.services_list > div.group_4{
   flex-direction: row-reverse;
}

body .wrapper div.list_box div.services_list > div .texthere p.dropdown-content{
   height: 270px;
   overflow-y: auto;
}

body .wrapper .agric_culture{
   width: 100%;
   height: auto;
   background: var(--secondary_color);
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 2rem;
}

body .wrapper .agric_culture div{
   width: 100%;
   height: 100%;
}

body .wrapper .agric_culture div img{
   width: 100%;
}

body .wrapper .agric_culture p{
   width: 100%;
   padding: 40px;
}

body .wrapper .agric_culture h2, body .wrapper .agric_culture h3{
   padding: 10px 40px;
   text-transform: uppercase;
}

body .wrapper .about_img{
   width: 80%;
   height: 550px;
   background: url('/oil-splashing-car-engine-with-lubricant-oil-concept-lubricate-motor-oil-gear-ai-generated_1092559-17107.avif');
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   color: var(--white_text);
   /* padding: 50px; */
   font-family: 'Segoe UI';
}

body .wrapper section.ceo_bio{
   width: 100%;
   height: 500px;
   background: var(--primary-color);
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   color: var(--white);
   padding: 30px 215px;
   margin-bottom: 50px;
   /* gap: 1rem; */
}

body .wrapper section.ceo_bio > div{
   width: 50%;
}

body .wrapper section.ceo_bio > div.pic{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   /* gap: 0; */
}

body .wrapper section.ceo_bio > div.pic > div{
   text-align: center;
   gap: 1rem;
}

body .wrapper section.ceo_bio > div.pic > div p{
   width: 100%;
   text-align: center;
   text-transform: uppercase;
   font-size: large;
}

body .wrapper section.ceo_bio > div img{
   /* border-radius: 50%; */
   width: 100%;
}

body .wrapper section.ceo_bio div.bio{
   background: var(--hover_color);
   padding: 110px;
}

body .wrapper section.ceo_bio div.bio p{
   font-size: large;
   line-height: 35px;
}

body .wrapper section.profile{
   width: 100%;
   height: auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 4rem;
   padding: 50px 215px;
}

body .wrapper section.profile h3, body .wrapper section.profile h4{
   text-transform: uppercase;
   width: 100%;
   text-align: center;
}

body .wrapper section.profile h3:first-child{
   font-size: small;
}

body .wrapper section.profile > div{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   width: 100%;
}

body .wrapper section.profile > div > div{
   border: 2px solid black;
   width: 340px;
   height: 360px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   padding: 30px;
}

body .wrapper section.profile > div > div > div{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: .9rem;
   width: 100%;
}

body .wrapper section.profile > div > div img{
   width: 40%;
   height: 40%;
   border-radius: 50%;
   background-size: contain;
}

.testimonials{
   width: 100%;
   display: flex;
   background: var(--secondary_color);
   align-items: center;
   justify-content: center;
}

.gen_btn:hover{
   background: var(--hover_color);
}

body .wrapper section.purpose{
   width: 100%;
   height: 300px;
   display: flex;
   align-items: center;
   justify-content: center;
}

body .wrapper section.purpose > div{
   background: #001F52;
   height: 200px;
   width: 80%;
   display: flex;
   flex-direction: row;
   gap: 0;
   /* flex-wrap: wrap; */
}

body .wrapper section.purpose > div > div:first-child{
   width: 30%;
   height: 100%;
   background: var(--black);
   color: var(--white);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

/* body .wrapper section.purpose > div >div:first-child h2{
   font-size: xx-large;
} */

body .wrapper section.purpose > div > div:last-child{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   width: 70%;
   height: 100%;
   background: var(--hover_color);
}


body .wrapper section.purpose > div > div:last-child div{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: .5rem;
}

body .wrapper section.purpose > div > div:last-child div p{
   text-align: center;
   color: var(--white);
}


body .wrapper .explore{
   height: 700px;
   width: 100%;
   background: none;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 3rem;
}

body .wrapper .explore h1{
   color: var(--primary-color);
   position: relative;
   text-transform: capitalize;
}

body .wrapper .explore h1::after{
   content: '';
   width: 50%;
   height: 5px;
   background: var(--primary-color);
   color: var(--primary-color);
   position: absolute;
   top: 130%;
   left: 30%;
}

body .wrapper .explore div{
   display: flex;
   flex-direction: row;
   background: none;
   height: 500px;
   width: 80%;
   gap: 1rem;
}

body .wrapper .explore div > div.box{
   width: 25%;
   height: inherit;
   background: white;
   display: flex;
   flex-direction: row;
   transition: .5s ease-in-out;
   align-items: center;
   justify-content: flex-end;
   flex-direction: column;
}

body .wrapper .explore div .box > div{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   opacity: 0;
   width: inherit;
   background: #003366;
   width: 100%;
   height: 30%;
   transition: 0.3s ease-in-out;
   /* padding: 10px; */
   
}

body .wrapper .explore div .box div.gradient{
   border-bottom: 2px solid #e6b000;
}

body .wrapper .explore div > div#networking{
   background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20913/Harris.jpg");
   background-size: cover;
}

body .wrapper .explore div > div#cybersecurity{
   background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20350/a01Dm00000391DXIAY_10_main.jpg");
   background-size: cover;
}

body .wrapper .explore div .box#software{
   width: 50%;
   background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19239/3031.jpg");
   background-size: cover;
}

body .wrapper .explore div > div#AiMl{
   background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19242/1022.jpg");
   background-size: cover;
}

body .wrapper .explore div .box#software div{
   opacity: 1;
}

body .wrapper .explore div .box:nth-child(3) div:first-child{
   background: transparent;
   border-bottom: 0;
}

body .wrapper .explore div .box:hover:nth-child(3) div:first-child{
   background: #003366;
   border-bottom: 2px solid #e6b000;
}

body .wrapper .explore div .box div p{
   color: white;
}

body .wrapper .explore div .box div a{
   color: var(--white);
   border: 2px solid var(--hover_color);
   padding: 20px 30px;
   text-decoration: none;
}

body .wrapper .explore div .box div a:hover{
   background: var(--hover_color);
   color: var(--white);
   font-weight: bolder;
   text-decoration: underline;
}

body .wrapper .explore div .box .gradient{
   height: 190%;
   opacity: 0;
   /* display: none; */
}

body .wrapper .explore div .box:hover div{
   display: flex;
   flex-direction: column;
   opacity: 1;
   width: 50%;
}

body .wrapper .explore div > div:hover{
   width: 50%;
}

.pd-mini-card a.gen_btn{
   width: 60%;
}

.background_icon{
   width: 70%;
   position: absolute;
   top: 45%;
   left: 60%;
   filter: grayscale(100%);
   opacity: .1;
}

   


@media only screen and (min-width: 100px) and (max-width: 425px){
   *{
      margin: 0; padding: 0;
      box-sizing: border-box;
      outline: none; border: none;
      text-decoration: none;
      scrollbar-color: var(--main-color) var(--black);
      scrollbar-width: 0;
      line-height: 20px;
      text-align: justify;
   }


   body{
      height: 100vh;
      width: 100%;
      background: var(--body_background);
      padding-bottom: 0rem;
   }

   #device_view{
      display: block;
   }

   .bookmark{
      display: none;
   }

   

   h1, h2, h3{
      text-align: center;
      font-weight: 300px;
   }

   h1{
      text-align: left;
   }

   a.gen_btn {
      width: 70%;
   }

   body .wrapper .Loc_map iframe{
      width: 100%;
      height: 100%;
   }

   body .wrapper header > div.mobile_menu a.active{
      background: var(--hover_color);
   }

   body .wrapper{
      width: 100vw;
   }

   body .wrapper header{
      width: 100%;
      
   }
   body .wrapper header > div {
      padding: 20px 90px;
   }
     
   body .wrapper header > div:first-child{
      align-items: center;
      justify-content: center;
      flex-wrap: wrap-reverse;
      gap: 2rem;
   }

   body .wrapper main div:first-child p {
    width: 100%;
   }

   body .wrapper header > div:last-child{
      width: 100%;
      
   }
   
   
   body .wrapper header > div:last-child img{
      width: 100%;
   }
   
   body .wrapper header > div:last-child{
      display: none;
   }
   
   body .wrapper header > div:last-child .menu a{
      color: var(--primary-color);
      font-weight: 900;
   }

   body .wrapper .contact_img{
      width: 100%;
      background: url('mechanic-working-on-engine.jpg');
      background-size: contain;
      justify-content: center;
   }
   
   body .wrapper main{
      width: 100%;
      height: 300px;
      background-size: cover;
      justify-content: center;
      padding: 0;
   }

   body .wrapper main div:first-child{
      width: 80%;
      /* height: 100px; */
   }

   body .wrapper main div h1{
      line-height: 25px;
      width: 100%;
   }

   body .wrapper main div h1 span {
      font-size: medium;
}

   body .wrapper .form_map{
      width: 100%;
      height: auto;
      padding: 0;
   }

   body .wrapper .form_map > div{
      width: 100%;
      height: auto;
      flex-direction: column;
      padding: 50px 20px;
   }

   body .wrapper .form_map > div .form{
      width: 100%;
      height: auto;
      padding: 0;
   }

   body .wrapper .form_map > div .form form div input {
      width: 100%;
   }

   
   body .wrapper .details{
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      padding: 20px;
      margin: 0;
   }

   body .wrapper .details > div:last-child{
      flex-direction: column;
      flex-wrap: wrap;
   }

   body .wrapper .details > div h3{
      color: var(--primary-color);
      text-align: left;
      font-size: large;
      font-weight: bolder;
   }

   body .wrapper .details > div > div{
      height: auto;
      width: 80%;
      border: 2px solid black;
      border-radius: 20px;
      padding: 40px;
   }

   body .wrapper .details > div > div ion-icon{
      font-size: 70px;
      font-weight: bolder;
   }

   body .wrapper section.our_mission{
      flex-direction: column;
      margin: 100px 20px;
   }

   body .wrapper section.our_mission img{
      border: none;
   }

   body .wrapper section img{
      width: 100%;
      border: none;
   }
   
   body .wrapper section div{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
   }
   
   body .wrapper section div h3{
      font-weight: bolder;
      position: relative;
      line-height: 27px;
   }

   body .wrapper section div h3::after{
      position: absolute;
      content: "";
      left: 44%;
      top: 120%;
      width: 15%;
      height: 3px;
      background: var(--background_black_opacity);
   }

   body .wrapper section.cards{
      height: auto;
      gap:3rem;
      padding: 20px;
   }

   body .wrapper section.cards > div{
      flex-direction: column;
      justify-content: center;
      width: 87%;
      height: auto;
   }

   body .wrapper section.cards > div > div{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
   }

   body .wrapper section.cards > div > div > div{
      width: 100%;
      height: 100%;
   }

   body .wrapper section.cards h2{
      font-size: var(--small_screen_size);
   }

   body .wrapper section.cards > div > div h3{
      font-size: var(--small_screen_size);
      padding: 0 20px;
      text-align: left;
   }

   body .wrapper section.cards > div > div a{
      width: 100%;
   }

   body .wrapper section.cards > div > div p{
      text-align: left;
   }

   div.explore_btn a{
      margin: 10px;
      padding: 10px 50px;
   }

   body .wrapper div.aside {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 0px;
   }

   body .wrapper div.aside div.reputation{
      width: 100%;
      flex-wrap: wrap;
   }

   .picture_slides {
      width: 100%;
      padding: 0px;
   }

   .slider{
      height: 300px;
      width: 100%;
      border-radius: 0px;
   }

   .slide img{
      position: relative;
   }

   .navigation-manual, .navigation-auto{
      display: none;
   }

   body .wrapper .about_img{
      width: 100%;
      background: url('oil-splashing-car-engine-with-lubricant-oil-concept-lubricate-motor-oil-gear-ai-generated_1092559-17107.avif');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper section.profile{
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 10px;

   }

   body .wrapper section.profile > div{
      flex-direction: column;
      flex-wrap: wrap;
   }

   body .wrapper section.profile > div > div{
      width: 80%;
      padding: 40px;
   }

   body .wrapper section.ceo_bio{
      width: 100%;
      height: auto;
      flex-direction: column;
      padding: 20px;
      gap: 3rem;
   }

   body .wrapper section.ceo_bio div.bio{
      background: none;
      padding: 0px;
   }

   body .wrapper section.ceo_bio div.bio p{
      font-size: var(--scalable_body_texts);
      line-height: 27px;
   }

   body .wrapper section.ceo_bio > div.pic{
      display: flex;
      flex-direction: column;
   }

   body .wrapper section.ceo_bio > div{
      width: 100%;
   }

   body .wrapper section.ceo_bio > div img{
      border-radius: 10px;
      width: 100%;
      height: 50%;
   }

   body .wrapper section.profile > div > div img {
      width: 60%;
      height: 60%;
      border-radius: 200px;
   }

   body .wrapper .agric_culture {
      
      flex-direction: column-reverse;
   }

   body .wrapper .services_img{
      width: 100%;
      background: url('Aluminum-Car-Parts-Manufacturer.png');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper div.list_box{
      padding:  0px;
   }

   body .wrapper div.list_box div.services_list{
      border-radius: 0;
      padding: 30px;
   }

   body .wrapper div.list_box div.services_list div {
      display: flex;
      flex-direction: column;
      gap: 1rem;
   }

   body .wrapper div.list_box div.services_list > div.group_2{
      flex-direction: column;
   }

   body .wrapper div.list_box div.services_list > div.group_3{
      flex-direction: column;
   }
   
   body .wrapper div.list_box div.services_list > div.group_4{
      flex-direction: column;
   }

   body .wrapper div.list_box div.services_list div img{
      width: 100%;
      border-radius: 20px;
   }

   body .wrapper section.second{
     flex-direction: column;
     height: auto;
     padding: 30px;
   }

   body .wrapper section.second div{
      width: 100%;
   }

   body .wrapper section.second img{
      width: 100%;
   }

   #mobile_view{
      display: none;
   }

   .mobile_menu{
      position: relative;
      left: -120%;
      z-index: 2002;
      transition: 0.5s ease-in-out;
   }

   .mobile_menu::after{
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100dvw;
      height: 100dvh;
      background: rgba(0, 0, 0, 0.7);
      z-index: -102;
   }

   .mobile_menu div{
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 50px;
   }

   .mobile_menu div.media_icons_2{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 100px;
   }

   .mobile_menu div.media_icons_2 a{
      padding: 0;
      width: 20%;
      display: flex;
      justify-content: center;
      border-bottom: none;
   }

   .mobile_menu div.media_icons_2 a ion-icon{
      font-size: x-large;
   }

   .mobile_menu p{
      color: var(--white_text);
      font-size: small;
      text-align: center;
      color: rgba(255, 255, 255, 0.519);
   }

   .mobile_menu div a{
      border: 0;
      width: 30%;
      padding: 0;
   }

   .mobile_menu div a img{
      width: 100%;
   }

   .mobile_menu div h4{
      color: var(--white_text);
   }

   .mobile_menu.menupop{
      display: flex;
      flex-direction: column;
      /* align-items: center; */
      justify-content: flex-start;
      padding: 60px 20px 20px 20px;
      width: 80%;
      height: 100dvh;
      background: var(--dark_black);
      position: absolute;
      left: 0;
      z-index: 1000;
      transition: 0.5s ease-in-out;
      
  }

   .mobile_menu a{
      border-bottom: .5px solid rgba(255, 255, 255, 0.474);
      padding: 20px;
      width: 100%;
      text-align: left;
      color: var(--white);
      font-weight: bolder;
      /* background: #001F52; */
   }

   .menu_icon{
      position: fixed;
      top: 2%;
      right: 5%;
      /* background: var(--white); */
      color: var(--primary-color);
      z-index: 2002;
      font-size: 35px;
      border: 1px solid black;
      cursor: pointer;
      display: flex;
   }

   .menu_icon.menupop{
      border: 1px solid white;
   }

   body .wrapper .Foundation_img{
      width: 100%;
      background: url('slide-3-2.jpg');
      background-size: cover;
      justify-content: center;
      padding: 50%;
   }

   body .wrapper section.Foundation_first {
      display: flex;
      flex-direction: column-reverse;
      margin: 0px;
      padding: 20px;
   }

   body .wrapper .volvo_img{
      width: 100%;
      background: url('Volvo-superJumbo-v2.jpg');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper section.volvo_dealership {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
   }

   body .wrapper section.volvo_dealership img{
      width: 100%;
   }

   body .wrapper .details > div > div p {
      text-align: center;
   }

   body .wrapper div.otherpartners {
      height: auto;
      width: auto;
      padding: 20px 20px;
   }

   body .wrapper .testimonies {
      width: 100%;
      height: 220px;
   }

   body .wrapper .testimonies .container{
      width: 100%;
      height: 50%;
      position: relative;
   }

   body .wrapper #logoOnScroll_mobile{
      display: block;
      position: fixed;
      top: 8%;
      left: 43%;
      z-index: 999;
      width: 15%;
      border-radius: 50%;
      box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.126);
      transition: 0.5s ease-in-out;
      /* display: none; */
   }

   body .wrapper #logoOnScroll_mobile.sizelogoSmall{
      width: 20%;
      top: 7%;
      left: 40%;
   }

   body .wrapper .FBC_img{
      background-size: cover;
      width: 100%;
      height: 400px;
      background: url('https://brunswick.scene7.com/is/image/brunswick/Richmond%20Hero?$H-2000-2000$&amp;fit=constrain&amp;fmt=webp-alpha" alt="RICHMOND" loading="lazy"');
      background-size: contain;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
   }

   body .wrapper section.purpose{
      height: auto;
      margin-top: 10px;
   }

   body .wrapper section.purpose > div{
      flex-direction: column;
      height: auto;
      width: 100%;
   }

   body .wrapper section.purpose > div > div:first-child {
      width: 100%;
      height: 100%;
      padding: 20px;
  }

   body .wrapper section.purpose > div > div:last-child{
      padding: 100px;
      height: 1200%;
      flex-wrap: wrap;
   }

   body .wrapper section.purpose > div > div:last-child div{
      flex-wrap: wrap;
   }

   body .wrapper section.purpose > div > div:last-child{
      width: 100%;
      height: 50%;
   }

   body .wrapper .explore{
      height: auto;
      width: 100%;
      background: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      margin: 20px 0;
   }
   
   body .wrapper .explore h1{
      color: var(--primary-color);
      position: relative;
      text-transform: capitalize;
   }
   
   body .wrapper .explore > div{
      display: flex;
      flex-direction: column;
      background: none;
      height: auto;
      /* margin: 100px 0; */
      width: 90%;
      gap: 1rem;
   }
   
   body .wrapper .explore > div > div.box{
      width: 100%;
      height: 400px;
      background: white;
      display: flex;
      flex-direction: row;
      transition: .5s ease-in-out;
      align-items: center;
      justify-content: flex-end;
      flex-direction: column;
   }
   
   body .wrapper .explore div .box > div{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 1;
      width: inherit;
      background: #003366;
      width: 50%;
      height: 30%;
      transition: 0.3s ease-in-out;
      /* padding: 10px; */
      
   }
   
   body .wrapper .explore div .box div.gradient{
      border-bottom: 2px solid #e6b000;
   }
   
   body .wrapper .explore div > div#networking{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20913/Harris.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div > div#cybersecurity{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20350/a01Dm00000391DXIAY_10_main.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div .box#software{
      width: 100%;
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19239/3031.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div > div#AiMl{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19242/1022.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div .box#software div{
      opacity: 1;
   }
   
   body .wrapper .explore div .box:nth-child(3) div:first-child{
      background: #003366;
   }

   body .wrapper .explore div .box:hover:nth-child(3) div:first-child{
      background: transparent;
      border-bottom: 0;
   }

   body .wrapper .explore div .box div p{
      color: white;
   }
   
   body .wrapper .explore div .box div a{
      color: var(--white);
      border: 2px solid var(--hover_color);
      padding: 20px 30px;
      text-decoration: none;
   }
   
   body .wrapper .explore div .box div a:hover{
      background: var(--hover_color);
      color: var(--white);
      font-weight: bolder;
      text-decoration: underline;
   }
   
   body .wrapper .explore div .box:hover div{
      display: flex;
      flex-direction: column;
      opacity: 1;
      width: 50%;
      background: transparent;
   }
   
   body .wrapper .explore div > div:hover{
      width: 100%;
   }

   body .wrapper section.membership{
      height: auto;
      margin: 20px 0;
   }

   body .wrapper section.membership > div > div{
      flex-wrap: wrap;
   }

   body .wrapper section.membership > div > div div h3{
      line-height: 30px;
   }

   body .wrapper section.membership > div > div div p{
      text-align: left;
   }

   body .wrapper .main_partners {
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 100px 0;
   }

   .logo-carousel {
      height: 200px;
   }

   .logo-track img {
      width: 50%;
      margin: 0 6px;
   }

   /* About  */
   body .wrapper .about_img {
      height: 300px;
   }

   body .wrapper .services_img {
      height: 300px;
   }

   body .wrapper .main_partners > div > div.partner_logos {
    display: flex;
    flex-direction: column;
    background: var(--secondary_color);
   }

   body .wrapper .main_partners > div > div.partner_logos img{
      width: 50%;
   }

   .background_icon {
      display: none;
   }

   footer{
      width: 100%;
      height: auto;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
   } 

   footer img{
      width: 50%;
   }

   footer div{
      display: flex;
      flex-direction: column;
      align-content: flex-start;
      justify-content: flex-start;
      gap: 4rem;
   }

   footer div p:nth-child(2) {
      padding: 0px;
      border: 0;
   }

   footer p{
      text-align: center;
      font-size: var(--scalable_body_texts);
   }
}

@media only screen and (min-width: 426px) and (max-width: 910px){
   *{
      font-family: 'Comfortaa', cursive;
      margin: 0; padding: 0;
      box-sizing: border-box;
      outline: none; border: none;
      text-decoration: none;
      scrollbar-color: var(--main-color) var(--black);
      scrollbar-width: 0;
      line-height: 20px;
      text-align: justify;
   }

   body{
      height: 100vh;
      width: 100%;
      background: var(--body_background);
      padding-bottom: 0rem;
   }

   #device_view{
      display: block;
   }

   .bookmark{
      display: none;
   }

   h1, h2, h3{
      font-size: large;
   }

   a.gen_btn {
      width: 50%;
   }

   body .wrapper header > div.mobile_menu a.active{
      background: var(--hover_color);
   }

   body .wrapper{
      width: 100vw;
   }

   body .wrapper header{
      width: 100%;
      
   }
   body .wrapper header > div {
      padding: 20px 90px;
   }
     
   body .wrapper header > div:first-child{
      align-items: center;
      justify-content: center;
      flex-wrap: wrap-reverse;
      gap: 2rem;
   }

   body .wrapper header > div:last-child{
      width: 100%;
      
   }
   
   
   body .wrapper header > div:last-child img{
      width: 100%;
   }
   
   body .wrapper header > div:last-child{
      display: none;
   }
   
   body .wrapper header > div:last-child .menu a{
      color: var(--primary-color);
      font-weight: 900;
   }

   body .wrapper .contact_img{
      width: 100%;
      background: url('mechanic-working-on-engine.jpg');
      background-size: cover;
      justify-content: center;
   }
   
   body .wrapper main{
      width: 100%;
      height: 300px;
      background-size: cover;
      justify-content: center;
      padding: 0;
   }

   body .wrapper main div:first-child{
      width: 80%;
   }

   body .wrapper main div h1{
      line-height: 40px;
      width: 100%;
   }

   body .wrapper .form_map{
      width: 100vw;
      height: auto;
   }

   body .wrapper .form_map > div .form{
      width: 100%;
   }

   body .wrapper .form_map > div{
      width: 100%;
      height: auto;
      flex-direction: column;
      padding: 50px 20px;
   }

   
   body .wrapper .details{
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      margin: 0;
   }

   body .wrapper .details > div:last-child{
      flex-direction: column;
      flex-wrap: wrap;
   }

   body .wrapper .details > div h3{
      color: var(--primary-color);
      text-align: left;
      font-weight: bolder;
   }

   body .wrapper .details > div > div{
      width: 50%;
      height: 100%;
      border: 2px solid black;
   }

   body .wrapper section.our_mission{
      flex-direction: column;
      margin: 20px;
   }

   body .wrapper section img{
      width: 100%;
      border: 0;
   }

   body .wrapper section div{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
   }
   
   body .wrapper section div h3{
      font-size: var(--small_screen_size);
   }

   body .wrapper section.cards{
      height: auto;
      gap:3rem;
      padding: 20px;
   }

   body .wrapper section.cards > div{
      flex-direction: column;
      justify-content: center;
      width: 87%;
      height: auto;
   }

   body .wrapper section.cards > div > div{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
   }

   body .wrapper section.cards > div > div > div{
      width: 100%;
      height: 50%;
   }

   body .wrapper section.cards h2{
      font-size: var(--small_screen_size);
   }

   body .wrapper section.cards > div > div h3{
      font-size: var(--small_screen_size);
      padding: 0 20px;
   }

   div.explore_btn a{
      margin: 10px;
      padding: 10px 50px;
   }

   body .wrapper div.aside {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 30px;
   }

   body .wrapper div.aside div.reputation{
      width: 100%;
      flex-wrap: wrap;
   }

   .picture_slides {
      width: 100%;
      padding: 0px;
   }

   .slider{
      height: 300px;
      width: 100%;
      border-radius: 0px;
   }

   .slide img{
      position: relative;
   }

   .navigation-manual, .navigation-auto{
      display: none;
   }

   body .wrapper .about_img{
      width: 100%;
      background: url('oil-splashing-car-engine-with-lubricant-oil-concept-lubricate-motor-oil-gear-ai-generated_1092559-17107.avif');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper section.profile{
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 10px;

   }

   body .wrapper section.profile > div{
      flex-direction: column;
      flex-wrap: wrap;
   }

   body .wrapper section.profile > div > div{
      padding: 40px;
   }

   body .wrapper section.ceo_bio{
      width: 100%;
      height: auto;
      flex-direction: column;
      padding: 20px;
      gap: 3rem;
   }

   body .wrapper section.ceo_bio > div.pic{
      display: flex;
      flex-direction: column;
   }

   body .wrapper section.ceo_bio > div{
      width: 80%;
   }

   body .wrapper section.ceo_bio div.bio{
      padding: 50px;
   }

   body .wrapper section.ceo_bio div.bio p{
      font-size: medium;
      line-height: 27px;
      text-align: center;
   }

   body .wrapper section.ceo_bio > div img{
      border-radius: 0;
      width: 50%;
      height: 50%;
   }

   body .wrapper .agric_culture {
      
      flex-direction: column-reverse;
   }

   body .wrapper .services_img{
      width: 100%;
      background: url('Aluminum-Car-Parts-Manufacturer.png');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper div.list_box{
      padding:  0px;
   }

   body .wrapper div.list_box div.services_list{
      border-radius: 0;
      padding: 30px;
   }

   body .wrapper div.list_box div.services_list div {
      display: flex;
      flex-direction: column;
      gap: 1rem;
   }

   body .wrapper div.list_box div.services_list > div.group_2{
      flex-direction: column;
   }

   body .wrapper div.list_box div.services_list > div.group_3{
      flex-direction: column;
   }
   
   body .wrapper div.list_box div.services_list > div.group_4{
      flex-direction: column;
   }

   body .wrapper div.list_box div.services_list div img{
      width: 100%;
      border-radius: 20px;
   }

   body .wrapper section.second{
     flex-direction: column;
     height: auto;
     padding: 30px;
   }

   body .wrapper section.second div{
      width: 100%;
   }

   body .wrapper section.second img{
      width: 100%;
   }

   #mobile_view{
      display: none;
   }

   .mobile_menu{
      display: none;
   }

   .mobile_menu.menupop{
      position: relative;
      z-index: 2000;
      display: flex;
      flex-direction: column;
      /* align-items: center; */
      justify-content: flex-start;
      padding: 0px;
      width: 100%;
      height: 100%;
      background: var(--dark_black);
      transition: 0.5s ease-in-out;
      
  }

   .mobile_menu a{
      border-bottom: 2px solid white;
      padding: 20px;
      width: 100%;
      text-align: left;
      color: var(--white);
      font-weight: bolder;
      /* background: #001F52; */
   }

   .menu_icon{
      position: fixed;
      top: 3%;
      right: 10%;
      background: var(--white);
      color: var(--primary-color);
      z-index: 1002;
      font-size: 50px;
      cursor: pointer;
      box-shadow: 0px 0 10px -3px black;
      display: flex;
   }

   body .wrapper .Foundation_img{
      width: 100%;
      background: url('slide-3-2.jpg');
      background-size: cover;
      justify-content: center;
      padding: 50%;
   }

   body .wrapper section.Foundation_first {
      display: flex;
      flex-direction: column-reverse;
      margin: 0px;
      padding: 20px;
   }

   body .wrapper .volvo_img{
      width: 100%;
      background: url('Volvo-superJumbo-v2.jpg');
      background-size: cover;
      justify-content: center;
   }

   body .wrapper section.volvo_dealership {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
   }

   body .wrapper section.volvo_dealership img{
      width: 100%;
   }

   body .wrapper div.otherpartners {
      height: auto;
      width: auto;
      padding: 20px 10px;
   }

   body .wrapper #logoOnScroll_mobile{
      display: block;
      position: fixed;
      top: 5%;
      left: 43%;
      z-index: 1020;
      width: 15%;
      border-radius: 50%;
      box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.126);
      transition: 0.5s ease-in-out;
      /* display: none; */
   }

   body .wrapper #logoOnScroll_mobile.sizelogoSmall{
      width: 10%;
      top: 6%;
      left: 45%;
   }

   body .wrapper .FBC_img{
      height: 460px;
      background-size: cover;
      justify-content: center;
   }

   body .wrapper section.purpose{
      height: auto;
      margin-top: 10px;
   }

   body .wrapper section.purpose > div{
      flex-direction: column;
      height: auto;
      width: 100%;
   }

   body .wrapper section.purpose > div > div:first-child {
      width: 100%;
      height: 100%;
      padding: 20px;
  }

   body .wrapper section.purpose > div > div:last-child{
      padding: 100px;
      height: 1200%;
      flex-wrap: wrap;
   }

   body .wrapper section.purpose > div > div:last-child div{
      flex-wrap: wrap;
   }

   body .wrapper section.purpose > div > div:last-child{
      width: 100%;
      height: 50%;
   }

   body .wrapper .explore{
      height: auto;
      width: 100%;
      background: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      margin: 20px 0;
   }
   
   body .wrapper .explore h1{
      color: var(--primary-color);
      position: relative;
      text-transform: capitalize;
   }
   
   body .wrapper .explore > div{
      display: flex;
      flex-direction: column;
      background: none;
      height: auto;
      /* margin: 100px 0; */
      width: 90%;
      gap: 1rem;
   }
   
   body .wrapper .explore > div > div.box{
      width: 100%;
      height: 400px;
      background: white;
      display: flex;
      flex-direction: row;
      transition: .5s ease-in-out;
      align-items: center;
      justify-content: flex-end;
      flex-direction: column;
   }
   
   body .wrapper .explore div .box > div{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 1;
      width: inherit;
      background: #003366;
      width: 50%;
      height: 30%;
      transition: 0.3s ease-in-out;
      /* padding: 10px; */
      
   }
   
   body .wrapper .explore div .box div.gradient{
      border-bottom: 2px solid #e6b000;
   }
   
   body .wrapper .explore div > div#networking{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20913/Harris.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div > div#cybersecurity{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/20350/a01Dm00000391DXIAY_10_main.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div .box#software{
      width: 100%;
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19239/3031.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div > div#AiMl{
      background: url("https://reservations.freedomboatclub.com/content/dam/fbc-reservations/boat-images/19242/1022.jpg");
      background-size: cover;
   }
   
   body .wrapper .explore div .box#software div{
      opacity: 1;
   }
   
   body .wrapper .explore div .box:nth-child(3) div:first-child{
      background: #003366;
   }

   body .wrapper .explore div .box:hover:nth-child(3) div:first-child{
      background: transparent;
      border-bottom: 0;
   }

   body .wrapper .explore div .box div p{
      color: white;
   }
   
   body .wrapper .explore div .box div a{
      color: var(--white);
      border: 2px solid var(--hover_color);
      padding: 20px 30px;
      text-decoration: none;
   }
   
   body .wrapper .explore div .box div a:hover{
      background: var(--hover_color);
      color: var(--white);
      font-weight: bolder;
      text-decoration: underline;
   }
   
   body .wrapper .explore div .box:hover div{
      display: flex;
      flex-direction: column;
      opacity: 1;
      width: 50%;
      background: transparent;
   }
   
   body .wrapper .explore div > div:hover{
      width: 100%;
   }

   body .wrapper section.membership{
      height: auto;
      margin: 20px 0;
   }
   
   body .wrapper section.membership > div > div{
      flex-wrap: wrap;
   }
   
   footer{
      width: 100%;
      height: auto;
      padding: 50px;
      display: flex;
      flex-direction: column;
   }

   footer img {
      width: 50%;
   }

   footer div{
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      gap: 4rem;
   }

   footer div p:nth-child(2) {
      padding: 0px;
      border: 0;
   }

   footer p{
      text-align: center;
   }
}


@media only screen and (min-width: 911px) and (max-width: 1024px){
   body .wrapper header > div {
      padding: 20px 90px;
   }

   .picture_slides {
      width: 100%;
      padding: 0px;
   }

   .slider{
      height: 300px;
      width: 100%;
      border-radius: 0px;
   }

   .slide img{
      position: relative;
      height: 400px;
      width: 800px;
   }

   .navigation-manual, .navigation-auto{
      display: none;
   }

   .slides{
      width: 500%;
      height: 300px;
   }

   body .wrapper section.our_mission {
      margin: 0;
      padding: 20px 10px;
      flex-wrap: wrap;
   }

   body .wrapper section.cards > div {
      flex-wrap: wrap;
   }

   body .wrapper section.cards{
      background: var(--primary-color);
      height: auto;
      padding: 20px;
   }

   body .wrapper section img {
      width: 50%;
   }

   body .wrapper section.cards > div {
      width: 90%;
   }

   body .wrapper section.profile > div{
      flex-wrap: wrap;
   }

   body .wrapper section.ceo_bio {
      padding: 0 90px;
      /* flex-direction: column; */
   }

   body .wrapper section.ceo_bio > div{
      width: 100%;
   }

   body .wrapper section.ceo_bio div.bio{
      padding: 10px;
   }

   body .wrapper section.ceo_bio div.bio p{
      line-height: 30px;
      text-align: left;
   }

   body .wrapper div.list_box {
      padding: 50px 90px;
   }

   body .wrapper div.list_box div.services_list > div {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 2rem;
   }

   body .wrapper section.second {
      flex-direction: column;
      height: auto;
      padding: 30px;
   }

   #mobile_view{
      display: none;
   }

   body .wrapper .details > div:last-child {
      display: flex;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
   }

   body .wrapper .form_map{
      height: auto;
   }

   body .wrapper .form_map > div{
      flex-wrap: wrap;
      height: auto;
   }

   body .wrapper .form_map > div .form{
      width: 100%;
   }

   body .wrapper section div{
      width: 75%;
   }

   body .wrapper section img {
      width: 75%;
      /* padding: 20px 90px; */
      border: 0;
   }

   body .wrapper section.Foundation_first{
      width: 100%;
      display: flex;
      flex-direction: column-reverse;
      margin: 0px;
      padding: 20px;
   }

   body .wrapper section.volvo_dealership{
      padding: 20px 0px;
      flex-wrap: wrap;
   }

   body .wrapper div.otherpartners {
      height: auto;
      width: auto;
      padding: 20px 0px;
   }

   #logoOnScroll_mobile{
      display: none;
   }

   body .wrapper section.membership{
      width: 100%;
      height: 400px;
      background: var(--secondary_color);
      display: flex;
      align-items: center;
      justify-content: center;
   
   }
   
   body .wrapper section.membership > div{
      height: auto;
   }
   
   body .wrapper section.membership > div > div{
      display: flex;
      flex-direction: row;
      width: 100%;
      padding: 20px;
      /* flex-wrap: wrap; */
   }
   
   body .wrapper section.membership > div > div div{
      width: 100%;
      height: 100%;
      background: var(--white);
      padding: 20px;
      box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.164);
   }
   
   body .wrapper section.membership > div > div div h3{
      font-size: medium;
   }

   footer{
      width: 100%;
      height: auto;
      padding: 20px;
      
   }

   footer div{
      flex-wrap: wrap;
   }

}

