/* css styles */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Comfortaa:wght@300..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
	box-sizing: inherit; 
	margin: 0; 
	padding: 0; 
}

body {
	font-family: 'Josefin Sans', sans-serif;	
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
	box-sizing: border-box; 
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{	
	font-family: 'Comfortaa', cursive;
	color: #900C3F;
}

h1 {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

img {
    max-width: 100%;
}

hr{
    width: 2rem;
    margin: 0.5rem 0 1rem;
    text-align: left;
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
 .header-logo.after-scroll { display: none; }
 .site-logo{
     width: 8rem; 
     height: auto; /* Maintains aspect ratio */ 
     max-width: 100%;
 }
 .header-logo { 
     position: fixed;
     top: 0; 
     width: 100%;
 }
 @media (min-width: 0px) { .scrolled .header-logo.before-scroll { display: none; } .scrolled .header-logo.after-scroll { display: block; } }
/*  main navigation  */
.header-nav {
    background: #fffbfb;
    color: #ff7a57;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    line-height: 1.846;
    padding: 3.6rem 3rem 3.6rem 3.6rem;
    height: 100%;
    width: 21.5rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 700;
    border-top: 3px solid #ff7a57;
    border-bottom: 3px solid #ff7a57;      
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
}

.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
    color: white;
}

.header-nav h3 {
    font-family: "raleway-semibold", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .25rem;
    margin-bottom: 4.8rem;
    margin-top: .9rem;
    color: #000;
}

.header-nav p {
    margin-bottom: 2.7rem;
}

.header-nav__content {
    position: relative;
    left: 50px;
    opacity: 0;
    visibility: hidden;
}

.header-nav__list {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    margin: 3.6rem 0 3rem 0;
    padding: 0 0 1.8rem 0;
    list-style: none;
}

.header-nav__list li {
    padding-left: 0;
    line-height: 4.5rem;
}

.header-nav__list a,
.header-nav__list a:visited {
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat';
}

.header-nav__social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 1.8rem;
}

.header-nav__social li {
    margin-right: 12px;
    padding-left: 0;
    display: inline-block;
}

.header-nav__social li a {
    color: rgba(255, 255, 255, 0.15);
}

.header-nav__social li a:hover,
.header-nav__social li a:focus {
    color: white;
}

.header-nav__social li:last-child {
    margin: 0;
}

.header-nav__close {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    background-color: #fdc001;
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 800;
}

.header-nav__close span::before, 
.header-nav__close span::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -1px;
}

.header-nav__close span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-nav__close span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* menu is open  */
.menu-is-open .header-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}

.menu-is-open .header-nav .header-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    left: 0;
}


/* mobile menu toggle */
.header-menu-toggle {
    position: fixed;
    right: 38px;
    /*top: 24px;*/
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "raleway", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: none;
}

.header-menu-toggle.opaque {
    background-color: #0047ab;
}

.header-menu-toggle.opaque .header-menu-text {
    background-color: #0047AB;
}

.header-menu-toggle:hover, .header-menu-toggle:focus {
    color: #f37878;
}

.header-menu-text {
    font-family: 'josefin sans-serif';
    display: block;
    position: absolute;
    top: 0;
    left: -4.375rem;
    width: 8rem;
    padding-left: 12px;
    background-color: #fff;
    color: #7f1010;
    border-radius: 2px;
}

.header-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: #7f1010;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-icon::before,
.header-menu-icon::after {
    content: '';
    width: 22px; /* Same as the width of the main bar */
    height: 2px;
    background-color: #7f1010;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-icon::before {
    top: -6px; /* Position above the main bar */
}

.header-menu-icon::after {
    top: 6px; /* Position below the main bar */
}

.ts_button{
    display: inline-block;   
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.ts_button.facebook, .ts_button.facebook:hover {
    background-color: #fff;
    color: #1877F2;
}

.ts_button.twitter, .ts_button.twitter:hover {
    background-color: #fff;
    color: #1DA1F2;
}

.ts_button.instagram, .ts_button.instagram:hover {
    background-color: #fff; 
    color: rgb(228, 64, 95);
}

.ts_button.linkedin, .ts_button.linkedin:hover {
    background-color: #fff;
    color: rgb(10, 102, 194);
}


.s-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    position: fixed;
    
}

.logo-text{
    color: #fff;
    transition: color 0.3s ease;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo {
    display: inline-block;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 1.75rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-logo a {
    display: block;
    margin: 9px 0 0 0;
    padding: 0;
    outline: 0;
    border: none;   
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*Header*/

.s-header {
    width: 100%;
    font-size:0.8rem;
    height: 7.5rem;    
    padding: 20px;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-out;
}

.s-header.white {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in;
    color: #000;
}

.header-logo {
    flex: 0 0 auto;
}

.main-navigation {
    flex: 1 1 auto;
    text-align: right;
    margin-right: 2rem;
    z-index: 9;
}

.main__list {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main__list li {
    display: inline-block;
    margin-left: 20px;
}

.main__list li:first-child {
    margin-left: 0;
}

.main__list li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;    
    font-weight: 500;
}

.main__list li.active a {
    font-weight: 600;
    color: #fff;
}

.s-header.white .main__list li a {
    color: #000;
}

.s-header.white .main__list li.active a {
    color: #f56161;
}

.underline {
    position: relative;    
    height: 2px;
    width: 0;
    left: 50%;
    bottom: -4px;
    transition: all .3s;
    display: block;
}

.main__list li.active .underline{
    width: 100%;    
    left: 0;     
}

.s-header.white .main__list li a .underline {
    background-color: transparent; /* Default underline color on scroll */
}

.s-header.white .main__list li.active a .underline {
    background-color: #f56161; /* Underline color of active item on scroll */
}

.site-logo{
    position: relative;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
}

/* carousel */
.brands{
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 60px;
    position: relative;
}

.slider{
    height: 100vh;   
    position: relative;
}
.slider-item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 1%, transparent
    );
}
.slider-content{
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 40%;
    width: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.slider-content p{
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 2px;
}

.slider-content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider-content h2{
    font-size: 5rem;
    margin: 0;
    color: #fdc001;
}

.slider-item.active{
    opacity: 1;
    z-index: -10;
}

@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider-item.active p:nth-child(1),
.slider-item.active h2,
.slider-item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider-item.active h2{
    animation-delay: 1s;
}

.slider-item.active p:nth-child(3){
    animation-duration: 1.3s;
}

.arrows{
    transform: translate(-50%, -50%);
    position: absolute;
    bottom: 0;
    left: 50%;   
}

.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}

.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    display: none;
    /*position: absolute;*/
    bottom: 50px;
    z-index: 11;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail::-webkit-scrollbar{
    width: 0;
}

.thumbnail .item{
    display: none;
    width: 150px;
   /* height: 220px;*/
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active{
    filter: brightness(1);
}

.thumbnail .item .slider-content{
    position: absolute;
    inset: auto 10px 10px 10px;
    color: #26e51b;
}
/*about*/
#about{
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.about-us {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    padding: 4rem;
    gap: 2rem;
}

.about-image{
    background: linear-gradient(to right, #edbe74 0%, #ffca9d 100%);
    margin: 2rem 0 2rem 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;   
    flex: 1 1 40%;  
    position: relative;
       
}

.about-image img{
    margin-left: -2em;
    margin-top: -2em;
    margin-bottom: 2em;
    border-radius: 5px;
    width: 100%;
}

.about-text{
    flex: 50%;
    padding: 40px 52px 0 0;
}

.text-container{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
	padding: 2rem;
}

.about-text p{
    font-family: 'josefin sans', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
}

.social_buttons {
    display: flex;
    justify-content: flex-start;
    margin: 2rem 0;
    gap: 1rem;
}

.social_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 24px;
    color: #fff;
    background-color: #333;
    border-radius: 50%;  
}

.social_button.facebook {
    background-color: #1877F2;
}

.social_button.twitter {
    background-color: #1DA1F2;
}

.social_button.instagram {
    background-color: rgb(228, 64, 95); 
}

.social_button.linkedin {
    background-color: rgb(10, 102, 194);
}

/* brands carousel*/
.carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100; 
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
}

/* end fix */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav .fa-caret-left, .fa-caret-right {
    font-size: 3rem;
    color: #ffd601;
}

.owl-item img{
    background: #eee;
    display: flex;
    gap: 1rem;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav .owl-prev {
    left: -40px;
}

.owl-nav .owl-next {
    right: -40px;
}

/*services*/

#services{
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.services-container{
    margin: 5rem auto;
}

.text-color{
    color: #fd746c;
}

#hexGrid {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    list-style-type: none;
}
  
.hex {
    position: relative;
    visibility:hidden;
    outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */   
    transition: all 0.5s;
    backface-visibility: hidden;
    will-change: transform;   
}

.hex::after{
    content:'';
    display:block;
    padding-bottom: 86.602%;  /* =  100 / tan(60) * 1.5 */
}

.hexIn{
    position: absolute;
    width:96%;
    padding-bottom: 110.851%; /* =  width / sin(60) */
    margin:0 2%;
    overflow: hidden;
    visibility: hidden;
    outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
    -webkit-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
    -ms-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
    transform: rotate3d(0,0,1,-60deg) skewY(30deg);
}

.hexIn * {
    position: absolute;
    visibility: visible;
    outline:1px solid transparent; 
}

.hexLink {
    display:block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
    -ms-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
    transform: skewY(-30deg) rotate3d(0,0,1,60deg);
}

.hexLink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

.hex img {
    left: -100%;
    right: -100%;
    width: auto;
    height: 100%;
    margin: 0 auto;
    -webkit-transform: rotate3d(0,0,0,0deg);
    -ms-transform: rotate3d(0,0,0,0deg);
    transform: rotate3d(0,0,0,0deg);
    transition: all 0.5s;
}

.hexLink:hover img,
.hexLink:focus img {
    filter: brightness(20%);
    transform: scale(1.05);
}
  
.hex h1, .hex p {
    width: 100%;
    color: #fff;
    padding: 5%;
    box-sizing: border-box;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hex h1 {    
    font-size: 1.2rem;
    z-index: 1;
}
  
.hex p {
    top: 50%;
    padding-top: 20px;
}

.hex h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45%;
    width: 10%;
    text-align: center;
    border-bottom: 1px solid #fff;
}

/* HOVER EFFECT  */
.hexLink:hover h1, .hexLink:focus h1,
.hexLink:hover p, .hexLink:focus p {
  opacity: 1;
}

.hexLink:hover,
.hexLink:focus {
  background-color: rgba(0, 0, 0, 0.747);
}

/*** HEXAGON SIZING AND EVEN ROW INDENTATION ****/
@media (min-width:1201px) { 
    #hexGrid{
        padding-bottom: 7.4%;
        width: 50%;
        transition: all 0.3s ease;
    }

    .hex {
        width: 33%; 
        transition: all 0.3s ease;
    }

    .hex:nth-child(9n+5){ 
        margin-left: 0;  
    }

    .hex:nth-child(5n+4){ 
        margin-left: 16.6%;  
    }
}
  
@media (max-width: 1200px) and (min-width:901px) { 
    #hexGrid{
      padding-bottom: 7.5%;
      width: 90%;
    }

    .hex {
      width: 33.333%; 
      transition: all 0.3s ease;
    }

    .hex:nth-child(7n+5){ 
      margin-left: 0;  
    }

     .hex:nth-child(5n+4){ 
      margin-left:16.666%;  
    }
  
}
  
@media (max-width: 900px) and (min-width:601px) { 
    #hexGrid{
        padding-bottom: 7.4%; 
        width: 90%;             
    }

    .hex {
        width: 33.333%; 
        transition: all 0.3s ease;
    }

    .hex:nth-child(5n+4){
        margin-left:16.666%;  
    }
}
    
@media (max-width: 600px) { 
    #hexGrid{
        padding-bottom: 11.2%;
        width: 90%;
    }

    .hex {
        width: 50%; 
        transition: all 0.3s ease;
    }

    .hex:nth-child(3n+3){ 
        margin-left:25%;  
    }
}

@media (max-width: 420px) {
    #hexGrid {
        font-size: 13px;
    }
    
    #hexGrid{
        padding-bottom: 11.2%
    }
    
    .hex {
        width: 100%; 
        margin: 0 0 5.7rem 0;
        transition: all 0.3s ease;
    }
    
    .hex:nth-child(3n+3){ 
        margin-left:0;  
    }
}
/**/
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    font-size: 32px;
    margin-bottom: 10px;
    animation: fadeInDown 1s;
}
.shape {
    width: 60px;
    height: 3px;
    background: #000;
    margin: 0 auto;
    animation: fadeInDown 1s;
}
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.col {
    flex: 1;
    min-width: 280px;
}

.content-left, .content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show-box img {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeInUp 1s;
}

.box-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: fadeIn 1s;
}

.features-icon {
    font-size: 2rem;
    color: #007bff;
}

.text h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.text p {
    margin: 0;
    color: #555;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*Process*/
#process{
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.process-wrapper {
	margin: auto;
	max-width: 1400px;
}

#progress-bar-container {
	position: relative;
	width: 90%;
	margin: auto;
	height: 100px;
	margin-top: 65px;
	margin-bottom: 75px;
	z-index: 1;
}

#progress-bar-container ul {
	padding: 0;
	margin: 0;
	padding-top: 15px;
	z-index: 9999;
	position: absolute;
	width: 100%;
	margin-top: -40px
}

#progress-bar-container li:before {
	content: " ";
	display: block;	
	margin: auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;	
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/*#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
	/*border: solid 2px #fff;*/
	/*background: linear-gradient(to right, #fd746c   0%, #734b6d 100%);
}*/

#progress-bar-container li {
	list-style: none;
	float: left;
	width: 20%;
	text-align: center;
	color: #aaa;
	text-transform: uppercase;
	font-size: 11px;
	cursor: pointer;
	font-weight: 700;
	transition: all ease 0.2s;
	vertical-align: bottom;
	height: 60px;
	top: 64px;
	position: relative;
}

#progress-bar-container li .step-inner {
	font-family: 'comfortaa';
	position: absolute;
	width: 100%;
	bottom: 0;
	font-size: 0.75rem;
	top: 60px;
	word-wrap: break-word
}

#progress-bar-container li.active,
#progress-bar-container li:hover {
	color: #fc6b6b ;
}

#progress-bar-container li:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: #706f6f;
	margin: auto;
	border: solid 7px #fff;
	border-radius: 50%;
	margin-top: -30px;
	box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.3);
	-webkit-transition: all ease 0.2s;
	-moz-transition: all ease 0.2s;
	-ms-transition: all ease 0.2s;
	-o-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

#progress-bar-container li:hover:after {
	background: #555;
}

#progress-bar-container li.active:after {
	background: #00b32d;
}

#progress-bar-container #line {
	width: 80%;
	margin: auto;
	background: #706f6f;
	height: 6px;
	position: absolute;
	left: 10%;
	top: 57px;
	z-index: 1;
	border-radius: 50px;
	-webkit-transition: all ease 0.9s;	
	-moz-transition: all ease 0.9s;
	-ms-transition: all ease 0.9s;
	-o-ms-transition: all ease 0.9s;
	transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
	content: " ";
	width: 3%;
	height: 100%;
	background: #00b300;
	background: linear-gradient(to right, #f58e3a 0%, #d0d336 100%);
	position: absolute;
	z-index: 2;
	border: 1px dashed gray;
	border-radius: 50px;
	-webkit-transition: all ease 0.9s;	
	-moz-transition: all ease 0.9s;
	-ms-transition: all ease 0.9s;
	-o-ms-transition: all ease 0.9s;
	transition: all ease 0.9s;	
}

.section-content img {
	max-width: 100%;
	height:100%;
	max-height:18.75rem;
}

.hr1{
	padding-top: 5rem;
	padding-bottom: 1.5rem;
}

.hr1:after{
	content: "";
    display: flex;
    border-top: double #42275a;      
    width: 20rem;
    align-items: center;
    justify-content: center;
    margin: 0.8rem auto;
}

#progress-content-section {
	width: 90%;
	margin: auto;
	background: #fefefe;	
	
	border-radius: 12px;	
}

#progress-content-section .section-content {
	padding: 30px 40px;
	text-align: center;
}

#progress-content-section .section-content h2 {
	font-size: 1rem;	
	color:  #734b6d;
	letter-spacing: 1px;
}

#progress-content-section .section-content p {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #777;
    text-align: center;
    max-width: 960px;
}

#progress-content-section .section-content {
	display: none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode: forwards;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
	transform: translateY(15px);
	opacity: 0;	
}

#progress-content-section .section-content.active {
	display: block;
}

@keyframes FadeInUp {
	0% {
		transform: translateY(15px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		opacity: 1;
	}
}

#progress-bar-container li:after:active {
	color: #fd746c;
}

.p-numbers{
	position: absolute;
    bottom: 70px;    
    width: 100%;
	font-size: 1rem;
}

/*chooe*/
#choose{	
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;       
    color: #000;
}

#choose h2{
	text-align: center;
    line-height: 1.5;
}

.choose-text p{
    font-family: "Montserrat", sans-serif;
    max-width: 65%;
    margin: 0 auto 5rem auto;
    font-size: 1.1rem;
    line-height: 1.5;
    
}

.horizontal-line h2{
	text-align: center;
	padding: 0.8rem;
}

.horizontal-line img {
    width: 100%; 
    max-width: 10rem; 
    height: auto; 
    display: block; 
    margin: auto auto 2rem auto; 
	
}

.wrapper{
    display: flex;
    justify-content: center;    
	gap: 1.5rem
}
/* card*/
 .wrapper-card {
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
	gap: 1rem;
    max-width: 350px;	
    min-height: 350px;   
    padding: 30px;
    border-radius: 3px;
    box-sizing: border-box;
    color: #FFF;   
	border-radius: 15px;
    border-top: 1px solid #d9b555;     
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

 .wrapper-card:nth-child(2){
    background: #fff;
}

 .wrapper > .wrapper-card:last-child{
    background: #fff;	
    justify-self: center;
        
}

 .card-title{
     margin-top: 0;
     font-size: 16px;
     font-weight: 600;
     letter-spacing: 1.2px;
	 font-size: 2rem;
	color: #900C3F;
}

 .card-content{
	 font-family: "Montserrat", sans-serif;
     font-size: 1rem;
     letter-spacing: 1px;
     line-height: 1.5;
	 color: #000;
	 text-align: center;
}

 .card-btn{
     all: unset;
     display: block;
     margin-left: auto;
     border: 2px solid #FFF;
     padding: 10px 15px;
     border-radius: 25px;
     font-size: 10px;
     font-weight: 600;
     transition: all 0.5s;
     cursor: pointer;
     letter-spacing: 1.2px;
}
 .card-btn:hover{
    color:#000;
    background: #FFF;
}

 .card:nth-child(2) .card-btn:hover{
    color:#000;
    background: #FFF;
}

 .card:last-child .card-btn:hover{
    color:#0000;
     background: #FFF;
}

.wrapper > .card:nth-child(4) {
	grid-column: span 3;
	justify-self: center;
}

.icon-box{	
	display: flex;    
    justify-content: center;   
    align-items: center;	
    height: 125px;	
	font-size: 4rem;
	color: #4267B2; 	        
}

.chooseus-container {
  margin-top: 5em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

/*gallery*/

.container {
    margin-top: 5em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
}

#gallery{
	padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.work-gallery{
    min-height: 100vh;
    background:#fff;
    padding: 2rem 0 6rem 0;
}

.gallery-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;	
}

.gallery-buttons{
    padding: 0.7rem;
    /* max-width: 170px; */
    /* width: 100%; */
    background: #fff;
    color: #666;
    font-size: 1rem;
    /* line-height: 40px; */
    cursor: pointer;
    margin: 0.2rem;    
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .3);
    text-align: center;
}

.gallery-buttons.active{
    background:coral;
    color:#fff;
}

.image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.image-container .image{
    height:300px;
    width: 350px;
    overflow: hidden;
    border:5px solid #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
}

.image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
	transition: all 0.3s ease-out;
}

.image-container .image:hover img{
    transform: scale(1.4);
	transition: all 0.3s ease-in;
}

.gallery-dropdown {
    display: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

option[value=ice-cream] { 
    padding: 1rem;
}

/* card section. */

    .card-container{
        display: flex;
		flex-wrap: wrap;
		gap: 20px;
    }

    .card {
        flex: 1 1 calc(25% - 40px);
        box-sizing: border-box;
        padding: 20px;       
        border-radius: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .card.show {
        opacity: 1;
        transform: translateY(0);
    }

    .card.hide{
        opacity: 0;
        transform: scale(0.9);
        pointer-events: none;
        position: absolute;
    }

  
    .card-inner {
        width: 100%;
        position: relative;	           
        background: var(--clr);
        border-radius: 1.25rem;
        border-bottom-right-radius: 0;
        overflow: hidden;
    }


    .imgBox img {
        width: 100%;
        border-radius: 1.25rem;
    }

    .icon {
        margin-top: 10px;
    }

    .iconBox {
        font-size: 24px;
        text-decoration: none;
    }
  
    .iconBox {
        background: #5d5858;
    }

    .iconBox {
        position: absolute;
        inset: 0.625rem;        
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

    .content {
        text-align: center;
        margin-top: 10px;
    }
  
    .imgBox img {
        width: 100%;
        height: 100%;        
        display: block;
    }
  
    .hidden {
        display: none;
    }

    .imgBox {
        position: relative;
        inset: 0;
    }

    .imgBox1{
        position: absolute;
        inset: 0;
    }

    .icon {
        position: absolute;
        bottom: -0.375rem;
        right: -0.375rem;
        width: 4.5rem;
        height: 4.5rem;
        background: #fff;
        border-top-left-radius: 50%;
    }

    .icon img{
        display: block;
        border-radius: 50%;
        width: 100%;
        height: 100%;
    }
      
    .icon::before {
        position: absolute;
        content: "";
        bottom: 0.375rem;
        left: -1.25rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
   }

    .icon::after {
        position: absolute;
        content: "";
        top: -1.25rem;
        right: 0.375rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
    }

    .image{
        transition: all 0.4s ease-in-out;
    }

    .image.show {
        display: block;
        opacity: 1;
    }
/*.icon {
    position: absolute;  
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem; 
    border-top-left-radius: 50%;
    z-index: 9;
	transition: 0.3s;
}*/

/*Contact*/

#contact{	
	padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
	background-color: #fff;
	border-radius: 5px;	
}

.form-container{
	display: flex;
	flex-wrap: wrap;	
	align-items: center;
	margin: 0 auto;
}

.form-container iframe{
	width: 50%;
	margin: 1rem;
    padding: 1rem;
}

#contact-form {
	display: grid;
	gap: 10px;
	width: 100%;
    max-width: 45%;
    margin: 0 auto;
    padding: 1rem;
}

label {
	display: block;
	font-weight: bold;
}

input, textarea {
	font-family: 'Josefin Sans';
	width: 100%;
	font-size: 1rem;
	padding: 2rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
	margin: 1rem 0;
}

input[type="submit"] {
	background-color: #330202;
	padding: 1.5rem;
	color: #fff;
	border: none;
	border-radius: 5px;			
	cursor: pointer;
	width: 50%; 
	margin-left: auto;
	display: block; 
	margin-top: -0.5rem;
	transition: all 0.3s ease-in-out;
}

/*parallax section*/
.parallax-section {
    position: relative;
	width: 100%;
	margin: 5rem 0 5rem 0;
    height: 100%;
    background: #eee;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.parallax-section img{
    display: flex;
    justify-content: flex-start;
    max-width: 80%;
}

.parallax-overlay {
    position: relative;    
    padding: 2rem;
    text-align: center;
    color: #ff7a57;
    border-radius: 8px;	
}


.parallax-overlay h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
	color: #900c3f;
}

.mt-button {
    position: relative;
    background-color: #fff;
    font-size: 13px;
    font-weight: 800;
    color: #000;
    padding: 0.7rem 20px;
    border: 2px solid #fff;   
    text-decoration: none;
    z-index: 5;
    transition: all 0.3s ease, color 0.3s ease;
}

.mt-button::before {
    position: absolute;
    width: 100px;
    height: 40px;
    content: '';    
    z-index: -1;   
    top: 5px;
    bottom: 10px;
    background: url(../images/1.jpg) repeat;
	}

.mt-button:hover {
    background: #fff;
    color: #000;
}

/* General styling for messages */
.message {
    display: none; 
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Success message styling */
.success-message {
    background-color: #77ac38;
    color: #000;
    border: 1px solid #c3e6cb;
    text-align: center;
    max-width:  500px;
    margin: 0 auto;
    font-size: 1.5rem;
}

/* Error message styling */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    text-align: center;
    max-width:  500px;
}

/*footer-section*/
#footer-year{
	display: flex;
	justify-content: center;	
	color: #900C3F;
	background: #fff;
	height: 4rem;
    align-items: center;
	box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 3rem;
    background:#a19b9b;
    color: #fff;
	height: 100%;
	align-items: start;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 1.2rem;    
    color: #fff;
    text-align: left;
}

.footer-column p{
	line-height: 1.8;
    letter-spacing: 1.2px;
    text-align: left;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
	line-height: 1.5;
    text-align: left;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column form {
    display: flex;
    flex-direction: column;
}

.footer-column input[type="email"] {
    padding: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.footer-column button {
    padding: 1rem;
    background-color: #330202;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 5px;
}

.footer-column button:hover {
    background-color: #330202;
}

.fsocial_buttons {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1rem;
    gap: 1rem;
}

/* Scroll to top button styles */
.scroll-to-top {
    display: none;
    position: fixed;
	width: 3rem;
	height: 3rem;
    bottom: 0;
    right: 1.2rem;
    background-color: #fdc001;
    color: white;
    border: none;
    padding: 0.5rem;   
    cursor: pointer;
    font-size: 1.8rem;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.fs_buttons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}
/*subscribe*/
#form-success-message{
    color: #fff;
    background: #7EC826;
    padding: 2rem;
    width: 100%;
    margin: 1rem auto;
    display: block;
    font-size: 2rem;
    text-align: center;
}

#form-error-message{
  color: #fff;
  background: #f00;
  padding: 2rem;
  width: 100%;
  margin: 1rem auto;
  display: block;
  font-size: 2rem;
  text-align: center;
}
/*whatsapp chat*/
.whatsapp-chat {
  position: fixed;
  right: 30px;
  bottom: 7rem;
  font-family: Arial;
}

.answer {
  display: none;
}
.whatsapp-chat-checkbox {
  visibility: hidden;
}

.whatsapp-wrap {
  display: none;
  position: relative;
  right: 0;
  bottom: 50px;
  width: 380px;
  box-shadow: 0 8px 25px -5px rgba(45, 62, 79, 0.35);
  border-radius: 6px;
  max-width: 20rem;
}

.whatsapp-wrap:before {
  content: "";
  position: absolute;
  background: #f6f6f7;
  bottom: -6px;
  right: 24px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
}

.whatsapp-title {
  font-size: 18px;
  background-color: #24d064;
  color: white;
  line-height: 60px;
  display: flex;
  padding: 0 15px;
  border-radius: 6px 6px 0 0;
  position: relative;
  align-items: center;
}

.whatsapp-title .fa-whatsapp {
  font-size: 24px;
  width: 50px;
}

.whatsapp-title span {
  width: calc(100% - 50px);
}

.whatsapp-items {
  background-color: white;
  overflow: hidden;
}

.whatsapp-list-item {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  padding: 15px;
  cursor: pointer;
}

.whatsapp-list-item:hover {
  color: black;
  background-color: rgba(221, 221, 221, 0.15);
}

.whatsapp-list-item-avatar img {
  width: 50px;
  height: auto;
  margin-right: 5px;
}

.whatsapp-list-item-avatar {
  width: 50px;
}

.whatsapp-list-item-avatar i {
  font-size: 24px;
}

.whatsapp-list-item-info {
  display: grid;
  width: calc(100% - 50px);
}

.whatsapp-list-item-label {
  font-size: 12px;
  line-height: 1.5em;
}

.whatsapp-list-item-name {
  font-weight: bold;
  line-height: 1.5em;
  font-size: 14px;
}

.whatsapp-list-item-message {
  padding: 16px 0 20px 0;
  border-radius: 0 0 6px 6px;
  text-align: center;
  font-size: 16px;
  color: gray;
  background-color: #f6f6f7;
}

.whatsapp-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.whatsapp-row-item:hover {
  color: #24d064;
  background: rgba(245, 245, 245, 0.4);
  padding-left: 25px;
}

.burbuja-whatsapp {
  display: grid;
  position: fixed;
  height: 55px;
  right: 20px;
  bottom: 5rem;
  align-items: center;
  cursor: pointer;
}

/*.bur-text-content {
    background: #fff;
    padding: 0 56px 0 12px;
    border-radius: 20px;
    height: 45px;
    display: grid;
    align-items: center;
    align-content: center;
    text-align: center;
    border: 1px solid rgba(207, 216, 220, 0.3);
    width: 209px;
    box-sizing: border-box;
    position: absolute;
    right: 20px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .bur-txt-1 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .bur-txt-2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 11px;
  }
  
  .burbuja-whatsapp:hover .bur-txt-1 {
    margin-left: -339px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .bur-txt-1::after {
    content: "Click here";
    position: absolute;
    text-align: center;
    width: 209px;
    color: #fff;
  }*/

.burbuja-whatsapp:hover .bur-txt-2 {
  color: #fff;
}

.burbuja-whatsapp:hover .bur-text-content {
  background: #25d366;
}

.burbuja-whatsapp i {
  color: #fff;
  font-size: 28px;
}

.bur-icon-content {
  width: 3rem;
  height: 3rem;
}

.bur-icon-img {
  position: relative;
  z-index: 9;
  font-size: 1.5rem;
  color: #fff;
}

.pulsar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.pulsar-1,
.pulsar-2,
.pulsar-3 {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  animation: radial-pulsar 2.3s infinite;
}

.pulsar-1 {
  background: rgba(37, 211, 102, 1);
}

.pulsar-2 {
  animation-delay: 1.3333s;
}

.pulsar-3 {
  animation-delay: 2.6666s;
}

.bur-space-brdr {
  height: 100%;
  width: 100%;
  position: absolute;
  /*width: 55px;*/
 /* height: 55px;*/
  border-radius: 50%;
}
  
@keyframes radial-pulsar {
    0% {
      box-shadow: 0 0 0 0em rgba(37, 211, 102, 0.8);
    }
  
    50% {
      box-shadow: 0 0 0 1em rgba(255, 100, 100, 0);
    }
  
    100% {
      box-shadow: 0 0 0 0 rgba(255, 100, 100, 0);
    }
}

/* Media Queries*/

@media (min-width: 992px) {
    .chooseus-container {
	    margin-top: 5em;
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	    gap: 2rem;
	}
	
	.wrapper{
		flex-wrap: wrap;
	}   
   
}

@media (min-width: 540px) {
	form {
		grid-template-columns: 1fr;
	}

	.split-input {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}	 
}


@media (max-width: 992px) {	
	
	.wrapper{
		flex-wrap: wrap;
	}

    .card {
        flex: 1 1 calc(50% - 40px);
    }

    .about-us {
        display: block;
        padding-top: 50px;
    }

    .about-text {
        padding: 0 0 40px;
    }

    .about-image {
        float: left;
        width: 40%;
        max-width: 300px;
        margin-right: 20px;
    }

    .slider-content{
        width: 80%;
        max-width: 100%;
    }	

    .cssportal-grid {
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: 1fr 1fr;
    }

    .services-card1 {
        grid-area: 1 / 1 / 3 / 5;
    }
	
	.services-card2{
	    grid-area: 3;
	}

    .services-card3{
        grid-area: 3; 
    }
	 
	.services-card4{
	    grid-area: 4;
	}

    .services-card5{
        grid-area: 4;
    }

    .services-card6{
        grid-area: 5;
    }

    .services-card7{
        grid-area: 5;
    }
	
	.form-container{
		flex-direction: column-reverse;		
	}
	
	.form-container iframe {
		width: 90%;
	}
	
	#contact-form{
		max-width: 100%;
		
	}
 
}
	

@media (max-width: 768px) {
	
	.wrapper-card{
		max-width: 100%;
        margin: 1.5rem;
	}
	
	.card{
		max-width: 100%;
	}
	
	.wrapper{
		flex-wrap: wrap;
	}
	
	.parallax-overlay h2 {
        font-size: 1.5rem;
    }

    .mt-button {
        font-size: 12px;
        padding: 8px 16px;
    }
	
	.footer {
       display: flex;
       flex-direction: column;
		height: auto;
    }

    .footer-column h3{
        margin: 3rem 0 0 0;
    }
	
	.gallery-buttons {
        display: none;
    }

    .gallery-dropdown {
        display: block;
		margin: 0 auto;
		width: 50%;
		padding: 1rem;
    }
	
	.image-container .image{
		height: 350px;
        width: 90%;
	}

    .card {
        flex: 1 1 calc(50% - 40px);
    }

    .about_img,
    .about_details {
        flex: 0 0 100%; /* Take up full width on smaller screens */
    }

    .about-us{
        padding: 2rem;
    }

    .about-image {
        display: flex;
        max-width: 100%;
        width: auto;
        margin:0 0 2rem;
    }

    .slider-content{
        width: 80%;
        max-width: 100%;
    }
    
    .parallax-section{
        flex-direction: column;
    }

    .choose-text p{
        font-family: "Montserrat", sans-serif;
        max-width: 90%;
    }
	
}

@media (max-width: 540px) {		

	input[type="submit"] {
		width: 100%;
	}	
	
	.wrapper{
		flex-wrap: wrap;
	}

    .about-us {
        padding: 1.5rem;
    }

    .footer {
        display: flex;
        flex-direction: column;
    }

    .cssportal-grid{
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    #progress-content-section{
        width: 100%;
    }

    #progress-content-section .section-content p {
        padding: 1rem;
    }

    #progress-bar-container li .step-inner {
        font-size: 8px;
    }

    .parallax-section {
        padding: 0.9rem;
    }

    #progress-content-section .section-content {
        padding:0;
        text-align: center;
    }
    
    .parallax-overlay h2 {
        font-size: 1rem;
    }
}

/* responsive header */
@media only screen and (max-width: 900px) {	
    .main-navigation{
        display: none;
    }
    
    .header-menu-toggle {
        display: block;
    }

 }
 
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider-content h2{
        font-size: 60px;
    }       
    
}

@media only screen and (max-width: 600px) {
    .s-header {
        height: 7.5rem;
    }
    .header-logo {
        left: 20px;
    }
    
    .header-menu-toggle {
        right: 25px;
        background-color: #0047ab;
    }
   
    .card {
        flex: 1 1 calc(100% - 40px);
    }    
 

}

@media only screen and (max-width: 400px) {

    .header-logo {
        left: 10px;
    }

}

@media (hover: none) and (pointer: coarse) {
    .hexLink:hover,
    .hexLink:focus {
      background-color: transparent;
    }
    
    .hexLink:hover h1, .hexLink:focus h1,
    .hexLink:hover p, .hexLink:focus p {
      opacity: 1;
    }
}
/* home */
.s-home {
    width: 100%;
    height: 100%;
    min-height: 786px;   
    position: relative;
    display: table;
}


