:root{
    --clr-primary: #a98355;
    --clr-secondary: #97451B;
    --clr-red: #FF0000;
    --clr-black: #000000;
    --clr-yellow: #ffe135;
    --clr-white: #FFFFFF;
    --clr-slate-500: #64748b;
    --clr-slate-800: #1e293b;
    --clr-gray-100: #f3f4f6;
    --clr-gray-300: #d1d5db;
    --clr-deep-blue: #000f23;
    --clr-blue-900: #172554;
    --clr-blue-500: #3b82f6;
    --clr-green-500: #28a745;
    --clr-text: #3A3A3A;
    --clr-text-50: #616161;
    --icon-font: "Font Awesome 6 Free";
	--body-font-family: 'Manrope', sans-serif;
	--title-font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    color: var(--clr-text);
    font-family: var(--title-font-family);
}
body{
    font-family: var(--body-font-family);
    font-size: 100%;
    font-weight: 400;
    color: var(--clr-black);
    background-color: var(--clr-white);
}
/*|==================================================================================
    EXTER CSS
====================================================================================|*/
.container{
    max-width: 1260px;
}
.bg-1{ background-color: #ff6f61;}
.bg-2{ background-color: #6b5b95;}
.bg-3{ background-color: #88b04b;}
.bg-4{ background-color: #d65076;}
.bg-5{ background-color: #ffb347;}
.bg-6{ background-color: #45b8ac;}
.bg-7{ background-color: #e94b3c;}
.bg-8{ background-color: #6c5b7b;}
section .btn-solid{
    border-color: var(--clr-secondary);
    background-color: var(--clr-secondary);
}
section .btn-solid:hover{
    border-color: var(--clr-primary);
    background-color: var(--clr-primary);
}
section{
    position: relative;
}
section .section-title{
    font-weight: 600;
    line-height: 1.3;
}
.img-box a{
    display: block;
    height: 100%;
}
.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-only-icon{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50%;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    section .btn{
        padding: 10px 20px;
    }
}
@media (min-width: 992px){
    section .section-title{
        /* font-size: 32px; */
    }
}
@media (max-width: 991.98px){}
.social-list{
    display: flex;
    align-items: center;
}
.social-list li{}
.social-list li .social-link{
    display: block;
    padding: .25rem .75rem;
}
.social-list li .social-link:hover{
    color: var(--clr-primary);
} 
.scroll-top {
    position: fixed;
    bottom: 105%;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s linear;
}
.scroll-top.scrolltopactive {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.scroll-top:hover .scroll-top-inner {
    color: var(--clr-white);
}
.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,rgba(0,0,0,.25) 0,transparent 80%);
}
.scroll-top-inner {
    transition: all .3s linear;
    color: var(--clr-white);
    background: var(--clr-primary);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
}
/*| Media Query ====================================================================|*/
@media (min-width: 992px){
    .topbar-section .topbar-right{
        justify-content: flex-end;
    }
}
@media (max-width: 991.98px){
    .scroll-top{
        display: none;
    }
}
/*|==================================================================================
    Header
====================================================================================|*/
.header{
    position: relative;
    background-color: #F9F1E7;
}
#header.sticky-top{
    position: sticky;
    box-shadow: 0 9px 54px 0 rgba(32,32,32,.1);
    background-color: #F9F1E7;
    animation: fadeInDown .5s running;
    transition: all .5s;
}
.navbar .navbar-brand img{
    max-width: 150px;
}
.navbar-nav .nav-item .nav-link{
    position: relative;
    overflow: hidden;
    color: var(--clr-gray-800);
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 0;
}
.navbar-nav .nav-item .nav-link.active,.navbar-nav .nav-item .nav-link:hover{
    color: var(--clr-primary);
}
.navbar-nav .dropdown-toggle::after{
    border: none;
    content: '\f107';
    font-family: var(--icon-font);
    font-weight: 900;
    font-size: .875rem;
    vertical-align: middle;
}
.navbar-nav .dropdown-menu{
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-top: 2px solid var(--clr-primary);
    background-color: var(--clr-white);
}
.navbar-nav .dropdown-menu .dropdown-item{
    padding: .5rem 1rem;
}
.navbar-nav .dropdown-menu .dropdown-item:focus,.navbar-nav .dropdown-menu .dropdown-item:active{
    color: var(--clr-primary);
    background-color: transparent;
}
.navbar-nav .dropdown-menu li .dropdown-item:hover{
    color: var(--clr-white);
    background-color: var(--clr-primary);
}
.navbar-nav .dropdown-menu li:last-child .dropdown-item:hover{
    border-radius: 0;
}
/* .header-search{}
.header-search .input-icon-group{
    display: block;
}
.header-search .input-group-text{
    position: absolute;
    padding: 12px;
    border: none;
    background-color: transparent;
}
.header-search .input-icon-group .form-control{
    padding: 8px;
    padding-left: 40px;
    border-radius: 0;
    border-color: #D8D8D8;
} */
.header .offcanvas.offcanvas-end{
    width: 280px;
}
.header .rightSlide-icon button{
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: var(--clr-white);
    transition: all .4s ease;
    animation: ripple .4s linear;
    background-color: rgba(0, 0, 0, 0.1);
    /* background-color: transparent; */
}
.header .rightSlide-icon button:hover{
    color: #000000;
    background-color: var(--clr-white);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
/* .header .rightSlide-icon button i{
    font-size: 20px;
} */
.header .rightSlide-icon img{
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    /* filter: invert(1) brightness(100); */
    transition: all .4s ease;
}
.header .rightSlide-icon button:hover img{
    filter: invert(0) brightness(100);
    transform: rotate(0deg);
}
.header .offcanvas-header{
    padding-bottom: 0;
}
.header .offcanvas-header .offcanvas-title{
    font-size: 18px;
}
.header .offcanvas-body ul{}
.header .offcanvas-body ul > li{}
.header .offcanvas-body ul > li a{
    display: block;
    padding: 6px 0;
}
/*| Media Query ====================================================================|*/
@media (min-width: 992px){
    .header{
        /* padding: 20px 0; */
    }
    .header.sticky-top{
        padding: 0;
    }
    .navbar{
        padding: 0;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu{
		display: block;
	}
	.navbar-nav .dropdown >.dropdown-toggle:active{
		pointer-events: none;
	}
    .navbar-nav .nav-item .nav-link{
        padding: 24px 20px;
    }
    .navbar-nav .dropdown-menu .dropdown-item{
        padding: .625rem 1.25rem;
    }
    /* .header-search {
        width: 35%;
        display: none;
    } */
    .header .offcanvas-header{
        padding: 24px 24px 0;
    }
    .header .offcanvas-body{
        padding: 24px;
    }
    
}
@media (max-width: 991.98px){
    .header .rightSlide-icon{
        display: none;
    }
    .navbar-nav .dropdown-toggle::after{
        position: absolute;
        right: 0;
    }
    
}
@media (max-width:575.98px){
    .navbar{
        padding: 10px 0;
    }
    /* .header-search{
        margin-bottom: 16px;
    }
    .navbar-collapse{
        padding-top: 16px;
    } */
}
/*|==================================================================================
    Navbar Toggler
====================================================================================|*/
.navbar-toggler {
    padding: 8px 0;
}
.navbar-toggler,.navbar-toggler:focus,.navbar-toggler:active {
    border: none !important;
    background: 0 0 !important;
    outline: none !important;
    box-shadow: none;
}
.navbar-toggler .icon-bar {
    background-color: var(--clr-primary);
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}
.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    /* background-color: var(--clr-primary) */
}
.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}
.navbar-toggler .icon-bar:nth-child(2) {
    width: 16px;
    transition: ease all .2s;
}
.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}
.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}
/*|====================================================================================
    News Section
=======================================================================================|*/
.news-section{}
.grid-container{
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-container .grid-item{}
.grid-container .grid-item .grid-carousel .card{}
.grid-container .grid-item .card{
    border: none;
    border-radius: 0;
}
.grid-container .grid-item .card .img-box{}
.grid-container .grid-item .card .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-container .grid-item .card .card-img-overlay{
    top: auto;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 75%);
}
.grid-container .grid-item .card .card-img-overlay .card-body{
    padding: 0;
}
.grid-container .grid-item .card .card-img-overlay .card-body .post-cat{
    margin-bottom: 10px;
}
.grid-container .grid-item .card .card-img-overlay .card-body .post-cat a{
    display: inline-block;
    color: var(--clr-white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px 2px;
}
.grid-container .grid-item .card .card-img-overlay .card-body .title{
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.grid-container .grid-item .grid-carousel .card .card-img-overlay .card-body .title{
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: .5rem;
}
.grid-container .grid-item .card .card-img-overlay .card-body .title a{
    color: var(--clr-white);
}
.grid-container .grid-item .card .card-img-overlay .card-body p{
    color: var(--clr-white);
    margin-bottom: 0;
}
.grid-container .grid-item .grid-carousel .owl-nav{
    visibility: hidden;
}
.grid-container .grid-item .grid-carousel .owl-nav .owl-prev,.grid-container .grid-item .grid-carousel .owl-nav .owl-next{
    border-radius: 50%;
    border: 1px solid var(--clr-white);
    background-color: transparent;
}
.grid-container .grid-item .grid-carousel .owl-nav .owl-prev{
    left: 16px;
}
.grid-container .grid-item .grid-carousel .owl-nav .owl-next{
    right: 16px;
}
.grid-container .grid-item .grid-carousel:hover .owl-nav{
    visibility: visible;
}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){
    .grid-container{
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-container .grid-item:nth-child(1){
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
    }
}
@media (min-width: 992px){
    .grid-container{
        gap: 20px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .grid-container .grid-item .card .img-box{
        height: 220px;
    }
    .grid-container .grid-item .grid-carousel .card .img-box{
        height: 460px;
    }
    .grid-container .grid-item .card .card-img-overlay{
        padding: 20px;
    }
    .grid-container .grid-item .grid-carousel .card .card-img-overlay{
        padding: 24px;
    }
    .grid-container .grid-item .grid-carousel .card .card-img-overlay .card-body .title{
        font-size: 32px;
    }
}
@media (max-width: 991.98px){}
/*|====================================================================================
    Featured Section
=======================================================================================|*/
.featured-section{}
.featured-container{
    padding: 16px;
    border-top: 1px solid var(--clr-primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.featured-container .section-title{
    font-size: 20px;
}
.featured-container .card{
    border: none;
    border-radius: 0;
    background-color: transparent;
    height: 100%;
}
.featured-container .card .img-box{}
.featured-container .card .img-box img{}
.featured-container .card .card-body{}
.featured-container .card .card-body .title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}
.featured-container .card .card-body .title a{}
.post-meta{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: .5rem;
}
.post-meta .meta-item{
    font-size: 13px;
    font-weight: 500;
}
.post-meta .meta-item i{
    color: var(--clr-primary);
    margin-right: 6px;
}
.post-meta .meta-item.author a{
    display: flex;
    gap: 6px;
    align-items: center;
}
.post-meta .meta-item.author img{
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}
.post-meta .meta-item.author .author-name{
    font-size: 13px;
    margin: 0;
}
.post-meta .meta-item.author .author-name:hover{
    color: var(--clr-primary);
}
.post-meta .post-cat{
    display: flex;
    align-items: center;
    margin-right: auto;
}
.post-meta .post-cat .icon-box{
    margin-right: 8px;
}
.post-meta .post-cat a{
    display: block;
    font-size: 14px;
    /* font-weight: 500; */
    color: var(--clr-black);
    background-color: transparent;
}
.post-meta .post-cat a:hover{
    color: var(--clr-secondary);
}
.post-meta .post-cat a i{
    color: var(--clr-primary);
    margin-right: 6px;
}
.featured-container .card .card-body .btn-text{
    color: var(--clr-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){
    .featured-container{
        padding: 20px;
    }
}
@media (min-width: 992px){
    .post-meta{
        gap: 14px;
    }
    .featured-container{
        padding: 24px;
    }
    .featured-container .section-title{
        font-size: 24px;
    }
    .featured-container .card .img-box img{
        height: 250px;
    }
    .featured-container .card .card-body{
        margin-top: -50px;
        margin-inline: 16px;
        background-color: #fff;
        transition: all 0.4s ease;
    }
    .featured-container .card:hover .card-body{
        /* cursor: pointer; */
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
}
@media (max-width: 991.98px){
    .featured-container .card{
        margin-bottom: 20px;
    }
}
/*|====================================================================================
    Call To Action Section
=======================================================================================|*/
.cta-section{
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../images/cta-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta-section .cta-content{
    position: relative;
    padding: 20px;
    z-index: 2;
}
.cta-section .cta-content::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.75);
    z-index: -1;
}
.cta-section .cta-content .cta-title{
    color: var(--clr-black);
    font-size: 1.5rem;
    line-height: 1.45;
}
/*| Media Query |======================================================================|*/
@media (min-width: 992px){
    .cta-section{
        height: 450px;
    }
    .cta-section .cta-content{
        padding: 32px;
    }
    .cta-section .cta-content .cta-title{
        font-size:50px;
        font-weight:600;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
}
@media (max-width: 991.98px){}
/*|====================================================================================
    Section
=======================================================================================|*/
.section{}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|====================================================================================
    Footer
=======================================================================================|*/
.footer{
    border-top: 1px solid #dee2de;
}
.footer p{
    text-align: center;
    margin-bottom: 0;
}
.footer p a{
    color: var(--clr-primary);
    font-weight: 600;
}
.footer .footer-link{}
.footer .footer-link ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer-link ul li a{
    display: block;
    position: relative;
}
.footer .footer-link ul li:not(:first-child) a{
    padding-left: 12px;
    margin-left: 12px;
}
.footer .footer-link ul li:not(:first-child) a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
}
.footer .footer-link ul li a:hover{}
/*| Media Query |======================================================================|*/
@media (min-width: 992px){
    .footer p{
        text-align: left;
    }
    .footer .footer-link ul{
        justify-content: flex-end;
    }
}
@media (max-width: 991.98px){}
/*|====================================================================================
    Single Section
=======================================================================================|*/
.single-section{}
.single-details .img-block{
    margin-bottom: 16px;
}
.single-details .img-block img{
    border-radius: 8px;
}
.entry-header{
    margin-bottom: 16px;
}
.entry-header .entry-title{
    font-size: 22px;
    margin-bottom: 10px;
}
.entry-content{}
.entry-content h3{
    position: relative;
    font-size: 20px;
}
.entry-content h4{
    font-size: 18px;
}
.entry-content :is(h3,h4,h5){
    margin-top: 20px;
    margin-bottom: 16px;
}
.entry-content p{
    line-height: 1.6;
    font-size: 18px;
}
.entry-content ul,.entry-content ul{}
.entry-content ul li,.entry-content ol li{
    font-size: 16px;
    margin-bottom: 8px;
}
.tags-container{
    display: flex;
}
.tags-container h4{
    font-size: 16px;
    padding: 6px 0; 
    padding-right: 8px;
    margin-bottom: 0;
}
.tags-container ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.tags-container ul li a{
    display: block;
    font-size: 14px;
    padding: 6px;
}
.tags-container ul li a i{
    color: var(--clr-primary);
    margin-right: 6px;
}
.post-navigation{
    position: relative;
    padding: 16px;
    background-color: #f5f5f5;
}
.post-navigation a{}
.post-navigation a span{
    display: block;
}
.post-navigation .nav-subtitle{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.post-navigation .nav-title{}
.post-navigation .nav-previous{
    width: 50%;
    padding-right: 16px;
}
.post-navigation .nav-previous :is(.nav-subtitle, .nav-title) {
    text-align: end;
}
.post-navigation .nav-next{
    width: 50%;
    padding-left: 16px;
}

/*| Related Section |==================================================================|*/
.related-section{
    background-color: #F9F1E7;
}
.related-section .related-container{
    box-shadow: none;
    border-top: none;
    padding: 0 !important;
}
.related-section .related-container .section-title{
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .entry-header{
        margin-bottom: 20px;
    }
    .entry-header .entry-title{
        font-size: 32px;
        margin-bottom: 12px;
    }
    .single-details .img-block{
        margin-bottom: 20px;
    }
    .single-details .img-block img{
        border-radius: 12px;
    }
    .entry-content :is(h3,h4,h5){
        margin-top: 28px;
        margin-bottom: 20px;
    }
    .entry-content h3{
        font-size: 26px;
    }
    .entry-content h4{
        font-size: 22px;
    }
    .post-navigation{
        padding: 24px;
    }
    .post-navigation .nav-previous{
        width: 50%;
        padding-right: 16px;
    }
    .post-navigation .nav-next{
        width: 50%;
        border-left: 1px solid #b7b8b7;
        padding-left: 16px;
    }
}
@media (max-width: 575.98px){
    .post-navigation{
        display: none;
    }
}
/*|====================================================================================
    Cat Section
=======================================================================================|*/
.cat-section{}
.cat-section .row>*{
    margin-bottom: 20px;
}
.cat-section .card{
    border: none;
    border-radius: 6px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-height: 100%;
}
.cat-section .card .img-box{}
.cat-section .card .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}
.cat-section .card .card-body{}
.cat-section .card .card-body .title{
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}
/*| Media Query |======================================================================|*/
@media (min-width: 992px){
    .cat-section .row>*{
        margin-bottom: 24px;
    }
    .cat-section .card{}
    .cat-section .card .img-box img{
        height: 250px;
    }
    .cat-section .card .card-body{
        padding: 16px 16px 20px;
    }
}
@media (max-width: 991.98px){}
/*|====================================================================================
    Section
=======================================================================================|*/
.section{}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    KeyFrames
=====================================================================================|*/
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}
@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}
@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}
@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}
@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}