

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
  }

  a {
    color: var(--color-links);
    text-decoration: none;
  }

  a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }




  /* =========== Buttons  ============ */
    .synbtn-get-started {
      font-size: 16px;
      font-weight: 400;
      display: inline-block;
      padding: 7px 25px;
      border-radius: 50px;
      transition: 0.5s;
      color: var(--color-white);
      background: var(--color-primary);
      font-family: var(--font-secondary);
    }



/*
    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 35px;
        border-radius: 50px;
        transition: 0.5s;
        margin-top: 30px;
        border: 2px solid #fff;
        color: #fff;
      }
      #hero .btn-get-started:hover {
          background: var(--color-primary);
          border: 2px solid #5fcf80;
        } */

   .synbtn-get-started:hover {
      background: rgba(var(--color-primary-rgb), 0.8);
      transform: scale(1.2);

    }

    .synhero-static .synbtn-get-started,
    .synhero-static .synbtn-watch-video {
      font-size: 14px;
    }


    /* header button  */
  .syn-btn-login-register,
  .syn-btn-login-register:focus {
    font-size: 14px;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
    font-family: var(--font-secondary);
  }

  .syn-btn-login-register:hover,
  .syn-btn-login-register:focus:hover {
    color: var(--color-white);
    background: rgba(var(--color-primary-rgb), 0.85);
  }

  @media (max-width: 1279px) {

    .syn-btn-login-register,
    .syn-btn-login-register:focus {
      margin-right: 2px;
    }
  }




  /*--------------------------------------------------------------
  # Static Hero Section
  --------------------------------------------------------------*/


  .syn-hero-background-image{

         /* background-color: red; */
          padding: 30px 0;
          width: 100%;
          /* min-height: 50vh; */
          background: url("../img/course-bg.png") center center;
          background-size: cover;
          position: relative;
          /* padding: 100px 0 6px; */
        }





  .synhero-static {
      width: 100%;
      min-height: 33vh;
      background-size: cover;
      position: relative;
    }

    .synhero-static h2 {
      margin: 0 0 10px 0;
      font-size: 48px;
      font-weight: 300;
      color: var(--color-secondary);
      font-family: var(--font-secondary);
    }

    .synhero-static p {
      color: rgba(var(--color-secondary-rgb), 0.8);
      margin: 0 0 30px 0;
      font-size: 20px;
      font-weight: 400;
    }

    .synhero-static .course-fee {
      padding-top: 30px;
      color: rgba(var(--color-secondary-rgb), 0.8);
      margin: 0 0 30px 0;
      font-size: 10px;
      font-weight: 400;
    }

    /* .synhero-static .synbtn-get-started {
      font-size: 16px;
      font-weight: 400;
      display: inline-block;
      padding: 10px 28px;
      border-radius: 4px;
      transition: 0.5s;
      color: var(--color-white);
      background: var(--color-primary);
      font-family: var(--font-secondary);
    }

    .synhero-static .synbtn-get-started:hover {
      background: rgba(var(--color-primary-rgb), 0.8);
    } */

    .synhero-static .synbtn-watch-video {
      font-size: 16px;
      transition: 0.5s;
      margin-left: 25px;
      font-family: var(--font-secondary);
      color: var(--color-secondary);
      font-weight: 600;
    }

    .synhero-static .synbtn-watch-video i {
      color: var(--color-primary);
      font-size: 32px;
      transition: 0.3s;
      line-height: 0;
      margin-right: 8px;
    }

    .synhero-static .synbtn-watch-video:hover {
      color: var(--color-primary);
    }

    .synhero-static .synbtn-watch-video:hover i {
      color: rgba(var(--color-primary-rgb), 0.8);
    }

    @media (max-width: 640px) {
      .synhero-static h2 {
        font-size: 24px;
        font-weight: 400;
      }

      .synhero-static p {
        font-size: 18px;
        margin-bottom: 30px;
      }

      /* .synhero-static .synbtn-get-started,
      .synhero-static .synbtn-watch-video {
        font-size: 14px;
      } */
    }







  /*--------------------------------------------------------------
  # Enroll Card (Services) Section
  --------------------------------------------------------------*/

  .syn-enrollcard{
      padding-top: 10px;
  }

  .syn-enrollcard .img {
      border-radius: 8px;
      overflow: hidden;
    }

    .syn-enrollcard .img img {
      transition: 0.6s;
    }

    .syn-enrollcard .details {
      padding: 20px 30px;
      margin: -55px 30px 0 30px;
      transition: all ease-in-out 0.3s;
      background: var(--color-white);
      position: relative;
      background: rgba(var(--color-white-rgb), 0.9);
      text-align: center;
      border-radius: 8px;
      box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
    }



    .syn-enrollcard .details h3 {
      color: var(--color-default);
      font-weight: 700;
      margin: 10px 0 15px 0;
      font-size: 22px;
      transition: ease-in-out 0.3s;
    }

    .syn-enrollcard .details p {
      line-height: 24px;
      font-size: 14px;
      margin-bottom: 0;
    }

    .syn-enrollcard .syn-enroll-item:hover .details h3 {
      color: var(--color-primary);
    }

    .syn-enrollcard .syn-enroll-item:hover .img img {
      transform: scale(1.2);
    }

  /* about */
  .synabout {
    margin-bottom: 40px;
  }
    .synabout h3, .synabout h4 {
      color: var(--color-secondary);
      font-family: var(--font-secondary);
      font-weight: 400;
      margin-bottom: 20px;
    }
    .synabout h3 {
      font-size: 32px;
    }
    .synabout h4 {
      font-size: 24px;
    }




    /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  .synheader {
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    background: var(--color-white);
  }

    /* ============ header ends =============== */



