@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a9a9a;
  --secondary-color: #2e7d7d;
  --accent-color: #4fc3f7;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #1a9a9a 0%, #4fc3f7 100%);
    --gradient-primarys: linear-gradient(135deg, #4fc3f7 0%, #1a9a9a 100%);
  --gradient-hero: linear-gradient(135deg, rgba(26, 154, 154, 0.9) 0%, rgba(79, 195, 247, 0.8) 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 40px;
}
/* 
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  font-size: 16px;
}

.contact-item strong {
  font-weight: 600;
  margin-left: 5px;
} */

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 65px;
  width: auto;
}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.contact-btn {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  padding: 12px 25px !important;
  border-radius: var(--border-radius) !important;
  border: none !important;
  font-weight: 600 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  /* transform: translateY(-2px); */
  box-shadow: var(--shadow);
    background: var(--gradient-primarys) !important;
}

.contact-btn::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.slide-bg-2 {
  background: linear-gradient(135deg, rgba(46, 125, 125, 0.9) 0%, rgba(26, 154, 154, 0.8) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.highlight {
  color: #ffd700;
}

.expert-text {
  color: var(--accent-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.feature-text h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.cta-section {
  margin-top: 40px;
}

.cta-text {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

.cta-button {
  background: #ffd700;
  color: var(--text-dark);
  padding: 15px 35px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
  border: 2px dashed #ccc;
}

.hero-img::before {
  content: 'Medical Professional Image';
  display: block;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 3;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 18px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 968px) {
  .top-bar .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 85vw;
    height: 100vh;
    background: #f5f5f5;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-logo {
    height: 35px;
    width: auto;
  }

  .mobile-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .mobile-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .mobile-close:hover {
    background-color: #f0f0f0;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 0;
    gap: 0;
    flex: 1;
  }

  .nav-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-link {
    display: block;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
  }

  .nav-link::after {
    display: none;
  }

  .mobile-footer {
    padding: 30px 20px;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    text-align: center;
    margin-top: auto;
  }

  .mobile-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .footer-logo {
    height: 30px;
    width: auto;
  }

  .footer-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .mobile-copyright {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.5;
  }

  .mobile-copyright strong {
    color: var(--primary-color);
  }

  /* Mobile menu overlay */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-nav {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {

  .notice-section {
    padding: 0px !important;
  }

  .latest-news {
    padding: 0px !important;

}

  .container {
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    min-height: 500px;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .brand-text {
    font-size: 24px;
  }
  
  .top-bar {
    padding: 8px 0;
    font-size: 12px;
  }
  
  .contact-info {
    gap: 10px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-links a {
    font-size: 14px;
  }
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

/* Improved accessibility */
.nav-toggle:focus,
.slider-btn:focus,
.cta-button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000;
    --text-dark: #000;
    --white: #fff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}




  .section-container {
      padding: 50px 20px;
    }
    .title-highlight {
 color:#3D3D3D;
font-family: Poppins;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
    }

    .title-highlight-p{
      color: #4F4F4F;
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
    }

    .title-highlight-button {
      display: flex;
padding: 20px 36px;
align-items: center;
gap: 12px;
align-self: stretch;
      color: #ffffff !important;
      font-family: Manrope;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 28px; /* 116.667% */
      border-radius: 12px;
background: linear-gradient(102deg, #0097B2 0%, #0095DE 87.74%);
box-shadow: -8px 8px 28px 0px rgba(0, 0, 0, 0.06);
    }
    .btn-primary {
      background-color: #0097e6;
      border: none;
      font-weight: bold;
    }
    .btn-primary:hover {
      background-color: #007bb5;
    }
    .feature-list i {
      color: #00b894;
      margin-right: 8px;
    }
    .rounded-img {
      border-radius: 20px;
      width: 100%;
      object-fit: cover;
    }
    .small-heading {
      border-left: 2px solid #0097B2;
  color: #0097B2;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
padding: 0px 10px;
    }




    .card_new-section-heading {
      text-align: center;
      /* margin-top: 40px; */
      margin-bottom: 20px;
    }

    .card_new-section-heading h2 {
      color: #3D3D3D;
      text-align: center;
      font-family: Poppins;
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
line-height: 100%; /* 36px */
text-transform: capitalize;
    }

    .card_new-section-heading span {
      color: #0097B2;
    }

    .card_new-section-heading p{
      color: #009F93;
text-align: center;
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 133.333% */
    }

    .card_new-card {
      border-radius: 12px;
      background: white;
      overflow: hidden;
      transition: transform 0.2s;
      border-radius: 9.35px;
border: 0.892px solid #E6E6E6;
box-shadow: 0px 0px 3.57px 1.785px rgba(0, 0, 0, 0.05);
    }

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

    .card_new-card img {
      max-width: 140px;
      height: 130px;
    }

    .card_new-info {
      padding: 5px;
    }

    .card_new-info h5 {
      color: #0077cc;
      font-weight: 600;
    }

    .card_new-info small {
      display: block;

      color: #555;
      font-size: 11px;
    }

    .card_new-meta {
      font-size: 11px;
      color: #777;
    }

    .card_new-stats-bar {
      background-color: #009688 !important;
      color: #fff;
      display: flex;
      justify-content: space-between;
      padding: 5px 15px;
      font-size: 11px;
    }

    .card_new-stats-bar i {
      margin-right: 6px;
    }

    .card_new-buttons {
      display: flex;
      gap: 10px;
      padding: 15px;
      background: #f8f9fa;
    }

    .card_new-buttons a {
      flex: 1;
    }

    .card_new-btn-visit {
      background-color: #00a7ad;
      color: white;
    }
     .card_new-btn-visit:hover {
      background-color: #00a7ad !important;
      color: white !important;
    }

    .card_new-btn-apply:hover {
      background-color: #007bff !important;
      color: white !important;
    }




    .Expert-wrapper {
      /* background: 
        url('/assets/images/img/Frame\ 2147224120.svg') center/cover no-repeat; */
      color: #fff;
      background-image: url('../images/img/Frame\ 2147224120.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 60px 20px;
    }

    /* .Expert-container {
      max-width: 1200px;
      margin: auto !important;
    } */

    .Expert-title h2 {
     color: #DAF9FF;
text-align: center;
font-family: Manrope;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 52px; /* 144.444% */
    }

    .Expert-title p {
     color: #FFF;
text-align: center;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
    }

    .Expert-feature {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }

    .Expert-number {
 background: linear-gradient(102deg, #A7E2FF 0%, #0095DE 87.74%);

      width: 40px;
      height: 40px;
      font-weight: bold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .Expert-feature h5 {
    color: #A5D4FF;
font-family: Poppins;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 40px; /* 125% */
    }

    .Expert-feature p {
      color: #FFF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
    }

    .Expert-box {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      color: #333;
    }

    .Expert-box h5 {
   color: #045A69;
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }
        .Expert-box p {
color: #646464;
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
    }

    .Expert-box input,
    .Expert-box select {
      border: none;
      border-bottom: 1px solid #00bcd4;
      border-radius: 0;
      padding: 10px 0;
      margin-bottom: 20px;
      width: 100%;
      background: transparent;
    }

    .Expert-box input:focus,
    .Expert-box select:focus {
      outline: none;
      border-color: #007bff;
      box-shadow: none;
    }

    .Expert-submit-btn {
      background-color: #0095DE;
      color: white;
      border: none;
      padding: 12px;
      width: 100%;
      font-weight: bold;
      border-radius: 4px;
    }

    @media (max-width: 768px) {

        .section-container {
      padding: 20px 20px !important;
    }

       .Expert-title h2 {

font-size: 26px !important;
line-height: normal;
text-align: start;


    }
        .Expert-title p  {

font-size: 13px !important;
text-align: start;

    }

       .card_new-section-heading h2 {
      font-size: 18px;

    }
    .card_new-section-heading p{
font-size: 15px;
    }


      .title-highlight{
        font-size: 28px;
      }
        .title-highlight-button{
        font-size: 13px !important;
      }
      .Expert-feature {
        flex-direction: column;
              display: flex;
      gap: 2px;
      margin-bottom: 5px;
      }



    .Expert-feature h5 {
font-family: 'Manrope';
font-size: 26px;
line-height: normal !important;

    }

    .Expert-feature p {

font-size: 14px;
line-height: normal !important;
    }

    .Expert-box {
    padding: 20px;
    }
      .Expert-wrapper {

      padding: 30px 15px;
    }
    }





    .Expertfaq-section {
      max-width: 100%;
      margin: 60px auto;
      padding: 0 20px;
    }

    .Expertfaq-heading {
      font-size: 28px;
      font-weight: 700;
      color: #003b3d;
      margin-bottom: 30px;
      position: relative;
    }

    .Expertfaq-heading::before {
      content: "❓";
      font-size: 32px;
      margin-right: 10px;
      color: red;
    }

    .Expertaccordion {
      background-color: #fff;
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      border: 1px solid #e3e7ec;
      transition: all 0.3s ease;
    }

    .Expertaccordion-item {
      border-bottom: 1px solid #e3e7ec;
    }

    .Expertaccordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-weight: 600;
      font-size: 18px;
      color: #007c94;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .Expertaccordion-header:hover {
      background-color: #f0fbfc;
    }

    .Expertaccordion-icon {
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .Expertaccordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      background: #fafafa;
      padding: 0 20px;
    }

    .Expertaccordion-content.open {
      padding: 15px 10px;
    }

    .Expertaccordion-content div {
      margin-top: 0px;
  margin-bottom: 30px;
  margin-right: 0px;
  margin-left: 0px;
      font-size: 16px;
      color: #4d4d4d;
      line-height: 1.5;
    }

    .Expertaccordion.open .Expertaccordion-icon {
      transform: rotate(45deg);
    }

    @media (max-width: 768px) {
      .Expertfaq-heading {
        font-size: 24px;
      }

      .Expertaccordion-header {
        font-size: 16px;
      }
    }




/* top bar style */



.top-bar1{
  color: #FFF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
margin-right: 4px;
}








.login_bar {
	width: 300px;
	height: 50px;
	background: white;
	border-radius: 10px;
	top: 50%;
	position: relative;
  z-index: 1;
	overflow: hidden;
}

.login_bar .login {
	background: transparent;
	position: absolute;
	height: 100%;
	width: 190px;
	padding-left: 10px;
	text-align: left;
	line-height: 50px;
	vertical-align: middle;
	z-index: 10;
	-webkit-transition: transform 0.2s ease-in-out 0s;
	   -moz-transition: transform 0.2s ease-in-out 0s;
	     -o-transition: transform 0.2s ease-in-out 0s;
	        transition: transform 0.2s ease-in-out 0s;
          border: none !important;
}

.login_bar .login:focus {
  outline: none;
}

.login_active {
	-webkit-transform: translateX(300px);
	   -moz-transform: translateX(300px);
	    -ms-transform: translateX(300px);
	     -o-transform: translateX(300px);
	        transform: translateX(300px);
}

.subscribe_button:hover{
	background-color: #0081FE;
	cursor:pointer;
}

.subscribe_button {
	background: #0081FE;
	position: absolute;
	top: -50px;
	left: 200px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	height: 150px;
	width: 100px;
	text-align: center;
	line-height: 150px;
	vertical-align: middle;	
	color: white;
	-webkit-transition: transform 0.5s ease 0s;
	   -moz-transition: transform 0.5s ease 0s;
	     -o-transition: transform 0.5s ease 0s;
	        transition: transform 0.5s ease 0s;
}

.subscribe_button_active{
	-webkit-transform: translateY(50px);
	   -moz-transform: translateY(50px);
	    -ms-transform: translateY(50px);
	     -o-transform: translateY(50px);
	        transform: translateY(50px);
}

.subscribing{
	background: #CDD4DC;
	height: 100%;
	width: 300px;
	z-index: 5;
	position: absolute;
	left:-300px;
	display: inline-block;
	-webkit-transition: transform 1s ease 0s ;
	   -moz-transition: transform 1s ease 0s ;
	     -o-transition: transform 1s ease 0s ;
	        transition: transform 1s ease 0s ;
}

.subscribing_active {
	-webkit-transform: translateX(300px);
	   -moz-transform: translateX(300px);
	    -ms-transform: translateX(300px);
	     -o-transform: translateX(300px);
	        transform: translateX(300px);
}

.thanks{
	background: transparent;
	height: 100%;
	width: 300px;
	z-index: 5;
	text-align: left;
	line-height: 50px;
	vertical-align: middle;
	padding-left: 10px;
	position: absolute;
	top:50px;
	display: inline-block;
	-webkit-transition: transform 0.5s ease 0s ;
	   -moz-transition: transform 0.5s ease 0s ;
	     -o-transition: transform 0.5s ease 0s ;
	        transition: transform 0.5s ease 0s ;
}

.thanks_active {
	-webkit-transform: translateY(-50px);
	   -moz-transform: translateY(-50px);
	    -ms-transform: translateY(-50px);
	     -o-transform: translateY(-50px);
	        transform: translateY(-50px);
}
