@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
/* Common Section Start*/

body {
    background-color: #F4F4F4;
    font-family: 'Poppins', Times, serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #499630 0%, #6be0d9 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #689C56;
}

.custom-button {
    width: 150px;
    height: 40px;
    background: none;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
}

.custom-button:hover {
    background: #FFFFFF;
    color: #689C56;
}

/* Common Section End*/

/* Header Section Start*/
.header-section {
    height: 90px;
    background-color: #689C56;
    position: relative;
    z-index: 99;
    width: 100%;
}

.header-section-logo {
    width: 100%;
    padding-top: 25px;
}

.header-section-menu {
    margin: auto;
    padding-top: 10px;
}

.header-section-menu > ul {
    position: relative;
    left: 13%;
}

.header-section-menu > ul > li {
    list-style: none;
    display: inline-block;
    padding-right: 65px;
    padding-top: 20px;
}

.header-section-menu > ul > li > a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
    text-decoration: none;
}

.active-menu {
    border-bottom: 1px solid white !important;
}

.header-section-contact {
    padding-top: 22px;
}

.header-section-contact > button {
    float: right;
}

/* Header Section End*/

/* Hero Section Start */
.hero-section {
    width: 100%;
    top: -90px;
    position: relative;
    padding-top: 100px;

}

.hero-section-img {
    width: 100%;
}

.hero-section-text {
    padding-top: 120px;
    margin-bottom: 30px;
}

.hero-section-text > h1 {
    font-size: 72px;
    line-height: 80px;
    font-weight: bolder;
    color: #4C5152;
}

.hero-section-text > h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4C5152;
}

.hero-section-list {
    display: flex;
    align-items: center;
    justify-content: left;
}

.hero-section-list > ul {
    list-style: none;
    display: flex;
    padding-left: 0;
}

.hero-section-list > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 130px;
    border: 2px solid #d3c7c7;
    margin-right: 20px;
    border-radius: 30px;
}

.hero-section-list > ul > li:hover {
    border: 2px solid #689C56;
}

.hero-section-list > ul > li > a {
    text-decoration: none;
}

.hero-section-list > ul > li > a > img {
    height: 20px;
    width: 30px;
    object-fit: contain;
    margin-right: 5px;
}

/* Hero Section End */
/* Template Section Start */
.template-section {
    margin-bottom: 50px;
}
.template-section-item-title{
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: black;
}
.template-section-item{
    width: 100%;
    border: 5px solid white;
    padding: 10px;
}.template-section-item:hover{
    border: 5px solid #689C56;
}
.template-section-item>img{
    width: 100%;
}
/* Template Section End */
/* Feature Section Start */
.feature-section {
    margin-bottom: 50px;
}

.feature-section-title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 36px;
}

.feature-section-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section-list > ul {
    list-style: none;
    display: flex;
}

.feature-section-list > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 150px;
    border: 2px solid #d3c7c7;
    margin-right: 20px;
}

.feature-section-list > ul > li:hover {
    border: 2px solid #689C56;
}

.feature-section-list > ul > li > img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 15px;
}

.feature-section-list-two {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section-list-two > ul {
    list-style: none;
    display: flex;
}

.feature-section-list-two > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 150px;
    border: 2px solid #d3c7c7;
    margin-right: 20px;
}

.feature-section-list-two > ul > li:hover {
    border: 2px solid #689C56;
}

.feature-section-list-two > ul > li > img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 15px;
}

/* Feature Section End */
/* Footer Section Start */
.footer-section {
    width: 100%;
    /* background-color: #689C56; */
    background: linear-gradient(-45deg, #689C56, #F1DB88, #689C56, #689C56);
    background-size: 400% 400%;
    /*animation: gradientBG 15s ease infinite;*/
    padding-top: 20px;
}

.footer-section-copy-right {
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: black;
}

/* Footer Section End */
