@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;300;400;700&display=swap');



html{
    scroll-behavior: smooth;
 }



body{
    font-family: "Jost";
    font-size: 17px;
}

.container{
    max-width: 1200px;
    margin: 0 auto !important;
    float: none !important;
}

.container-fluid{
    margin: 0 auto !important;
    float: none !important;
}

img{
    width: 100%;
}


.btnSignUpNav{
    background-image: linear-gradient(to right, #FF512F 0%, #F09819  51%, #FF512F  100%);
    margin: 5px;
    padding: 6px 30px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    display: block;
    border: none;
  }

  .btnSignUpNav:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

  /*----- Hero Section--------*/

  h1.heroTitle{
    font-size: 50px;
    padding-bottom: 20px;
    font-weight: 700;
}

div.heroSection{
    padding-top: 100px;
    padding-bottom: 20px;
    text-align: center;
  }

p.heroTagline{
    font-size: 30px;
    padding-bottom: 30px;
}

img.heroImage{
    max-width: 800px;
}

.explainHero{
    font-size: 26px;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 576px) { 
    body{
        font-size: 24px;
    }

    h1.heroTitle{
        font-size: 35px;
    }

    p.heroTagline{
        font-size: 20px;
        padding-bottom: 30px;
    }

    div#navbarNav{
        display: hidden;
    }

 }

 @media (max-width: 576px) { 
    body{
        font-size: 20px;
    }

    h1.heroTitle{
        font-size: 35px;
    }

    p.heroTagline{
        font-size: 20px;
        padding-bottom: 30px;
    }

    div#navbarNav{
        display: hidden;
    }

 }

 /*---------Feature Section-------------*/

 .featureSection{
    background-color:#e4995c;
    padding-top: 150px;
  }


 div.featureTextSection{
    text-align: left;

 }

h1.featureTextTitle1{
    font-size: 40px;
    font-weight: 700;
    padding-top: 70px;
    padding-left: 30px;
}

h1.featureTextTitle2{
    font-size: 40px;
    font-weight: 700;
    padding-top: 110px;
    padding-left: 30px;

}

h1.featureTextTitle3{
    font-size: 40px;
    font-weight: 700;
    padding-top: 110px;
    padding-left: 30px;
}

p.featureText{
    font-size: 20px;
    padding-left: 30px;
}

img.featureImg{
    border-radius: 20px;
}

div.featureRow{
    padding-bottom: 150px;
}

div.middleRowMobile{
    display: none;
}



@media (max-width: 576px) { 
    div.featureTextSecton{
        text-align: center;
     }

     h1.featureTextTitle1{
        font-size: 40px;
        font-weight: 700;
        padding-top: 70px;
    }
    
    h1.featureTextTitle2{
        font-size: 40px;
        font-weight: 700;
        padding-top: 110px;
    
    }
    
    h1.featureTextTitle3{
        font-size: 40px;
        font-weight: 700;
        padding-top: 110px;
    }
    
    p.featureText{
        font-size: 20px;
    }

    .featureSection{
        background-color:#e4995c;
        padding-top: 20px;
      }

      div.middleRow{
        display: none;
    }
    div.middleRowMobile{
        display: contents;
    }
    
    
    
 }

 /*Footer  */

footer h4{
    padding-top: 0;
    font-size: 20px;
}

footer p.copyright{
    font-size: 14px;
}

footer p{
    padding-top: 5px;
    margin: 0;
}

footer a{
    color: #ffc393;
}

footer a:hover{
    color: #ffa962;
}

footer{
    padding-top: 40px;
    padding-bottom: 100px;
}

 /*------------- MISC CSS --------------- */

 .errorPage{
    padding-top: 200px;
    padding-bottom: 400px;
  }

  p.author{
    color: rgb(134, 134, 134);
    float: right;
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
}

div.author2 {
    display: flex;
    align-items: center; 
}
  
div.author2 img{
    width: 25px;
    margin: 0;
}

div.faqSection{

    padding-top: 140px;
    padding-bottom:140px;
  }

 /* Acordian CSS*/

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

  
  .collapsible-link::before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    display: block;
    font-family: 'FontAwesome';
    font-size: 1.1rem;
  }
  
  .collapsible-link[aria-expanded='true']::before {
    content: '\f106';
  }
  
  
  
