@import "../css/pages-css/navbar.css";
@import "../css/pages-css/home-one.css";
@import "../css/pages-css/home-two.css";
@import "../css/pages-css/home-three.css";
@import "../css/pages-css/inner-banner.css";
@import "../css/pages-css/contact.css";
@import "../css/pages-css/faq.css";
@import "../css/pages-css/blog-details.css";
@import "../css/pages-css/service-details.css";
@import "../css/pages-css/project-details.css";
@import "../css/pages-css/team.css";
@import "../css/pages-css/author.css";
@import "../css/pages-css/pagination.css";
@import "../css/pages-css/error.css";
@import "../css/pages-css/coming-soon.css";
@import "../css/pages-css/footer.css";
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/IRANSans(FaNum).ttf'),
    url('fonts/IRANSans(FaNum)_Light.ttf') format('truetype'), 
	/* FF39+,Chrome36+, Opera24+*/ 
	url('fonts/IRANSans(FaNum)_Medium.ttf') format('truetype'), 
	/* FF3.6+, IE9, Chrome6+, Saf5.1+*/ 
	url('fonts/IRANSans(FaNum)_UltraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'B Zar';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/B_Zar.woff'),
		 url('fonts/B_Zar.woff2'),   
	/* FF39+,Chrome36+, Opera24+*/ 
	url('fonts/B_Zar.TTF') format('truetype'), 
	/* FF3.6+, IE9, Chrome6+, Saf5.1+*/ 
	url('fonts/B_Zar.TTF') format('truetype');
}
@font-face {
    font-family: 'B Titr';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/B_Titr.woff'),     
		 url('fonts/B_Titr.woff2'),    
	/* FF39+,Chrome36+, Opera24+*/ 
	url('fonts/B_Titr.woff') format('truetype'), 
	/* FF3.6+, IE9, Chrome6+, Saf5.1+*/ 
	url('fonts/B_Titr.woff') format('truetype');
}

:root {
    --headerFonts: "IRANSans", sans-serif;
    --bodyFonts: "IRANSans", sans-serif;
    --oneColor: #f80a0a;
    --onelightColor: #f84040;
    --twoColor: #0ebc40;
    --titleColor: #00042e;
    --bodyColor: #4e4e4e;
    --whiteColor: #ffffff;
    --fontSize: 16px;
    --transition: 0.5s;
}
body {
    padding: 0;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    font-size: var(--fontSize);
    font-family: var(--bodyFonts);
	direction:rtl;
	text-align:right;
}
p {
    color: var(--bodyColor);
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: justify;
}
p[dir="ltr"]{
	text-align:left !important;
}
p:last-child {
    margin-bottom: 0;
}
a {
    display: inline-block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
}
button {
    outline: 0;
}
button:focus {
    outline: 0;
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: var(--titleColor);
    line-height: 1.4;
    font-family: var(--headerFonts);
}
h3 {
    font-size: 20px;
}
article h1, .section-title h1{
     font-family: 'B Titr';
}
.category-desc p,.category-desc p span, .category-desc li{
	font-size: 18pt !important;	
	line-height: 1.8 !important;
	text-align: justify !important;
	font-family: 'B Zar' !important;	
}
.category-desc h1, .category-desc h1 span,
.category-desc h2, .category-desc h2 span,
.category-desc h3, .category-desc h3 span,
.category-desc h4, .category-desc h4 span,
.category-desc h5, .category-desc h5 span,
.category-desc h6, .category-desc h6 span {
	font-family: 'B Titr' !important;
}
.active > a > i{
	color: var(--whiteColor) !important;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}
img {
    max-width: 100%;
}
.pt-150 {
    padding-top: 150px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px !important;
}
.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-20 {
    padding-top: 20px;
}
.pl-20 {
    padding-right: 20px;
}
.pr-20 {
    padding-left: 20px;
}
.pb-10 {
    padding-bottom: 10px;
}
.ml-20 {
    margin-right: 20px;
}
.border-radius-5 {
    border-radius: 5px !important;
}
.border-radius-50 {
    border-radius: 50px !important;
}
.default-btn {
    padding: 10px 30px;
    color: var(--whiteColor);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    background-color: var(--oneColor);
    border: none;
    outline: none;
}
.default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--twoColor);
    right: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.default-btn:hover {
    color: var(--whiteColor);
}
.default-btn:hover::before {
    width: 100%;
    opacity: 1;
}
.default-btn.two {
    background-color: var(--twoColor);
}
.default-btn.two:hover {
    color: var(--whiteColor);
}
.default-btn.two:hover::before {
    background-color: var(--oneColor);
}
.section-title .sp-title {
    padding-bottom: 22px;
    display: inline-block;
    line-height: 0;
    font-size: 15px;
    color: var(--twoColor);
    padding-right: 0;
    position: relative;
    font-weight: 500;
}
.section-title .sp-title::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    height: 2px;
    width: 50px;
    background-color: var(--twoColor);
    display: none;
}
.section-title .sp-title::after {
    content: "";
    position: absolute;
    bottom: 14px;
    right: 0;
    height: 15px;
    width: 10%;
    background-color: var(--whiteColor);
    -webkit-animation: MOVE-BG 2s linear infinite;
    animation: MOVE-BG 2s linear infinite;
}
.section-title .sp-title2 {
    padding-bottom: 20px;
    line-height: 0;
    font-size: 15px;
    color: var(--onelightColor);
    padding-right: 0;
    position: relative;
    font-weight: 500;
    display: inline-block;
}
.section-title .sp-title2::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    height: 2px;
    width: 50px;
    background-color: var(--onelightColor);
    display: none;
}
.section-title .sp-title2::after {
    content: "";
    position: absolute;
    bottom: 14px;
    right: 0;
    height: 15px;
    width: 10%;
    background-color: var(--whiteColor);
    -webkit-animation: MOVE-BG 2s linear infinite;
    animation: MOVE-BG 2s linear infinite;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.2;
    color: var(--titleColor);
    margin-bottom: 0;
}
.section-title p {
    padding-top: 15px;
    margin-bottom: 0;
}
@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-88px);
        transform: translateX(-88px);
    }
}
@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-88px);
        transform: translateX(-88px);
    }
}
.work-area::before {
    background-image: url(../images/work-img/work-bg.jpg);
}
.testimonial-area::before {
    background-image: url(../images/testimonial/testimonial-bg.jpg);
}
.terms-conditions-img {
    margin-bottom: 30px;
}
.single-content {
    margin-bottom: 30px;
}
.single-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}
.single-content p {
    margin-bottom: 0;
}
.gallery-photo-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.gallery-photo-item::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    height: 50%;
    opacity: 0.1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    background-color: var(--titleColor);
}
.gallery-photo-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    height: 50%;
    opacity: 0.1;
    background-color: var(--titleColor);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
.gallery-photo-item .photo-button {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    text-align: center;
    width: 100%;
}
.gallery-photo-item .photo-button h3 {
    color: var(--whiteColor);
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.gallery-photo-item .photo-button .photo-icon {
    width: 100px;
    height: 50px;
    line-height: 45px;
    background-color: var(--whiteColor);
    font-size: 16px;
    color: var(--oneColor);
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}
.gallery-photo-item .photo-button .photo-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--whiteColor);
    -webkit-animation: ripple 2s infinite ease-in-out;
    animation: ripple 2s infinite ease-in-out;
    border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover {
    background-color: var(--oneColor);
    color: var(--whiteColor);
    border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover::before {
    border-color: var(--oneColor);
}
.gallery-photo-item:hover::before {
    opacity: 0.8;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.gallery-photo-item:hover::after {
    opacity: 0.8;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.gallery-photo-item:hover .photo-button h3 {
    opacity: 1;
}
.gallery-photo-item:hover .photo-button .photo-icon {
    opacity: 1;
}


.categories-title {
    margin-bottom: 30px;
}
.categories-title h3 {
    font-size: 24px;
    color: var(--titleColor);
}
.categories-title h3 span {
    color: var(--bodyColor);
    font-size: 17px;
}
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--oneColor);
}
.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}
.double-bounce1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whiteColor);
    opacity: 0.6;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whiteColor);
    opacity: 0.6;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.go-top {
    position: fixed;
    top: 70%;
    left: 3%;
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--whiteColor);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    background: var(--oneColor);
    border-radius: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    z-index: 100;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.go-top i {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    vertical-align: middle;
}
.go-top:hover {
    background-color: var(--titleColor);
}
.go-top:hover i {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.go-top.active {
    top: 95%;
    -webkit-transform: translateY(-95%);
    transform: translateY(-95%);
    opacity: 1;
    visibility: visible;
}
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes help-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-30px, 0);
        transform: translate(-30px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@keyframes help-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-30px, 0);
        transform: translate(-30px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(-73px, -1px) rotate(-36deg);
        transform: translate(-73px, -1px) rotate(-36deg);
    }
    40% {
        -webkit-transform: translate(-141px, 72px) rotate(-72deg);
        transform: translate(-141px, 72px) rotate(-72deg);
    }
    60% {
        -webkit-transform: translate(-83px, 122px) rotate(-108deg);
        transform: translate(-83px, 122px) rotate(-108deg);
    }
    80% {
        -webkit-transform: translate(40px, 72px) rotate(-144deg);
        transform: translate(40px, 72px) rotate(-144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}
@keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(-73px, -1px) rotate(-36deg);
        transform: translate(-73px, -1px) rotate(-36deg);
    }
    40% {
        -webkit-transform: translate(-141px, 72px) rotate(-72deg);
        transform: translate(-141px, 72px) rotate(-72deg);
    }
    60% {
        -webkit-transform: translate(-83px, 122px) rotate(-108deg);
        transform: translate(-83px, 122px) rotate(-108deg);
    }
    80% {
        -webkit-transform: translate(40px, 72px) rotate(-144deg);
        transform: translate(40px, 72px) rotate(-144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}
@-webkit-keyframes movebounce-up {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-120px);
        transform: translateY(-120px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes movebounce-up {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-120px);
        transform: translateY(-120px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@-webkit-keyframes move-to {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(50px, 0);
        transform: translate(50px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@keyframes move-to {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-50px, 0);
        transform: translate(-50px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes running-in {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(10px, 150px);
        transform: translate(10px, 150px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@keyframes running-in {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(10px, 150px);
        transform: translate(10px, 150px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes leaves {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes leaves {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes leaves {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes waving-line {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -200px 0;
    }
}
@-webkit-keyframes waving-line {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -200px 0;
    }
}
@-webkit-keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pt-100 {
        padding-top: 50px;
    }
    .ptb-70 {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .pb-100 {
        padding-bottom: 50px !important;
    }
    .pt-70 {
        padding-top: 50px;
    }
    .pb-70 {
        padding-bottom: 20px;
    }
    .pt-45 {
        padding-top: 30px;
    }
    .pb-10 {
        padding-bottom: 0;
    }
    .pl-20 {
        padding-right: 0;
    }
    .pr-20 {
        padding-left: 0;
    }
    .ml-20 {
        margin-right: 20px;
    }
    .default-btn {
        padding: 8px 20px;
    }
    .section-title span {
        font-size: 12px;
    }
    .section-title .sp-title {
        font-size: 14px;
        padding-right: 0;
        display: block;
        padding-bottom: 15px;
    }
    .section-title .sp-title::before {
        display: none;
    }
    .section-title .sp-title::after {
        display: none;
    }
    .section-title .sp-title2 {
        font-size: 14px;
        padding-right: 0;
        display: block;
        padding-bottom: 15px;
    }
    .section-title .sp-title2::before {
        display: none;
    }
    .section-title .sp-title2::after {
        display: none;
    }
    .section-title h2 {
        font-size: 22px;
    }
    .section-title p {
        padding-top: 10px;
    }
    .ps-2 {
        padding-right: 0 !important;
    }
    .ps-3 {
        padding-right: 0 !important;
    }
    .ps-5 {
        padding-right: 0 !important;
    }
    .ps-0 {
        padding-right: 15px !important;
    }
    .pe-0 {
        padding-left: 15px !important;
    }
    .p-0 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .go-top .active {
        top: 85%;
    }	
	.nav-search .centered {	  
	  width:85%;	
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.nav-search .centered {	  
	  width:65%;	
	}
    .banner-area .container-fluid {
        width: 720px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .banner-area-two .container-fluid {
        width: 720px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .banner-area-three .container-fluid {
        width: 720px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    body {
        font-size: 15px;
    }
    .ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pt-100 {
        padding-top: 50px;
    }
    .ptb-70 {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .pb-100 {
        padding-bottom: 50px !important;
    }
    .pt-70 {
        padding-top: 50px;
    }
    .pb-70 {
        padding-bottom: 20px;
    }
    .pt-45 {
        padding-top: 30px;
    }
    .pb-10 {
        padding-bottom: 0;
    }
    .pl-20 {
        padding-right: 0;
    }
    .pr-20 {
        padding-left: 0;
    }
    .ml-20 {
        margin-right: 20px;
    }
    .default-btn {
        padding: 8px 20px;
    }
    .section-title span {
        font-size: 12px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .section-title p {
        padding-top: 10px;
    }
    .ps-2 {
        padding-right: 0 !important;
    }
    .ps-3 {
        padding-right: 0 !important;
    }
    .ps-5 {
        padding-right: 0 !important;
    }
    .ps-0 {
        padding-right: 15px !important;
    }
    .pe-0 {
        padding-left: 15px !important;
    }
    .p-0 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ps-2 {
        padding-right: 0 !important;
    }
    .ps-3 {
        padding-right: 0 !important;
    }
    .ps-5 {
        padding-right: 0 !important;
    }
    .section-title h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .ps-2 {
        padding-right: 0 !important;
    }
    .ps-3 {
        padding-right: 0 !important;
    }
    .ps-5 {
        padding-right: 0 !important;
    }
    .container-fluid {
        width: 1200px;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}
@media only screen and (min-width: 1350px) and (max-width: 1439px) {
    .container-fluid {
        width: 1320px;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .banner-slider .owl-nav {
        margin-top: 0;
        width: 1320px !important;
        position: absolute;
    }
}
@media only screen and (min-width: 1440px) and (max-width: 1799px) {
    .container-fluid {
        width: 1460px;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .banner-slider .owl-nav {
        margin-top: 0;
        width: 1460px !important;
        position: absolute;
    }
}
@media only screen and (min-width: 1300px) {
    .container {
        max-width: 1320px !important;
    }
}
@media only screen and (min-width: 1800px) {
    .container-fluid {
        width: 1640px;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .banner-slider .owl-nav {
        margin-top: 0;
        width: 1760px !important;
        position: absolute;
    }
}
.category-widget .responsive-item {
	display:none;
}
@media only screen and (max-width: 991px) {
	.categories-desktop{
		display: none;
	}
	.category-widget .responsive-item {
		display: block;
		position: absolute;
		top: 15%;
		left: 3%;		
		cursor: pointer;
		text-decoration: none;		
		border-radius: 0;
		width: 100px;
		height: 50px;
		line-height: 23px;
		-webkit-transition: 0.5s;
		transition: 0.5s;
		
		/*font-size: 24px;
		font-weight: 700;*/
		text-align: center;
		
	}
}


.knowledge-area {
  position:relative;
  z-index:1;
  margin-bottom:30px;
  background-color:var(--whiteColor);
  -webkit-box-shadow:0 0 15px rgba(0,0,0,.1);
  box-shadow:0 0 15px rgba(0,0,0,.1);
  display: block;
  margin-bottom: 30px;
}

.knowledge-area::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    height: 50%;
    opacity: 0.1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    background-color: var(--titleColor);
}
.knowledge-area::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    height: 50%;
    opacity: 0.1;
    background-color: var(--titleColor);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
.knowledge-area .knowledge-img {
  position:relative;
  z-index:1;
  -webkit-transition:var(--transition);
  transition:var(--transition)
}
.knowledge-area .knowledge-img img {
  border-radius:5px
}

.knowledge-area .content {
  border-radius:0 0 5px 5px;
  padding:20px;
  text-align:center;
  margin:0 auto;
  background-color:var(--whiteColor);
  position:relative;
  z-index:1
}
.knowledge-area .content::before {
  content:'';
  position:absolute;
  z-index:-1;
  border-radius:0 0 5px 5px;
  top:0;
  right:0;
  width:100%;
  height:0%;
  background-color:var(--oneColor);
  -webkit-transition:var(--transition);
  transition:var(--transition);
  opacity:0
}
.knowledge-area .content h3 {
  margin-bottom:5px;
  color:var(--titleColor)
}
.knowledge-area .content span {
  color:var(--oneColor)
}
.knowledge-area:hover .content::before {
  opacity:1;
  height:100%
}
.knowledge-area:hover .content h3 {
  color:var(--whiteColor) !important;
}
.knowledge-area:hover .content span {
  color:var(--whiteColor) !important;
}
.knowledge-area:hover .content h3 a {
	color: var(--whiteColor) !important;	
}
.knowledge-area:hover .content h3 a:hover {
	color: var(--whiteColor) !important;	
}

.knowledge-area .readmore-button {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    text-align: center;
    width: 100%;
}
.knowledge-area .readmore-button h3 {
    color: var(--whiteColor);
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.knowledge-area .readmore-button .icon {
    width: 100px;
    height: 50px;
    line-height: 45px;
    background-color: var(--whiteColor);
    font-size: 16px;
    color: var(--oneColor);
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}
.knowledge-area .readmore-button .icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--whiteColor);
    -webkit-animation: ripple 2s infinite ease-in-out;
    animation: ripple 2s infinite ease-in-out;
    border-radius: 50px;
}
.knowledge-area .readmore-button .icon:hover {
    background-color: var(--oneColor);
    color: var(--whiteColor);
    border-radius: 50px;
}
.knowledge-area .readmore-button .icon:hover::before {
    border-color: var(--oneColor);
}
.knowledge-area:hover::before {
    opacity: 0.8;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.knowledge-area:hover::after {
    opacity: 0.8;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.knowledge-area:hover .readmore-button h3 {
    opacity: 1;
}
.knowledge-area:hover .readmore-button .icon {
    opacity: 1;
}