@charset "utf-8";
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
               --primary-blue: #0ea5e9;
    --deep-blue: #0369a1;
    --light-blue: #e0f2fe;
    --sky-blue: #7dd3fc;
    --navy-accent: #1e40af;
    --lighthouse-white: #ffffff;
    --soft-white: #fefefe;
    --cream-white: #f8fafc;
    --ocean-mist: #f0f9ff;
    --cloud-gray: #94a3b8;
    --storm-gray: #475569;
    --lighthouse-red: #dc2626;
    --warm-gold: #f59e0b;
    --seafoam: #06b6d4;
    --gentle-teal: #0891b2;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background: var(--white);
        }
#main-content
{background: #f8fafc;}
        .container {
            max-width: 1200px;
            margin: 0 auto;
           padding: 0 16px 27px;
        }

        /* Navigation */
        nav {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
           width:285px;
        }
        .logo image{}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #444d5b;
            font-weight: 700;
            transition: color 0.3s ease;
			    font-size: 17px;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .cta-btn {
           background: linear-gradient(135deg, var(--primary-blue), var(--seafoam));
    color: var(--lighthouse-white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
        }

        .cta-btn:hover {
               background: linear-gradient(135deg, var(--deep-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.3);color: #FFF !important; text-decoration: none;
        }
        .cta-btn a:hover{color: #FFF !important; text-decoration: none;}

        /* Hero Section */
        .hero {
          background: linear-gradient(135deg, var(--ocean-mist) 0%, var(--light-blue) 50%, var(--lighthouse-white) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
              font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue), var(--seafoam));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(14, 165, 233, 0.1);
    padding-top: 35px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--medium-gray);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-blue);
            transition: all 0.3s ease;
        }

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

        /* Services Section */
        .services {
            padding: 3rem 0;
            background: var(--soft-gray);
        }
 .workshop {
            padding: 3rem 0;
            
        }
 .team {
            padding: 3rem 0;
            
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            padding-bottom:0px;
            margin-bottom: 0px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
             padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 20px
            font-weight: 700;
            margin-bottom: 0rem;
            color: var(--dark-gray);
        }

        .service-card p {
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
			    font-size: 17px;
        }

        .service-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-link:hover {
            color: var(--accent-purple);
        }

        /* Features Section */
        .features {
            padding: 3rem 0;
            background: #f8fafc;
        }
.pag-bg{  background: #f8fafc;}
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--success-green);
            font-size: 2rem;
        }

        .feature h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

        .feature p {
            color: var(--medium-gray);
        }

        /* CTA Section */
        .cta-section {
           background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 50%, var(--navy-accent) 100%);
            color: var(--white);
            padding: 6rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary-blue);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        /* Footer */
        footer {
           background: linear-gradient(135deg, var(--storm-gray) 0%, #334155 100%);
    color: var(--lighthouse-white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: #FFF;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* Page Content (Hidden by default) */
        .page-content {
            display: none;
           
        }

        .page-content.active {
            display: block;
        }

        /* Workshop Cards */
        .workshop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .workshop-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .workshop-card:hover {
            transform: translateY(-5px);
        }

        .workshop-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 50%, var(--navy-accent) 100%);
            color: var(--white);
            padding: 2rem 10px;
            text-align: center;
			 
        }
        .workshop-header h2{font-weight: 800;}
.workshop-header h3{font-size: 22px;}
        .workshop-content {
            padding: 2rem;color: var(--medium-gray);
        }

        .workshop-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

        .workshop-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .workshop-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .workshop-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }


 .workshop1-content ul {
            list-style: none;
            margin-bottom: 1.5rem;color: var(--medium-gray);
        }

        .workshop1-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1rem;
        }

        .workshop1-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }



 /* transform Cards */
        .transform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .transform-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .transform-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            color: var(--white);
            padding: 2rem;
            text-align: center;    height: 29%;
        }
.transform-header h3{font-size: 1.5rem;}
        .transform-content {
            padding: 2rem;color: var(--medium-gray);
        }

        .transform-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

        .transform-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .transform-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .transform-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }


 .transform1-content ul {
            list-style: none;
            margin-bottom: 1.5rem;color: var(--medium-gray);
        }

        .transform1-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1rem;
        }

        .transform1-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }


.bl a{color: #0ea5e9;}

        /* Responsive Design */
        @media (max-width: 768px) {
			.logo {
				width: 250px;}
                .nav-container {
        padding: 0.3em !important;
    }
			.hero {
   padding: 8rem 0 2rem;}
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .services-grid,
            .features-grid,
            .workshop-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Interactive Elements */
        .interactive-element {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .interactive-element:hover {
            transform: scale(1.02);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* GPT Chat Interface */
        .gpt-chat {
            background: var(--light-blue);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .gpt-chat h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-3px);
        }

        .blog-card-content {
            padding: 1.5rem;
        }

        .blog-meta {
            color: var(--medium-gray);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .customer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem 0;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary-blue);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--medium-gray);
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--dark-gray);
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--light-blue);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
        }
		
	#contact-form {
  max-width: 66%;
  margin: 0 auto;
}

label {
  font-weight: 400;
  cursor: pointer;
}

textarea,
input {
  border: none;
  outline: none;
  border-radius: 0;
  text-align: center;
  background: none;
  font-weight: 700;
  font-family: 'Lato', georgia;
  font-size: 25px;
  color: #000;
  max-width: 90%;
  padding: 1rem;
  border: 2px dashed rgba(0, 0, 0, 0);
  box-sizing: border-box;
  cursor: text;
}

textarea {
  text-align: left;
  /* overflow:hidden; */
  
  resize: none;
  width: 90%;
  border-color: rgba(255, 255, 255, 0)
}

textarea:focus {
  background-color: rgba(0, 0, 0, 0.04);
  border: 2px dashed rgba(0, 0, 0, 1);
}

textarea:focus:required:valid {
  border: 2px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

textarea:required:valid {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

input {
  border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
}

input:required,
textarea:required {
  border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
}

input:focus {
  border-bottom: 2px dashed rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, 0.04);
}

input:required:valid {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

input:required:invalid {
  color: rgba(0, 0, 0, 0.5);
}

::-webkit-input-placeholder {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

:-ms-input-placeholder {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
  font-weight: 400;
}

.expanding {
  vertical-align: top;
}

.send-icn {
  fill: rgb(37 99 235);
}

.send-icn:hover {
  fill: rgba(0, 0, 0, 1);
  cursor: pointer;
}
 
button:hover small {
  opacity: 1;
}

small {
  display: block;
  opacity: 0;
}

.website {
  opacity: 1;
  font-size: 16px;
  color: #000;
  position: relative;
  text-align: center;
  display: block;
  margin-top: 7%;
  
}

.website a {
  color: #000;
}

 .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .team-icon {
           
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 1.5rem;
        }

        .team-card h3 {
            font-size: 24px;
            padding-bottom: 10px;
            font-weight: 700;
            margin-bottom: 0rem;
            color: var(--dark-gray);
            text-align: left;
        }

        .team-card p {
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
			    font-size: 16px;
                text-align: left;
        }

        .team-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .team-link:hover {
            color: var(--accent-purple);
        }
	
.aboutus{padding: 20px;}
.aboutus p{font-size: 17px;
    line-height: 31px;
    text-align: left;
color: var(--medium-gray);}	

.aboutus-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
	color: var(--medium-gray);
        }

        .aboutus-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1rem;
        }

        .aboutus-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }
.aboutus h4{ padding: 14px 0;}

.contact h1{  font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
  padding: 57px 0px 0px;}

.contact-content{padding: 0;}

.contact-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
	color: var(--medium-gray);    font-size: 17px;
        }

        .contact-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--soft-gray);
            position: relative;
            padding-left: 1rem;
        }

        .contact-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }

.paddin{padding: 57px 0;}
.pag-pad-top{padding-top: 100px;}
.workshopbac{background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple)
#7c3aed);
    color: var(--white);
    padding: 2rem;
    text-align: center;}
    .trn {}
    .trn1{ padding:20px 50px 20px 100px; background: url(../images/i1.png) no-repeat left 20px top 15px #FFF; text-align: left; font-size: 16px; margin-bottom: 20px; border-radius: 15px; color: #000;  }
    .trn2{ padding:20px 50px 20px 100px; background: url(../images/i2.png) no-repeat left 20px top 15px #FFF; text-align: left; font-size: 16px; margin-bottom: 20px; border-radius: 15px; color: #000;  }
    .trn3{ padding:20px 50px 20px 100px; background: url(../images/i3.png) no-repeat left 20px top 15px #FFF; text-align: left; font-size: 16px; margin-bottom: 20px; border-radius: 15px; color: #000;  }
    .trn4{ padding:20px 50px 20px 100px; background: url(../images/i4.png) no-repeat left 20px top 15px #FFF; text-align: left; font-size: 16px; margin-bottom: 20px; border-radius: 15px; color: #000;  }
    .trn p{ font-size: 22px;}

.item {
  align-items: center;
display: flex;
 justify-content: center;
}
desktop {display: block;}
.mobile {display: none;}

@media screen and (max-width: 768px) {

.desktop {display: none;}
.mobile {display: block;}
    .section-title {
        font-size: 2.0rem;
        margin-top: 32px;
        margin-bottom: 2px;
        line-height: 32px;
        padding-bottom: 10px;
    }
    .pag-pad-top {
    padding-top: 100px !important;
}
.transform-header p {
        font-size: 15px;
        line-height: 17px !important;
    }
}
.owl-theme .owl-dots .owl-dot span {
    width: 18px !important;
    height: 17px;
        margin: 5px 7px 50px !important;
    background: #564bec !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms 
ease;
    border-radius: 64px;
}

  .transform-header h5 {
        font-size: 17px;
		
    }
    .transform-header p {
        font-size: 13px;
	 }
.rsmm > ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rsmm a {
    display: block;
    color: #5e5e5e;
    text-decoration: none;
    padding: 20px;
}

.rsmm a:hover {
    background: #f6f7f1;
}

.rsmm a.hover {
    background: #f6f7f1;
}

.rsmm li.has-sub {
    position: relative;
}

.rsmm li.has-sub > a > span {
    display: inline-block;
    background: url('img/caret-down.svg') center no-repeat;
    width: 10px;
    height: 16px;
    margin-left: 10px;
    vertical-align: middle;
}

.rsmm li.has-sub > ul {
    position: absolute;
    top: 48px;
    left: 0;
    background: #f6f7f1;
    list-style: none;
    padding-left: 0;
    min-width: 140px;
    max-width: 180px;
    display: none;
}

.rsmm li.has-sub a:not(.hover):hover {
    background: #eceee1;
}

.rsmm.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.rsmm-mobile-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 300px;
    height: 100%;
    background: #fafafa;
    -webkit-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
    -webkit-transition: -webkit-transform .14s;
    transition: -webkit-transform .14s;
    -o-transition: transform .14s;
    transition: transform .14s;
    transition: transform .14s, -webkit-transform .14s;
}

.rsmm-mobile-wrapper.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.rsmm-mobile {
    padding-top: 55px;
    overflow-y: auto;
    max-height: 100%;
}

.rsmm-mobile li.has-sub > a > span {
    display: inline-block;
    background: url('img/caret-down.svg') center no-repeat;
    width: 6px;
    height: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

.rsmm-mobile__close {
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
    overflow: hidden;
    text-indent: 1rem;
    font-size: .75rem;
    border: none;
    background: 0 0;
    color: transparent;
    cursor: pointer;
}

.rsmm-mobile__close::after,
.rsmm-mobile__close::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}

.rsmm-mobile__close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rsmm-mobile__close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rsmm-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rsmm-mobile > ul > li {
    border-bottom: 1px solid #f6f7f1;
}

.rsmm-mobile a {
    padding: 10px 20px;
    display: block;
    font-size: .8rem;
    color: #5e5e5e;
    text-decoration: none;
}

.rsmm-mobile > ul > li > a:hover {
    background: #eee;
}

.rsmm-mobile li.has-sub > ul {
    background: #eee;
}

.rsmm-mobile li.has-sub > ul > li {
    border-top: 1px solid #f6f7f1;
}

.rsmm-mobile li.has-sub > ul > li > a {
    padding-left: 35px;
}

.rsmm-mobile li.has-sub > ul > li > a:hover {
    background: #e1e1e1;
}

.rsmm-mobile li.has-sub.hover > a {
    color: #454545;
}

.rsmm-mobile > ul > li > a {
    color: #5e5e5e;
}

.rsmm-open-button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    border: none;
    font-size: 1.5rem;
    color: transparent;
    background: 0 0;
    cursor: pointer;
    padding: 0;
    display: none;
    outline: none;
    margin: 2vmax;
}

.rsmm-open-button__icon {
    font-size: 1.3rem;
    color: #2563eb;
    margin-left: 1rem;
}

.rsmm-open-button:hover {
    opacity: .6;
}

.rsmm-mask {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity .14s, -webkit-transform 0s .14s;
    transition: opacity .14s, -webkit-transform 0s .14s;
    -o-transition: opacity .14s, transform 0s .14s;
    transition: opacity .14s, transform 0s .14s;
    transition: opacity .14s, transform 0s .14s, -webkit-transform 0s .14s;
    -webkit-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    -o-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    transition-timing-function: cubic-bezier(.7, 0, .3, 1);
}

.rsmm-mask.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    -o-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    opacity: 1;
}
.mobilemenu {
  display: none; /* hide by default */
}

@media (max-width: 991px) {
  .mobilemenu {
    display: block; /* show only on mobile */
  }
}
.gt {
  display: inline-block; /* visible by default */
}

@media (max-width: 767px) {
  .gt {
    display: none; /* hide on mobile */
  }
  #contact-form {
    max-width: 100%;
    margin: 0 auto;
}
}
.nav-links ol, ul, dl {margin-bottom: 0px;}
.pad-top-50{padding-top: 50px !important;}
.wo-sh-det{}
.wo-sh-det ul{margin: 0px; padding: 0px;margin-left: 20px;}
.workshop-header-he{height: 236px;}
.workshop-header-he1{height: 224px;}
@media (max-width: 767px) {
    .workshop-header-he{height: auto;}
.workshop-header-he1{height: auto;}
}