@charset "utf-8";
@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');
@import url(../css/fontawesome.min.css);
:root{
    --black-color: #000000;
    --white-color: #ffffff;
    --primary-color: #FF9019;
    --secondary-color: #ffffff;
    --btn-color: #2D2D2D;
    --heading-color: #434343;
    --text-color: #5A5A5A;
    --primary-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --icon-font: 900 20px / 1em "Font Awesome 6 Free";
}
::after, *::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{overflow-x: hidden;}
body{
    font: 400 16px/1.5 var(--primary-font);
    color: var(--text-color);
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    padding-right: 0px !important;
}
::-webkit-scrollbar{width: 4px;}
body::-webkit-scrollbar{width: 10px;}
::-webkit-scrollbar-track{background: #e1e1e1;}
::-webkit-scrollbar-thumb{background: var(--primary-color);}
::-moz-selection{
    background-color: #45da36;
    color: var(--black-color);
}
::-webkit-selection{
    background-color: #45da36;
    color: var(--black-color);
}
::selection{
    background-color: #45da36;
    color: var(--black-color);
}
@-moz-document url-prefix(){
    html{
        scrollbar-width: thin;
        scroll-behavior: smooth;
    }
}
/* ===========Common CSS Start================ */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, blockquote, address { margin: 0; padding: 0; border: 0; display: block; }
h1 {font-size: 52px; line-height: 1.2em; margin: 0 0 20px;}
h2 {font-size: 42px; line-height: 1.2em; margin: 0 0 16px;}
h3 {font-size: 32px; line-height: 1.3em; margin: 0 0 12px;}
h4 {font-size: 24px; line-height: 1.3em; margin: 0 0 10px;}
h5 {font-size: 20px; line-height: 1.4em; margin: 0 0 8px;}
h6 {font-size: 18px; line-height: 1.4em; margin: 0 0 6px;}

.container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.transition, [class*="cj-btn-"], button, a, img, .header_main, .social a i, .nav_menu a::after, .social a i::after, .social a:hover i::before, .rj_box, .rj_box .rj_icon, .rj_text, .subheading, .subheading span, .responsive_nav, .subarrow, .readmore, .readmore::before, .readmore i, .rj_ques, .rj_toggle .rj_ques:after, .rj-popup-close, .page-numbers::before, .owl-nav [class*="owl-"], .owl-dot span, .heading, .title, .headtag, .subheading, .subtitle, .subtag, [role="button"], .tab-button span::before{
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.transtition-5, .sub-menu, .shadowBoxEffect::after, .scrollup, .scrollup i, .scrollup::after, .activityBox .rj_text, [class*="rj-btn-"]::before, .shop-action, .overlayimg::after{
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.transtition-1, .radiusBoxHover::after{
    -moz-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
p, div:not([class]){
    margin: 0 0 20px;
    line-height: 1.7em;
}
p:last-child{
    margin-bottom: 0;
}
label, span, strong {
    display: inline-block;
    vertical-align: top;
}
a{
    display: inline-block;
    border: none;
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}
a:hover, a:focus{
    color: var(--heading-color);
    outline: none;
}
img{
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
hr { border-color: var(--primary-color); margin: 20px 0; }


.btn {
    display: inline-block;
    vertical-align: middle;
    min-width: 160px;
    text-align: left;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    text-transform: capitalize;
    font: 500 18px var(--primary-font);
    letter-spacing: 0.6px;
    /* height: 48px; */
    line-height: 48px;
    padding: 10px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px 2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.btn p{
    margin: 0;
    position: relative;
    padding-right: 20px;
}
.btn p::after {
    content: '';
    background: url('../images/arrow.png') no-repeat;
    background-size: contain;
    width: 13px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 35%;
}
.btn:hover, .btn:focus {
    color: var(--white-color);
    background: none;
}
.btn::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--btn-color);
    transform: rotate(180deg);
    z-index: -1;
    transition: all 400ms ease-in-out;
}
.btn:hover::before, .btn:focus::before {
    width: 100%;
    left: 0;
    transition: all 400ms ease-in-out;
}
.btn-wrap{
    margin: 20px 0;
}
.mid-content{
    max-width: 660px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 80px;
}

.section{
    position: relative;
    z-index: 1;
    margin: 100px 0px;
    /* overflow: hidden; */
}

.heading{
    font: 300 44px / 1.2em var(--primary-font);
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.banner .heading{
    font: 300 60px / 1.2em var(--primary-font);
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.heading span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.heading strong {
    color: var(--text-color);
    font-weight: 700;
}

.title {
    font: 500 40px / 1.3em var(--primary-font);
    color: var(--text-color);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.title span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}
.headtag {
    font: 500 30px / 1.3em var(--heading-font);
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}
.subheading, .subtitle, .subtag{
    font: 600 24px / 1.3em var(--heading-font);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}
.heading:last-child, .title:last-child, .heading:last-child, .subheading:last-child, .subtitle:last-child, .subtag:last-child{
    margin-bottom: 0;
}
a:hover .subheading, a:hover .subtitle, .subtitle a:hover , .subheading a:hover {
    color: var(--hover-color);
}
.subtitle {
    font-size: 20px;
    margin-bottom: 5px;
}
.subtitle.secondary-subtitle, .subheading.secondary-subheading {
    font-family: var(--primary-font);
}
.subtag {
    font-size: 18px;
}
.banner .text{
    font: 400 16px/1.5em var(--primary-font);
    color: #5A5A5A;
}
.text{
    font: 400 20px/1.5em var(--primary-font);
    color: #5A5A5A;
}
/* ===========Common Content================ */
/* ===============Social=============== */
.social{display: flex; align-items: center; flex-wrap: wrap; column-gap: 10px; justify-content: center; margin: 20px 0;}
.social .follow { text-transform: uppercase; color: var(--secondary-color); font: var(--heading-font); font-size: 20px; line-height: 1.5em; letter-spacing: 1px; }
.social a { color: #212020; vertical-align: top; position: relative; font-size: 0; line-height: normal;}
.social a::before {  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-border-radius: 4px; border-radius: 4px; background: var(--secondary-color); transform: scale(.9); z-index: 1; -moz-transition: all 500ms ease-in-out; -webkit-transition: all 500ms ease-in-out; transition: all 500ms ease-in-out;}
.social a:hover::before{ transform: scale(1.1); box-shadow: 0 0 15px var(--secondary-color); }
.social a i { display: inline-block; vertical-align: top; border: 1px solid transparent; width: 44px; height: 44px; font-size: 18px; line-height: 44px; text-align: center; -webkit-border-radius: 50%; border-radius: 50%; position: relative; z-index: 1; background-color: transparent; overflow: hidden; -moz-transition: all 300ms ease-in-out; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; }
.social .rj_facebook i { background-color: #3b5999; border-color: #3b5999; color: var(--white-color); }
.social .rj_twitter i { background-color: #000; border-color: #000; color: var(--white-color); }
.social .rj_linkedin i { background-color: #006fa6; border-color: #006fa6; color: var(--white-color); }
.social .rj_hangouts i{background-color: #0f9d58; border-color: #0f9d58; color: var(--white-color);}
.social .rj_google-plus i { background-color: #DE5347; border-color: #DE5347; color: var(--white-color); }
.social .rj_instagram i { background-color: transparent; border-color: transparent; color: var(--white-color); }
.rj_instagram i::after { content: ''; position: absolute; background: #f09433; background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); background: -webkit-linear-gradient( 45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); background: linear-gradient( 45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); top: 0; left: 0; right: 0; bottom: 0; z-index: -1; -moz-transition: all 300ms ease-in-out 0s; -webkit-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; }
.social .rj_youtube i { background-color: #E52117; border-color: #E52117; color: var(--white-color); }
.social .rj_pinterest i { background-color: #bd081c; border-color: #bd081c; color: var(--white-color); }
.social .rj_rss i { background-color: #F36F24; border-color: #F36F24; color: var(--white-color); }
.social.transparent-social a i{width: 18px; height: 18px; line-height: 18px; font-size: 14px;}
.social.transparent-social a::before, .social.transparent-social a i::after{opacity: 0;}
.social.transparent-social a:hover:before, .social.transparent-social a:hover i::after{opacity: 1;}
.social.transparent-social a:not(:hover) i{background: var(--white-color); border-color: var(--white-color); color: #454545;}
.social a:hover i{transform: rotate(360deg); transition: all 400ms ease-in;}

/* ===============Owl-carousel=============== */
.owl-carousel{
    padding: 0px;
}
.owl-carousel:not(.bannerslider) .owl-stage {
    /* display: flex;
    justify-content: center; */
    margin: 0;
}
.owl-carousel:not(.bannerslider) .item {
    height: 100%;
}
.owl-nav [class*="owl-"] {
    position: absolute;
    z-index: 5;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--heading-color);
    background: var(--white-color);
    border: 1px solid var(--border-color);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    opacity: 1;
}
.owl-nav .owl-prev {
    left: -60px;
    padding-right: 2px;
}
.owl-nav .owl-next {
    right: -60px;
    padding-left: 2px;
}
.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled {
    pointer-events: none;
    opacity: 0.4;
    background: #dfdfdf;
}
.owl-nav [class*="owl-"]:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    opacity: 1;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 50px;
    line-height: 0;
}
.owl-carousel .owl-dots .owl-dot span {
    min-width: auto;
    width: 10px;
    height: 10px;
    background: #B2C0C7;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    margin: 5px 8px;
    outline: 1px solid transparent;
    outline-offset: 4px;
}
.owl-carousel .owl-dots .owl-dot.active span{
    background: var(--primary-color);
    border-color: var(--primary-color);
    /* outline-color: var(--border-color); */
}
.owl-carousel:not(.bannerslider) .owl-item img {
    width: auto;
    margin: 0 auto;
    font-size: 12px;
}
.item:has(.shadowBox) {
    padding-bottom: 12px;
}
/* ===============Owl-carousel=============== */


/* ===================Header section================ */
.main-header .header-wrap{
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo{
    max-width: 200px;
}
.main-header .bx{
    font-size: 40px;
}
/* ===================Header section================ */

/* ====================Banner section=================== */
.banner-content{
    height: 600px;
    position: relative;
}
.banner-content::before{
    content: '';
    background: url('../images/banner.png') no-repeat right;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 60%;
}
.banner-content .banner-wrap{
    position: absolute;
    left: 0;
    top: 25%;
    max-width: 35%;
}
.banner-content .banner-wrap .btn-wrap{
    text-align: right;
}
/* ====================Banner section=================== */

/* =====================Resource================== */
.resource-list .resource-block{
    display: flex;
    align-items: center;
    column-gap: 90px;
    padding-left: 20%;
    position: relative;
} 
.resource-list .resource-block:nth-child(odd){
    flex-direction: row-reverse;
    padding-right: 20%;
    padding-left: 0;
}
.resource-list .resource-block figure{
    width: 650px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
}
.resource-list .resource-block figure::before{
    content: '';
    background-color: #FFE2C3;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -30px;
    bottom: -30px;
    z-index: -1;
}
.resource-list .resource-block .text{
    font-size: 16px;
}
.resource-list .resource-block:not(:first-child, :last-child){
    margin: 100px 0;
}
.resource-list .resource-block:nth-child(odd) .btn-wrap{
    position: absolute;
    right: 56%;
}
.resource-list .resource-block:nth-child(even) .btn-wrap{
    position: absolute;
    right: 30%;
}
/* =====================Resource================== */

/* ================Footer============== */
.main-footer{
    background-color: #313337;
}
.footer-top{
    text-align: center;
    padding: 30px 0;
}
.footer-logo{
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.main-footer p, .main-footer a{
    color: #e3e3e370;
    font-size: 14px;
    margin: 0;
}
.copyright{
    padding: 10px 0;
    border-top: 1px solid #545454;
}
.copyright p{
    font-size: 12px;
}
.footer-top .text {
    color: #fff;
}
/* ================Footer============== */


@media only screen and (min-width: 1920px) and (max-width: 3000px)  {
    .container{
        max-width: 1520px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1919px)  {

}

/*1200px*/
@media only screen and (max-width: 1400px) {
    .section{
        margin: 50px 0px;
    }
    .banner-content{
        height: 500px;
    }
    .banner-content::before{
        background-size: contain;
    }
    .banner .heading{
        font-size: 40px;
    }
    .banner .text{
        font-size: 14px;
    }
    .btn{
        min-width: 120px;
        padding: 10px 20px;
        font-size: 16px;
    }
    .btn p::after{
        top: 32%;
    }
    .heading{
        font-size: 34px;
    }
    .resource-list .resource-block figure{
        width: 550px;
        height: 370px;
    }
    .title{
        font-size: 30px;
    }
    .resource-list .resource-block .text {
        font-size: 14px;
    }
    .resource-list .resource-block:nth-child(odd){
        padding-right: 12%;
    }
    .resource-list .resource-block{
        padding-left: 12%;
    }
    .text{
        font-size: 16px;
    }
    .resource .text{
        font-size: 20px;
    }
    .mid-content{
        margin-bottom: 50px;
    }
    .about.section{
        margin-top: 80px;
    }
}

/*1170px*/
@media only screen and (max-width: 1199px) {
    .banner-content {
        height: 430px;
    }
    .resource-list .resource-block:nth-child(odd) {
        padding-right: 5%;
    }
    .resource-list .resource-block {
        padding-left: 5%;
    }
}

/*992px*/
@media only screen and (max-width: 1169px) {
	
}

/*768px*/
@media only screen and (max-width: 991px) 
{
    .banner-content {
        height: 450px;
    }
    .banner-content::before {
        background-size: cover;
        width: 100%;
    }
    .banner-content .banner-wrap{
        max-width: 100%;
    }
    .banner-content .banner-wrap .btn-wrap {
        text-align: left;
    }
    .banner-content .banner-wrap{
        top: 50%;
    }
    .resource-list .resource-block:nth-child(odd) {
        padding-right: 0;
        flex-direction: column;
        row-gap: 40px;
    }
    .resource-list .resource-block {
        padding-left: 0;
        flex-direction: column;
        row-gap: 40px;
    }
    .resource-list .resource-block:nth-child(odd) .btn-wrap, .resource-list .resource-block:nth-child(even) .btn-wrap {
        position: relative;
        right: 0;
    }
    .resource-list .resource-block figure{
        width: 100%;
    }
    .resource-list .resource-block:not(:first-child), .resource-list .resource-block:not(:last-child) {
        margin: 30px 0;
    }
    .banner-content::after {
        content: '';
        background: #000;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }
    .banner .heading, .heading strong, .banner .text{
        color: #fff;
    }
    .banner-content .banner-wrap {
        z-index: 1;
    }
}
	
/*600px*/
@media only screen and (max-width: 767px) {
    .banner-content {
        height: 340px;
    }
    .banner .heading {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .btn-wrap {
        margin: 10px 0;
    }
    .banner-content .banner-wrap {
        top: 45%;
        padding: 0 10px;
    }
    .heading {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .mid-content{
        margin-bottom: 40px;
    }
    .copyright{
        flex-direction: column;
        text-align: center;
    }
}

/*480px*/
@media only screen and (max-width: 599px) {
}

/*360px*/
@media only screen and (max-width: 479px) {
    .resource-list .resource-block figure::before{
        right: 0;
    bottom: 0;
    }
    .banner .heading {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .btn {
        min-width: 120px;
        padding: 8px;
        font-size: 14px;
    }
    .btn p{
        padding-right: 0px;
    }
    .btn p::after {
        top: 30%;
        width: 10px;
        height: 9px;
    }
    .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .resource-list .resource-block figure{
        height: 220px;
    }
}

/*320px*/
@media only screen and (max-width: 359px) {
  
}
