@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Poppins";
}

:root {
    --praimary-color:  #447759;
    --secondary-color: #79b946;
}

body,
html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

::selection {
    color: rgb(255, 255, 255);
    background-color: var(--praimary-color);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #447759;
    transition: all 0.4s ease-in;
}

::-webkit-scrollbar-track {
    background: #c5c8d1;
}

/* navbar starts */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
}
.nav-header {
    background-color: #f3fff3;
    box-shadow: 8px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.navbar .container > a {
    color: var(--praimary-color);
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}
nav .brand h6 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 0;
}
nav .brand p {
    font-weight: 700;
    font-size: 20px;
    color: var(--praimary-color);
    margin-bottom: 0;
    padding-left: 5px;
}
nav a {
    font-weight: 500;
    font-size: 17px;
    color: var(--praimary-color);
}
nav .nav-item .active {
    color: var(--secondary-color);
}

nav a img {
    width: 190px;
    height: 90px;
}

nav .nav-item {
    position: relative;
    display: inline-block;
}

.navbar-nav .nav-link {
    color: var(--praimary-color);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

nav .dropdown-menu a {
    color: #090909;
    font-size: 14px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav .dropdown-menu a:hover {
    border-left: 3px solid var(--praimary-color);
    transition: all 0.4s ease-in;
}

nav .dropdown-menu a:hover li {
    background-color: #ffffff67;
}

.nav-item:hover .dropdown-menu {
    display: block;
    margin-top: 3px;
    background: rgb(254, 254, 254);
}

.navbar-nav .dropdown-menu {
    margin-top: 7px;
    text-align: left;
    transition: all 0.4s ease-in;
}

nav .nav-item #dropdown {
    margin-top: -10px;
}

nav .list-group p {
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    color: #94a3b8;
}

nav .list-group span {
    padding: 5px;
    color: aliceblue;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0.2rem;
}

.navbar .navbar-toggler {
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    nav .lang {
        padding-left: 0;
    }
}

@media screen and (max-width: 330px) {
    .navbar .navbar-toggler {
      font-size: 15px;
    }
    nav a img {
      width: 70px;
      height: 70px;
  }
  }
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex;
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* navbar ends */

/* scroll animation */
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* interface start */
.interface {
    margin-top: 60px;
}
.interface .content {
    position: relative;
    background-image: url(../images/interface.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
}

.interface .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    /* display: flex;
  align-items: center;
  justify-content: center; */
}

.interface .shape img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.interface .text {
    position: relative;
    width: 50%;
    z-index: 1;
}
.interface h1 {
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary-color);
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 10px;
}
.interface h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}
.interface .btn-primary {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 30px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: inset 0px 0px 10px rgba(176, 255, 218, 0.9);
    border: 1px solid transparent;
}

.interface .btn-primary:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 575px) {
    .interface .text {
        width: 60%;
    }
    .interface h1 {
        font-size: 18px;
        font-weight: 800;
        color: var(--secondary-color);
        -webkit-text-stroke: 1px #fff;
        margin-bottom: 10px;
    }
    .interface h2 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }
    .interface .content {
        height: 70vh;
    }
}

/* slideshow */
.slideshow {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 85vh;
    z-index: 1;
}

.slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
    display: block;
}

.slideshow .slide.is-loaded {
    opacity: 1;
}

.slideshow .slide .caption {
    position: relative;
    padding: 0 100px;
    width: 60%;
    z-index: 1;
}
@media screen and (max-width:840px){
    .slideshow .slide .caption {
    width: 100%;
    padding: 0 65px;
    }
    .slideshow .btn-primary{
    margin-top: 0px !important;
    font-size:15px !important;
    }
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.slideshow .slide-content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    /* text-align: center; */
    display: flex;
    align-items: center;
}

.slideshow .shape {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slideshow .shape img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slideshow .slide .title {
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary-color);
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slideshow .slide .text {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

@media screen and (max-width: 575px) {
    /*.slideshow .slide .caption {*/
    /*    width: 60%;*/
    /*}*/

    .slideshow .slide .title {
        font-size: 18px;
    }

    .slideshow .slide .text {
        font-size: 20px;
    }

    .slideshow {
        height: 75vh;
    }
}

.slideshow .btn-primary {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 30px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: inset 0px 0px 10px rgba(176, 255, 218, 0.9);
    border: 1px solid transparent;
}

.slideshow .btn-primary:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-in-out;
}

.slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item + .page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: #fff;
}

.slideshow .arrows .arrow {
    margin: -33px 0 0;
    /*padding: 20px;*/
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
}

.slideshow .arrows .prev {
    left: 30px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 30px;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
}

/* about start */
.about {
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;
    /* background-image: url(../images/shape-5.png);
  background-size: cover;
  background-repeat: no-repeat; */
}

@media screen and (max-width:767px){
    .about {
    padding-top: 0px;
    }
    .product h1{
        padding-top:20px;
    }
    .product .btn-box{
        padding-bottom:20px;
    }
    .footer-copyright p{
        text-align:center;
    }
    .about #title{
        padding-top:50px !important;
    }
}

@media (min-width:768px) and (max-width:991px){
    .filter .btn-primary {
    padding-left: 25px !important;
    padding-right: 25px !important;
    }
}

.about .shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -1;
}

.about .img-bg {
    transform: translateY(0px);
    animation: move1 infinite;
    animation-duration: 1s;
    transition: all 0.6s ease-in;
}

@keyframes move1 {
    0% {
        transform: translateY(0px); /* Move the element up by 5 pixels */
    }

    50% {
        transform: translateY(-15px); /* Move the element down by 5 pixels */
    }

    100% {
        transform: translateY(0px); /* Move the element back up by 5 pixels */
    }
}
.about .img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.about h1 {
    font-weight: 600;
    font-size: 25px;
    color: var(--praimary-color);
    border-bottom: 3px dashed var(--secondary-color);
    width: 21%;
    padding: 10px 0px;
}
.about .title {
    font-weight: 800;
    font-size: 35px;
    line-height: 41px;
    color: var(--praimary-color);
    padding: 10px 0px;
}
.about p {
    font-weight: 450;
    font-size: 15px;
    color: #8fa497;
    text-align: justify;
}
.about .btn-primary {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 30px;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: inset 0px 0px 10px rgba(176, 255, 218, 0.9);
    border: 1px solid transparent;
}

.about .btn-primary:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-in-out;
}

/* product start */
.product {
    background: url(../images/download.jpg) fixed repeat 100%;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #447759c9;
}

.product .shape {
    position: relative;
}
.product .shape #lower-shape {
    transform: translateY(-128px);
}
.product .card .img-bg {
    position: relative;
    overflow: hidden;
}

.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product h1 {
    font-weight: 600;
    font-size: 25px;
    color: #fff;
    display: flex;
    align-items: center;
}
.product .card {
    position: relative;
    border-radius: 20px;
    background-color: transparent;
    border: none;
    width:100%; 
}

.product .card .card-body {
    position: relative;
    padding: 1rem 1.5rem 1.5rem 1rem;
    background-color: #f3fff3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 21px;
}
.product .card .card-body::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/shape-7.png);
    opacity: 0.4;
}
.product .card .card-body h6 {
    font-weight: 600;
    font-size: 18px;
    color: var(--praimary-color);
    margin-bottom: 10px;
}
.product .card .card-body a {
    text-decoration: none;
    position: relative;
}
.product p {
    font-weight: 450;
    font-size: 15px;
    color: #8fa497;
    text-align: justify;
    position: relative;
}

.product .button {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #668d74;
    width: 60px;
    height: 60px;
    border-bottom-right-radius: 20px !important;
    /* line-height: 60px; */
    text-align: center;
    padding: 10px 0 0 10px;
    border-radius: 60% 0 0 0;
    z-index: 9;
    /* display: flex;
  align-items: center;
  justify-content: center; */
}
.product .button::before {
    position: absolute;
    content: "";
    top: -13px;
    right: -1px;
    height: 16px;
    width: 1px;
    background-color: #08429800;
    z-index: 9;
}
.product .button > svg {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    right: 0px;
    transform: rotate(180deg) scale(1.01);
}
.product .button > svg:last-of-type {
    top: auto;
    bottom: 0px;
    right: auto;
    left: -20px;
}
.product .button > svg > path {
    fill: #668d74 !important;
}
.product .button::after {
    position: absolute;
    content: "";
    top: 0px;
    right: -2px;
    height: 1px;
    width: 16px;
    background-color: #08429800;
    z-index: 9;
}
.product .button a::before {
    position: absolute;
    content: "";
    top: 37px;
    left: -11px;
    height: 16px;
    width: 1px;
    background-color: #08429800;
    z-index: 9;
}
.product .button a::after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: -24px;
    height: 1px;
    width: 16px;
    background-color: #08429800;
    z-index: 9;
}
.product .button .button-style-2-link {
    background: var(--secondary-color);
    border: 2px dashed #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    font-size: 27px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    z-index: 2;
}
.product .button a i {
    transform: rotate(-35deg);
    display: block;
    font-size: 20px;
    color: #fff;
    line-height: 50px;
}
.product .button .button-style-2-link:hover {
    background-color: #f3fff3;
    border: 2px dashed var(--secondary-color);
    transition: 0.4s ease-in-out;
}
.product .button .button-style-2-link:hover i {
    color: var(--secondary-color);
    transition: 0.4s ease-in-out;
}

.product .btn-primary {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 30px;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: inset 0px 0px 10px rgba(176, 255, 218, 0.9);
    border: 1px solid transparent;
}

.product .btn-primary:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-in-out;
}

/* contact-sec start */
.contact-sec {
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: url(../images/bg6.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
.contact-sec .form-box {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 30px;
    border-radius: 20px;
    background-color: var(--praimary-color);
    /* background-color: #c2c2c2; */
}
.contact-sec .form-box::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape-8.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}
.contact-sec h1 {
    font-weight: 600;
    font-size: 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.contact-sec .location h1,
.contact-sec .social-media h1 {
    font-weight: 600;
    font-size: 22px;
    color: var(--praimary-color);
    margin-bottom: 0px;
}
.contact-sec .location iframe {
    width: 100%;
    height: 300px;
    margin-top: 15px;
    border-radius: 10px;
}
.contact-sec .form {
    position: relative;
}
.contact-sec .btn-primary {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 30px;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: inset 0px 0px 10px rgba(176, 255, 218, 0.9);
    border: 1px solid transparent;
}

.contact-sec .btn-primary:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-in-out;
}
.contact-sec .form label {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.contact-sec .form-control {
    font-size: 15px;
    color: #8893b9;
    font-weight: 500;
}

.contact-sec .social-media {
    padding-top: 15px;
}
.contact-sec .social-media ul {
    padding-top: 12px;
    padding-left: 0px;
}

.contact-sec .social-media li {
    display: inline-block;
    padding-right: 6px;
}

.contact-sec .social-media .icon-bg {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--praimary-color);
    margin-right: 5px;
    text-align: center;
}
.contact-sec .social-media .icon-bg i {
    font-size: 18px;
    line-height: 35px;
    color: #fff;
    margin-right: 0;
}
.contact-sec .social-media .icon-bg svg {
    fill: #fff;
}

.contact-sec .social-media .icon-bg:hover {
    background-color: var(--secondary-color);
    transition: background-color 0.4s ease-in-out;
    -webkit-animation: spin 1s linear;
    -moz-animation: spin 1s linear;
    animation: spin 1s linear;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.contact-sec .social-media .icon-bg:hover i {
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}
.contact-sec .social-media .icon-bg:hover svg {
    fill: #ffffff;
    transition: all 0.4s ease-in-out;
}

/* contact page */

.contact-sec .shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -1;
}

.contact-sec .info {
    position: relative;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.contact-sec .info::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape-11.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.38;
}
.contact-sec .info-body {
    position: relative;
    text-align: center;
}
.contact-sec .info-body i {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}
.contact-sec .info-body h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
.contact-sec .info-body p {
    color: #d8fff8;
    font-size: 17px;
    font-weight: 500;
}

/* footer starts */

footer {
    background-color: #eff4ff;
}
footer .shape {
    position: relative;
}

.footer-content {
    position: relative;
    background-color: #f3fff3;
    padding-bottom: 10px;
    margin: 0;
}

.footer-content::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape-7.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
}

footer .container {
    position: relative;
}

footer h5 {
    font-size: 23px;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
        -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

footer p {
    font-weight: 450;
    font-size: 15px;
    line-height: 25px;
    color: #8fa497;
}

footer h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--praimary-color);
    padding: 10px 0px;
    border-bottom: 3px dashed var(--secondary-color);
    width: 47%;
    margin-bottom: 20px;
}

.footer-content .logo {
    width: auto;
    height: 115px;
}
.footer-content i {
    color: #8fa497;
    margin-right: 5px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer .social-media {
    padding-top: 15px;
}
footer .social-media ul {
    margin-bottom: 0;
}

footer .social-media li {
    display: inline-block;
    padding-right: 6px;
}

footer li {
    padding-bottom: 10px;
}

footer .social-media .icon-bg {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--praimary-color);
    margin-right: 5px;
    text-align: center;
}
footer .social-media .icon-bg i {
    font-size: 18px;
    line-height: 35px;
    color: #fff;
    margin-right: 0;
}
footer .social-media .icon-bg svg {
    fill: #fff;
}

footer .social-media .icon-bg:hover {
    background-color: var(--secondary-color);
    transition: background-color 0.4s ease-in-out;
    -webkit-animation: spin 1s linear;
    -moz-animation: spin 1s linear;
    animation: spin 1s linear;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
footer .social-media .icon-bg:hover i {
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}
footer .social-media .icon-bg:hover svg {
    fill: #ffffff;
    transition: all 0.4s ease-in-out;
}

.footer-link a,
.contact-link a {
    color: #8fa497;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.footer-link a:hover {
    color: var(--secondary-color);
}

footer #branch h5 {
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 400;
}

.footer-copyright {
    background-color: #79b946;
}

.footer-copyright a {
    text-decoration: none;
    color: #cfe3d3;
}

.footer-copyright p {
    font-size: 14px;
    color: #fff;
}

@media (min-width: 768px) and (max-width: 1200px) {
    footer h5 {
        font-size: 22px;
        font-weight: 600;
    }
    .footer-content .logo {
        width: auto;
        height: 90px;
    }
}

@media screen and (max-width: 420px) {
    footer h5 {
        font-size: 20px;
        font-weight: 600;
    }
    .footer-content .logo {
        width: auto;
        height: 80px;
    }
    footer .social-media .icon-bg {
        width: 28px;
        height: 28px;
    }
    footer .social-media .icon-bg i {
        font-size: 16px;
        line-height: 28px;
    }
}

/* footer ends */

/* Breadcrumb-about starts */

.Breadcrumb {
    position: relative;
    margin-top: 70px;
    background: url(../images/breadcramp2.jpg);
    box-shadow: inset 0 0 0 2000px #55c1006b;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 37vh;
}

.Breadcrumb .container {
    position: relative;
}

.Breadcrumb h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 60px;
    color: var(--praimary-color);
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    margin-bottom: 0;
}

.Breadcrumb a,
span {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-decoration: none;
    color: #d1ffac;
}
.Breadcrumb .active {
    color: #ffffff;
}
.Breadcrumb i {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
}

/* filter starts */

/* .product-content{
  position: relative;
} */
.product-content .shape {
    position: absolute;
    top: 0;
    right: 0 !important;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -2;
}
.product-content .shape2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -1;
}

.filter {
    padding-top: 30px;
    margin-bottom: 15px;
}

.filter .content {
    position: relative;
    padding: 20px 30px;
    background: var(--praimary-color);
    border-radius: 20px;
}

.filter .content::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape-11.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}
.filter .content .row {
    position: relative;
}

.filter label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.filter .form-select {
    font-size: 13px;
    font-weight: 450;
    color: #4b4b4b;
    background-color: #ffffff;
    border-radius: 8px;
    border: none;
}
.filter .form-control {
    font-size: 13px;
    font-weight: 450;
    color: #4b4b4b;
    background-color: #ffffff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 8px;
    border: none;
}
.filter i {
    margin-left: 10px;
}
.filter .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 8px;
    padding-left: 30px;
    padding-right: 30px;
}
select:focus {
    border-radius: 10px;
    border-color: var(--secondary-color);
    background: #fff;
    outline: none;
}

.select-wrap {
    position: relative;
}

.select-wrap:focus-within select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

option:hover {
    color: var(--praimary-color);
}

option:checked {
    box-shadow: 0 0 1em 100px var(--secondary-color) inset;
}

/* filter ends */

/* product-page start */

.product-page .card .img-bg {
    position: relative;
    overflow: hidden;
}

.product-page img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product-page h1 {
    font-weight: 600;
    font-size: 25px;
    color: #fff;
    display: flex;
    align-items: center;
}
.product-page .card {
    position: relative;
    border-radius: 20px;
    background-color: transparent;
    border: none;
}

.product-page .card .card-body {
    position: relative;
    padding: 1rem 1.5rem 1.5rem 1rem;
    background-color: #f3fff3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 21px;
}
.product-page .card .card-body::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/shape-7.png);
    opacity: 0.4;
}
.product-page .card .card-body h6 {
    font-weight: 600;
    font-size: 18px;
    color: var(--praimary-color);
    margin-bottom: 10px;
}
.product-page .card .card-body a {
    text-decoration: none;
    position: relative;
}
.product-page p {
    font-weight: 450;
    font-size: 15px;
    color: #8fa497;
    text-align: justify;
    position:relative;
}

.product-page .button {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #ffffffd3;
    width: 60px;
    height: 60px;
    border-bottom-right-radius: 20px !important;
    /* line-height: 60px; */
    text-align: center;
    padding: 10px 0 0 10px;
    border-radius: 60% 0 0 0;
    z-index: 9;
    /* display: flex;
  align-items: center;
  justify-content: center; */
}
.product-page .button::before {
    position: absolute;
    content: "";
    top: -13px;
    right: -1px;
    height: 16px;
    width: 1px;
    background-color: #ffffff00;
    z-index: 9;
}
.product-page .button > svg {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    right: 0px;
    transform: rotate(180deg) scale(1.01);
}
.product-page .button > svg:last-of-type {
    top: auto;
    bottom: 0px;
    right: auto;
    left: -20px;
}
.product-page .button > svg > path {
    fill: #ffffff !important;
}
.product-page .button::after {
    position: absolute;
    content: "";
    top: 0px;
    right: -2px;
    height: 1px;
    width: 16px;
    background-color: #ffffff;
    z-index: 9;
}
.product-page .button a::before {
    position: absolute;
    content: "";
    top: 37px;
    left: -11px;
    height: 16px;
    width: 1px;
    background-color: #ffffff;
    z-index: 9;
}
.product-page .button a::after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: -24px;
    height: 1px;
    width: 16px;
    background-color: #ffffff;
    z-index: 9;
}
.product-page .button .button-style-2-link {
    background: var(--secondary-color);
    border: 2px dashed #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    font-size: 27px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    z-index: 2;
}
.product-page .button a i {
    transform: rotate(-35deg);
    display: block;
    font-size: 20px;
    color: #fff;
    line-height: 50px;
}
.product-page .button .button-style-2-link:hover {
    background-color:#f3fff3;
    border: 2px dashed var(--secondary-color);
    transition: 0.4s ease-in-out;
}
.product-page .button .button-style-2-link:hover i {
    color: var(--secondary-color);
    transition: 0.4s ease-in-out;
}

/* Pagination */

.Pagination {
    padding-top: 40px;
}

.Pagination a {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.Pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border: var(--secondary-color);
    border-radius: 5px;
    width: 40px;
    text-align: center;
    margin: 0 6px;
}

.Pagination .page-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--secondary-color);
    margin: 0 6px;
    width: 40px !important;
    height: 40px;
}

.Pagination .page-item a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.Pagination #active a {
    /* border-radius: 50%; */
    width: fit-content !important;
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--secondary-color);
    color: #fff;
}

@media (min-width: 381px) and (max-width: 575px) {
    .Pagination .page-item.active .page-link {
        width: 30px;
        margin: 0 3px;
    }

    .Pagination .page-item .page-link {
        margin: 0 3px;
        width: 30px;
    }
    .Pagination #active .page-link {
        width: 30px;
    }
    .Pagination a {
        font-size: 14px;
    }
}
@media screen and (max-width: 380px) {
    .Pagination .page-item.active .page-link {
        width: 20px;
        margin: 0 2px;
    }

    .Pagination .page-item .page-link {
        margin: 0 2px;
        width: 20px;
    }
    .Pagination #active .page-link {
        width: 20px;
    }
    .Pagination a {
        font-size: 12px;
    }
    .Pagination .page-item a {
        margin: 0 3px;
        width: 30px !important;
        height: 30px;
    }
}

/* product details */
.product-details {
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
}
.product-details .shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -1;
}
.product-details .images {
    position: relative;
}

.product-details .shape1 {
    position: absolute;
    background: url(../images/shape-13.png);
    top: -55px;
    right: 0px;
    width: 136px;
    height: 137px;
    background-repeat: no-repeat;
    /* The animation part: */
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    z-index: -1;
}
.product-details .shape2 {
    position: absolute;
    background: url(../images/shape-13.png);
    bottom: -35px;
    left: -50px;
    width: 136px;
    height: 137px;
    background-repeat: no-repeat;
    /* The animation part: */
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    z-index: -1;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.product-details .img-bg {
    position: relative;
}
.product-details .img-bg::before {
    content: "";
    position: absolute;
    left: -60px;
    top: -60px;
    width: 100%;
    height: 100%;
    background: url(../images/shape.png);
    background-repeat: no-repeat;
    z-index: -1;
    transition: all ease 0.4s;
}

.product-details img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.product-details h2 {
    font-weight: 600;
    font-size: 25px;
    color: var(--praimary-color);
    margin-bottom: 10px;
}
.product-details h6 {
    padding: 8px 10px;
    background-color: var(--secondary-color);
    width: fit-content;
    border-radius: 8px;
    border-left: 5px solid #447759a8;
    border-bottom: 5px solid #447759a8;
    font-weight: 550;
    font-size: 17px;
    color: #fff;
}
.product-details p {
    font-weight: 450;
    font-size: 15px;
    color: #8fa497;
    text-align: justify;
}

/* added code */
.alert {
    padding: 0.5rem 0.5rem;
}
.alert p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}
.alert-dismissible .btn-close {
    padding: 0.8rem 0.5rem;
}
