:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #ffffff;
    --e-global-color-text: #b0b8db;
    --e-global-color-accent: var(--primary--color);
    --e-global-color-white: #2d2d2d;
    --e-global-color-black: #000000;
    --e-global-color-very-dark-blue: #0f1e5d;
    --e-global-color-vivid-yellow: #dfb405;
    --e-global-color-soft-red: #e45267;
    --e-global-color-dark-blue: #0d1a4f;
    --e-global-color-mostly-desaturated-dark-blue: #6f789e;
    --e-global-color-moderate-blue: #3c59d5; 
    --e-global-color-bright-blue:#19296f;
    --e-global-color-soft-blue: #506ad9;
    --e-global-color-light-grayish-blue:#b0b8db;
    --e-global-color-very-bright-blue:#19296f;
    --e-global-color-very-soft-blue: #4e69d9;
    --e-global-color-dark-moderate-blue: #303f7e;
    --e-global-color-bright-moderate-blue: #334cb5;
    --e-global-color-soft-dark-blue: #283a8a;
    --e-global-color-very-dark-moderate-blue: #47548c;
    --e-global-color-very-light-moderate-blue: #4a65d8;
    --e-global-color-light-moderate-blue: #4d64cb;
}
a {
	outline:none;
	color:#dddddd;
	text-decoration:none;
}
/**************************************************/
/*-------- BLOG PAGES ------------ */
.text-size-18 {
    font-size: 18px;
    line-height: 26px;
}
.text-size-16 {
    font-size: 16px;
    line-height: 26px;
}
.text-size-14 {
    font-size: 14px;
    line-height: 24px;
}

/* Home Page Style */
/* Partner */

.partner-section h3{
    text-align: center;
    color: var(--e-global-color-primary);
    margin-bottom: 40px;
}
.partner-section span{
    padding: 0 2px;
    color: var(--e-global-color-accent);
}
.partner-section .partner_box {
    border-radius: 20px;
    width: 100%;
    margin-top: -163px;
    padding: 78px 97px 82px;
    background-color: var(--e-global-color-moderate-blue);
    z-index: 1;
    position: relative;
}
.partner-section .partner_box li{
    display: inline-block;
    margin-right: 70px;
}
.partner-section .partner_box li:first-child{
    margin-left: 0;
}
.partner-section .partner_box li:last-child{
    margin-right: 0;
}
.partner-section .partner_box .partner:hover{
    filter: brightness(0) invert(1);
}

/* About Us */

.about-section {
    background: var(--e-global-color-bright-blue);
    padding: 295px 0 140px;
    position: relative;
    overflow: hidden;
    margin-top: -158px;
}
.about-section .about-sidecircleimage{
    position: absolute;
    top: 223px;
    left: -270px;
}
.about-section .about-circle{
    position: absolute;
    left: 130px;
    top: 258px;
}
.about-section .about_wrapper{
    position: relative;
}
.about-section .about_wrapper .about-image1{
    position: absolute;
    top: 3px;
    right: 18px;
    z-index: 1;
}
.about-section .about_wrapper .about-image1 img{
    border-radius: 15px;
}
.about-section .about_wrapper .about-image2 {
    position: absolute;
    top: 326px;
    left: -4px;
    z-index: 1;
}
.about-section .about_wrapper .about-image2 img{
    border-radius: 15px;
    border-top: 7px solid var(--e-global-color-white);
    border-right: 7px solid var(--e-global-color-white);
}
.about-section .about_wrapper .about-circleimage {
    position: absolute;
    top: 125px;
    left: 26px;
}
.about-section .about_wrapper .about-circleimage img {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
.about-section .about_wrapper .about-lineimage {
    position: absolute;
    top: 5px;
    left: 97px;
}
.about-section .about_wrapper .about-lineimage img {
    -webkit-animation: mover1 1s infinite  alternate;
    animation: mover1 1s infinite  alternate;
}
@-webkit-keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.about-section .about_content{
    padding-left: 8px;
}
.about-section .about_content h6{
    margin-bottom: 12px;
}
.about-section .about_content h2{
    margin-bottom: 23px;
    line-height: 58px;
}
.about-section .about_content p{
    color: var(--e-global-color-text);
    margin: 0 15px 24px 0;
}
.about-section .nav-tabs {
    border-bottom: none;
    margin-bottom: 16px;
}
.about-section .nav-tabs li{
    margin: 0 14px;
}
.about-section .nav-tabs li:first-child{
    margin-left: 0;
}
.about-section .nav-tabs li:last-child{
    margin-right: 0;
}
.about-section .tabs-box{
    position: relative;
    margin-bottom: 32px;
}
.about-section .tabs-box .nav-tabs li a {
    display: inline-block;
    color: var(--e-global-color-white);
    border-bottom: 1px solid var(--e-global-color-white);
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.about-section .tabs-box .nav-tabs li a:hover {
    color: var(--e-global-color-vivid-yellow);
    border-bottom: 1px solid var(--e-global-color-vivid-yellow);
}
.about-section .tabs-box .nav-tabs .active > a{
    color: var(--e-global-color-vivid-yellow) !important;
    border-bottom: 1px solid var(--e-global-color-vivid-yellow);
}
.about-section .tabs-box .nav-tabs > li > a.active {
    color: var(--e-global-color-vivid-yellow);
    border-bottom: 1px solid var(--e-global-color-vivid-yellow);
}
.about-section .tabs-box .tab-content p{
    margin-bottom: 16px;
    margin-right: 0;
}
.about-section .about_content .properties{
    display: flex;
}
.about-section .about_content .properties ul{
    padding-left: 16px;
}
.about-section .about_content .properties .first-list{
    margin-right: 39px;
}
.about-section .about_content .properties li {
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.about-section .about_content .properties ul li .circle {
    position: relative;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 2px;
    left: -15px;
}
.about-section .about_content .properties ul li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.about-section .about_content .properties ul li:hover {
    color: var(--e-global-color-vivid-yellow);
}
.about-section .about_content .properties ul li:hover .circle{
    border:2px solid var(--e-global-color-vivid-yellow);
    border-right-style: none;
}
.about-section .about_content .properties ul li:hover .circle:before{
    color: var(--e-global-color-vivid-yellow);
}
.about-section .about_content .get_started {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
    padding: 20px 45px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.about-section .about_content .get_started:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-red);
}

/* Services */

.service-section {
    background: var(--e-global-color-very-dark-blue);
    padding: 138px 0 105px;
    position: relative;
}
.service-section .service-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.service-section .service-lefttoplayer{
    position: absolute;
    left: 0;
    top: 0;
}
.service-section .service-rightbottomlayer{
    position: absolute;
    right: 0;
    bottom: 0;
}
.service-section .service_content{
    text-align: center;
}
.service-section .service_content h6{
    margin-bottom: 16px;
}
.service-section .service_content h2{
    margin-bottom: 50px;
}
.service-section .service-box{
    text-align: center;
    border-radius: 20px;
    padding: 50px 40px 40px;
    background-color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
    margin-bottom: 35px;
}
.service-section .service-box:hover{
    transform: translateY(-5px);
    background-color: var(--e-global-color-moderate-blue);
}
.service-section .service-box .service-icon{
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 115px;
    margin-bottom: 27px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-moderate-blue);
    border: 4px solid var(--e-global-color-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.service-section .service-box:hover .service-icon{
    background-color: transparent;
    border: 4px solid var(--e-global-color-soft-blue);
}
.service-section .service-box .service-icon:hover {
    transform: translateY(-10px);
}
.service-section .service-box h4{
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}
.service-section .service-box .text-size-18{
    color: var(--e-global-color-text);
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.service-section .service-box .read_more {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
}
.service-section .service-box .read_more:hover {
    color: var(--e-global-color-white);
}
.service-section .service-box .read_more .arrow{
    font-size: 16px;
    line-height: 16px;
    margin-left: 4px;
    position: relative;
    top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-vivid-yellow);
}
.service-section .service-box .read_more:hover .arrow{
    color: var(--e-global-color-white);
}

/* Security */

.security-section {
    background: var(--e-global-color-bright-blue);
    padding: 188px 0 150px;
    position: relative;
    overflow: hidden;
}
.security-section .security-sidecircleimage{
    position: absolute;
    top: 456px;
    right: -274px;
}
.security-section .security-circle{
    position: absolute;
    right: 112px;
    top: 474px;
}
.security-section .security_wrapper{
    position: relative;
}
.security-section .security_wrapper .security-circleimage{
    position: absolute;
    top: -15px;
    left: -5px;
}
.security-section .security_wrapper .security-image1 {
    position: absolute;
    top: -45px;
    left: 45px;
}
.security-section .security_content{
    padding-left: 20px;
}
.security-section .security_content h6{
    margin-bottom: 12px;
}
.security-section .security_content h2{
    margin-bottom: 18px;
    line-height: 58px;
}
.security-section .security_content p{
    color: var(--e-global-color-text);
    margin: 0 5px 36px 0;
}
.security-section .security_content ul{
    display: flex;
    margin-bottom: 40px;
}
.security-section .security_content ul li {
    border-right: 1px solid var(--e-global-color-very-dark-moderate-blue);
    padding: 0 30px;
}
.security-section .security_content ul li:first-child {
    padding-left: 0;
}
.security-section .security_content ul li:last-child {
    padding-right: 0;
    border-right: none;
}
.security-section .security_content ul .value {
    color: var(--e-global-color-vivid-yellow);
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}
.security-section .security_content ul .plus {
    color: var(--e-global-color-vivid-yellow);
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    display: inline-block;
    top: -14px;
    left: -4px;
}
.security-section .security_content ul .text {
    color: var(--e-global-color-text);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    display: block;
}
.security-section .security_content .learn_more {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
    padding: 20px 45px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-red);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.security-section .security_content .learn_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-vivid-yellow);
}
.security-section .security-intelligence{
    padding-top: 172px;
}
.security-section .security_content2 h6{
    margin-bottom: 12px;
}
.security-section .security_content2 h2{
    margin-bottom: 18px;
    line-height: 58px;
}
.security-section .security_content2 p{
    color: var(--e-global-color-text);
    margin-bottom: 28px;
}
.security-section .security_content2 .security-lowercontent{
    position: relative;
    display: flex;
}
.security-section .security_content2 .security-lowercontent .icon{
    position: absolute;
    top: 8px;
    left: 5px;
    transition: all 0.3s ease-in-out;
}
.security-section .security_content2 .security-lowercontent .icon:hover{
    transform: translateY(-5px);
}
.security-section .security_content2 .security-lowercontent .icon2{
    left: 4px;
}
.security-section .security_content2 .security-lowercontent .content{
    padding-left: 64px;
}
.security-section .security_content2 .security-lowercontent .content2{
    padding-left: 58px;
}
.security-section .security_content2 .security-lowercontent .content h5{
    color: var(--e-global-color-white);
}
.security-section .security_content2 .security-lowercontent .content p{
    margin-bottom: 22px;
    margin-right: 16px;
}
.security-section .security_wrapper2{
    position: relative;
}
.security-section .security_wrapper2 .security-circleimage{
    position: absolute;
    top: -32px;
    right: -5px;
}
.security-section .security_wrapper2 .security-image2 {
    position: absolute;
    top: -32px;
    right: 47px;
}

/* Pricing */

.pricing-section {
    background: var(--e-global-color-very-dark-blue);
    padding: 138px 0 140px;
    position: relative;
}
.pricing-section .pricing-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.pricing-section .pricing-leftbottomlayer{
    position: absolute;
    left: 0;
    bottom: 0;
}
.pricing-section .pricing-righttoplayer{
    position: absolute;
    right: 0;
    top: 0;
}
.pricing-section .pricing_content{
    text-align: center;
}
.pricing-section .pricing_content h6{
    margin-bottom: 16px;
}
.pricing-section .pricing_content h2{
    margin-bottom: 50px;
}
.pricing-section .pricing-box{
    text-align: center;
    border-radius: 20px;
    padding: 60px 40px;
    background-color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box:hover{
    transform: translateY(-5px);
    background-color: var(--e-global-color-moderate-blue);
}
.pricing-section .pricing-box .pricing-icon{
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 115px;
    margin-bottom: 27px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-moderate-blue);
    border: 4px solid var(--e-global-color-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box:hover .pricing-icon{
    background-color: transparent;
    border: 4px solid var(--e-global-color-soft-blue);
}
.pricing-section .pricing-box .pricing-icon:hover {
    transform: translateY(-10px);
}
.pricing-section .pricing-box h4{
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}
.pricing-section .pricing-box .text{
    color: var(--e-global-color-text);
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box .counting {
    margin-bottom: 24px;
}
.pricing-section .pricing-box sup {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--e-global-color-white);
    display: inline-block;
    margin-right: -2px;
}
.pricing-section .pricing-box .text1 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: var(--e-global-color-white);
}
.pricing-section .pricing-box .month {
    text-transform: uppercase;
    color: var(--e-global-color-white);
}
.pricing-section .pricing-box ul{
    margin-bottom: 32px;
    margin-left: 60px;
}
.pricing-section .pricing-box ul li {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: var(--e-global-color-text);
}
.pricing-section .pricing-box ul li .circle {
    position: relative;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    margin-right: 17px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 2px;
}
.pricing-section .pricing-box ul li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}
.pricing-section .pricing-box ul li:hover {
    color: var(--e-global-color-vivid-yellow);
}
.pricing-section .pricing-box ul li:hover .circle{
    border: 2px solid var(--e-global-color-vivid-yellow);
    border-right-style: none;
}
.pricing-section .pricing-box ul li:hover .circle:before{
    color: var(--e-global-color-vivid-yellow);
}
.pricing-section .pricing-box .choose_plan {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box .choose_plan:hover {
    color: var(--e-global-color-white);
}
.pricing-section .pricing-box .choose_plan .arrow{
    font-size: 16px;
    line-height: 16px;
    margin-left: 4px;
    position: relative;
    top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-vivid-yellow);
}
.pricing-section .pricing-box .choose_plan:hover .arrow{
    color: var(--e-global-color-white);
}

/* Choose */

.choose-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0 140px;
    position: relative;
    overflow: hidden;
}
.choose-section .choose-sidecircleimage{
    position: absolute;
    top: 295px;
    left: -270px;
}
.choose-section .choose-circle{
    position: absolute;
    left: 130px;
    top: 330px;
}
.choose-section .choose_content{
    text-align: center;
}
.choose-section .choose_content h6{
    margin-bottom: 16px;
}
.choose-section .choose_content h2{
    margin-bottom: 50px;
}
.choose-section .choose-box{
    text-align: center;
    border-radius: 20px;
    padding: 73px 55px 70px;
    border: 4px solid var(--e-global-color-dark-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.choose-section .choose-box:hover{
    transform: translateY(-5px);
    background-color: var(--e-global-color-dark-moderate-blue);
}
.choose-section .choose-box .image{
    position: relative;
    margin-bottom: 36px;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose-box .image:hover {
    transform: translateY(-10px);
}
.choose-section .choose-box .image .choose-iconcircle{
    position: relative;
}
.choose-section .choose-box .image .choose-image1{
    position: absolute;
    top: 45px;
    left: 114px;
}
.choose-section .choose-box .image .choose-image2{
    position: absolute;
    top: 45px;
    left: 101px;
}
.choose-section .choose-box h4{
    color: var(--e-global-color-white);
    margin-bottom: 14px;
}
.choose-section .choose-box .text-size-18{
    color: var(--e-global-color-text);
    margin-bottom: 28px;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose-box .learn_more {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
    padding: 20px 45px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-red);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.choose-section .choose-box .learn_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-vivid-yellow);
}

/* Testimonial */

.testimonial-section {
    background: var(--e-global-color-very-dark-blue);
    padding: 138px 0 140px;
    position: relative;
}
.testimonial-section .testimonial-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.testimonial-section .testimonial-lefttoplayer{
    position: absolute;
    left: 0;
    top: 0;
}
.testimonial-section .testimonial-rightbottomlayer{
    position: absolute;
    right: 0;
    bottom: 0;
}
.testimonial-section .testimonial_content{
    text-align: center;
}
.testimonial-section .testimonial_content h6{
    margin-bottom: 16px;
}
.testimonial-section .testimonial_content h2{
    margin-bottom: 50px;
}
.testimonial-section .testimonial-box{
    position: relative;
    border-radius: 20px;
    padding: 65px 53px 10px;
    background: var(--e-global-color-moderate-blue);
    height: 426px;
}
.testimonial-section .testimonial-box .testimonial-rectangleimage{
    position: absolute;
    top: 20px;
    left: 19px;
}
.testimonial-section .testimonial-box .testimonial-image {
    position: relative;
    width: 25%;
    float: left;
    top: 28px;
}
.testimonial-section .testimonial-box .box-content {
    width: 75%;
    display: inline-block;
    border-left: 1px solid var(--e-global-color-very-dark-grayish-blue);
    padding-left: 20px;
}
.testimonial-section .testimonial-box .box-content .testimonial-quoteimage{
    margin-bottom: 24px;
}
.testimonial-section .testimonial-box .box-content .text {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 19px;
    color: var(--e-global-color-white);
}
.testimonial-section .testimonial-box .box-content ul li {
    display: inline-block;
}
.testimonial-section .testimonial-box .box-content ul li a {
    color: var(--e-global-color-vivid-yellow);
}
.testimonial-section .testimonial-box .box-content ul li i {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 17px;
}
.testimonial-section .testimonial-box .box-content .heading {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.testimonial-section .testimonial-box .box-content .text-size-18 {
    color: var(--e-global-color-text);
}
.testimonial-section .pagination-outer {
    position: absolute;
    right: 26px;
    bottom: 5px;
}
#carouselExampleControls .carousel-control-prev{
    position: relative;
    left: -15px;
    top: 24px;
    font-size: 24px;
    line-height: 24px;
    color: var(--e-global-color-white);
    opacity: 1;
}
#carouselExampleControls .carousel-control-next{
    position: relative;
    right: -25px;
    top: 0;
    font-size: 24px;
    line-height: 24px;
    color: var(--e-global-color-white);
    opacity: 1;
}
#carouselExampleControls .carousel-control-prev:hover, 
#carouselExampleControls .carousel-control-next:hover {
    color: var(--e-global-color-vivid-yellow);
}

/* Blog */

.blog-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0 140px;
    position: relative;
    overflow: hidden;
}
.blog-section .blog-sidecircleimage{
    position: absolute;
    top: 260px;
    right: -274px;
}
.blog-section .blog-circle{
    position: absolute;
    right: 110px;
    top: 270px;
}
.blog-section .blog_content{
    text-align: center;
}
.blog-section .blog_content h6{
    margin-bottom: 16px;
}
.blog-section .blog_content h2{
    margin-bottom: 50px;
}
.blog-section .blog_boxcontent{
    width: 100%;
    border-radius: 20px;
    background: var(--e-global-color-very-dark-blue);
    transition: all 0.3s ease-in-out;
}
.blog-section .blog_boxcontent:hover{
    background: var(--e-global-color-moderate-blue);
}
.blog-section .blog_boxcontent .upper_portion{
    position: relative;
}
.blog-section .blog_boxcontent .upper_portion figure img{
    border-radius: 20px 20px 0 0;
}
.blog-section .blog_boxcontent .lower_portion_wrapper {
    padding: 28px 38px 30px;
}
.blog-section .blog_boxcontent1 .lower_portion_wrapper {
    padding: 29px 30px 30px;
}
.blog-section .blog_boxcontent .lower_portion_wrapper span{
    color: var(--e-global-color-text);
    display: block;
    margin-bottom: 10px;
}
.blog-section .blog_boxcontent1 .lower_portion_wrapper span{
    margin-bottom: 6px;
}
.blog-section .blog_boxcontent .lower_portion_wrapper h5 {
    font-weight: 500;
    color: var(--e-global-color-white);
    margin-bottom: 36px;
}
.blog-section .blog_boxcontent1 .lower_portion_wrapper .heading {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 19px;
}
.blog-section .blog_boxcontent .lower_portion_wrapper .read_more {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
}
.blog-section .blog_boxcontent .lower_portion_wrapper .read_more:hover {
    color: var(--e-global-color-white);
}
.blog-section .blog_boxcontent .lower_portion_wrapper .read_more .arrow{
    font-size: 16px;
    line-height: 16px;
    margin-left: 4px;
    position: relative;
    top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-vivid-yellow);
}
.blog-section .blog_boxcontent .lower_portion_wrapper .read_more:hover .arrow{
    color: var(--e-global-color-white);
}

/* Contact */

.contact-section {
    background: var(--e-global-color-very-dark-blue);
    padding: 146px 0 150px;
    position: relative;
}
.contact-section .contact-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.contact-section .contact-leftbottomlayer{
    position: absolute;
    left: 0;
    bottom: 0;
}
.contact-section .contact-righttoplayer{
    position: absolute;
    right: 0;
    top: 0;
}
.contact-section .contact_wrapper{
    position: relative;
}
.contact-section .contact_wrapper .contact-circleimage{
    position: absolute;
    top: 40px;
    left: -5px;
}
.contact-section .contact_wrapper .contact-emailimage {
    position: absolute;
    top: 32px;
    left: 105px;
}
.contact-section .contact_content{
    padding-left: 20px;
}
.contact-section .contact_content h6{
    margin-bottom: 18px;
}
.contact-section .contact_content h2{
    margin-bottom: 32px;
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.contact-section .contact_content input {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: var(--e-global-color-bright-blue);
    color: var(--e-global-color-text);
    border-style: none;
    border-radius: 8px;
    padding: 17px 26px;
    margin-bottom: 20px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.contact-section .contact_content textarea {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: var(--e-global-color-bright-blue);
    color: var(--e-global-color-text);
    border-style: none;
    border-radius: 8px;
    padding: 16px 28px;
    width: 100%;
    height: 136px;
    margin-bottom: 24px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contact-section .contact_content .send_now {
    background: var(--e-global-color-soft-red);
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    border-radius: 10px;
    padding: 18px 25px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-style: none;
    width: 100%;
}
.contact-section .contact_content .send_now:hover {
    background: var(--e-global-color-accent);
}
.contact-section .contact_content .send_now:focus {
    outline: none;
}

/* Footer */

.footer-section{
    background: var(--e-global-color-bright-blue);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.footer-section .footer-sidecircleimage{
    position: absolute;
    top: 156px;
    left: -272px;
}
.footer-section .footer-circle{
    position: absolute;
    left: 132px;
    top: 190px;
}
.footer-section .middle-portion{
    padding-bottom: 100px;
}
.footer-section .middle-portion .logo-content{
    padding: 52px 20px 50px 39px;
    background: var(--e-global-color-moderate-blue);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .footer-logo{
    margin-bottom: 27px;
    position: relative;
}
.footer-section .middle-portion .footer-text{
    margin-bottom: 26px;
    color: var(--e-global-color-text);
}
.footer-section .middle-portion .heading{
   margin-bottom: 10px;
}
.footer-section .middle-portion .social-icons li{
    display: inline-block;
}
.footer-section .middle-portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-section .middle-portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-section .middle-portion .social-icons i{
    font-size: 16px;
    background: var(--e-global-color-bright-moderate-blue);
    border-radius: 100px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 2px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .social-icons a{
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .social-icons i:hover{
    background: var(--e-global-color-vivid-yellow);
    transform: translateY(-5px);
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .links{
    padding: 60px 0 0 30px;
}
.footer-section .middle-portion .links .text-size-16 {
    position: relative;
    margin-left: 15px;
    font-weight: 400;
    top: 2px;
    color: var(--e-global-color-text);
}
.footer-section .middle-portion .links li{
    margin-bottom: 8px;
}
.footer-section .middle-portion .links li i {
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--e-global-color-text);
    margin-right: -3px;
}
.footer-section .middle-portion ul li:hover i{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion ul li:hover .text{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion .icon .text-size-16 {
    color: var(--e-global-color-text);
}
.footer-section .middle-portion .icon {
    padding: 60px 0 0 5px;
}
.footer-section .middle-portion .icon .heading{
   margin-bottom: 14px;
}
.footer-section .middle-portion .icon li {
    padding-left: 31px;
    margin-bottom: 14px;
}
.footer-section .middle-portion .icon .footer-location{
    color: var(--e-global-color-white);
    position: absolute;
    font-size: 14px;
    left: 23px;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .icon .text:hover .footer-location{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion .icon .text:hover a{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion .icon .footer-location:hover{
    transform: translateY(-5px);
}
.footer-section .middle-portion .email-form{
    padding-top: 60px;
}
.footer-section .middle-portion .email-form .heading{
   margin-bottom: 22px;
}
.footer-section .middle-portion .email-form input {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    background-color: transparent;
    border: 1px solid var(--e-global-color-moderate-blue);
    border-radius: 8px;
    padding: 16px 22px;
    margin-bottom: 4px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.footer-section .middle-portion .email-form button {
    font-size: 16px;
    color: var(--e-global-color-vivid-yellow);
    background: transparent;
    border: none;
    float: right;
    position: absolute;
    top: 14px;
    right: 18px;
    overflow: visible;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .email-form button:hover {
    color: var(--e-global-color-soft-red);
}
.footer-section .middle-portion .email-form .check-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}  
.footer-section .middle-portion .email-form .check-box label {
    font-size: 12px;
    line-height: 18px;
    color: var(--e-global-color-text);
    position: relative;
    cursor: pointer;
}  
.footer-section .middle-portion .email-form .check-box label:before {
    content:'';
    -webkit-appearance: none;
    background-color: var(--e-global-color-soft-dark-blue);
    border-radius: 100px;
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 11px;
    width: 25px;
    height: 25px;
}  
.footer-section .middle-portion .email-form .check-box input:checked + label:after{
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid var(--e-global-color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(50deg);
}
.footer-section .footer-image{
    position: absolute;
    right: 58px;
    bottom: 118px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.footer-section .footer-image:hover{
    transform: translateY(-5px);
}
#fixed-form-container{
    position: fixed;
    bottom: 6px;
    right: 0;
    width: 25%;
    text-align: center;
    margin: 0;
    z-index: 1;
}
#fixed-form-container .body{
    border-radius: 20px;
    width: 70%;
    padding: 20px 20px 30px;
    background-color: var(--e-global-color-moderate-blue);
    text-align: center;
    position: relative;
    right: -52px;
    bottom: 280px;
    display: none;
}
#fixed-form-container .body input {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: var(--e-global-color-bright-blue);
    color: var(--e-global-color-text);
    border-style: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 10px;
    width: 100%;
    overflow: visible;
    outline: none;
}
#fixed-form-container .body textarea {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: var(--e-global-color-bright-blue);
    color: var(--e-global-color-text);
    border-style: none;
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    height: 110px;
    margin-bottom: 8px;
    resize: none;
    outline: none;
    overflow: auto;
}
#fixed-form-container .body .send_now {
    background: var(--e-global-color-soft-red);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 25px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-style: none;
    width: 100%;
}
#fixed-form-container .body .send_now:hover {
    background: var(--e-global-color-accent);
}
#fixed-form-container .body .send_now:focus {
    outline: none;
}
.footer-section .bottom-portion {
    border-top: 1px solid var(--e-global-color-moderate-blue);
    text-align: center;
}
.footer-section .copyright {
    padding: 24px 0;
}
.footer-section .copyright p{
    color: var(--e-global-color-text);
}

/* Service Page */

.servicepage-section {
    background: var(--e-global-color-bright-blue);
    position: relative;
    overflow: hidden;
}
.servicepage-section .service-sidecircleimage {
    position: absolute;
    top: 406px;
    right: -266px;
}
.servicepage-section .service-circle {
    position: absolute;
    right: 120px;
    top: 425px;
}
.servicepage-section .service-box {
    border : 4px solid var(--e-global-color-dark-moderate-blue);
    margin-bottom: 30px;
}
.servicepage-section .service-box:hover {
    border : 4px solid var(--e-global-color-bright-blue);
}
.servicepage-securitysection {
    background: var(--e-global-color-very-dark-blue);
    position: relative;
    padding: 172px 0 150px;
}
.servicepage-securitysection .security-backgroundimage {
    position: absolute;
    top: 0;
    left: 0;
}
.servicepage-securitysection .security-lefttoplayer {
    position: absolute;
    left: 0;
    top: 0;
}
.servicepage-securitysection .security-rightbottomlayer {
    position: absolute;
    right: 0;
    bottom: 0;
}
.servicepage-securitysection .security-intelligence {
    padding-top: 0 !important;
}

/* Contact Page */

.contactpage-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0 130px;
    position: relative;
    overflow: hidden;
}
.contactpage-section .contact-sidecircleimage {
    position: absolute;
    top: 156px;
    right: -273px;
}
.contactpage-section .contact-circle {
    position: absolute;
    right: 113px;
    top: 172px;
}
.contactpage-section .contact_content{
    text-align: center;
}
.contactpage-section .contact_content h6{
    margin-bottom: 16px;
}
.contactpage-section .contact_content h2{
    margin-bottom: 50px;
}
.contactpage-section .contact-box{
    text-align: center;
    border-radius: 20px;
    padding: 46px 20px 36px;
    background-color: var(--e-global-color-bright-blue);
    border: 4px solid var(--e-global-color-dark-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box:hover{
    background-color: var(--e-global-color-moderate-blue);
    border: 4px solid var(--e-global-color-moderate-blue);
}
.contactpage-section .contact-box .contact-icon{
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 110px;
    margin-bottom: 27px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-moderate-blue);
    border: 4px solid var(--e-global-color-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box:hover .contact-icon{
    background-color: transparent;
    border: 4px solid var(--e-global-color-soft-blue);
}
.contactpage-section .contact-box .contact-icon:hover {
    transform: translateY(-10px);
}
.contactpage-section .contact-box h4{
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}
.contactpage-section .contact-box .text-size-18{
    color: var(--e-global-color-text);
    display: block;
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box a:hover{
    color: var(--e-global-color-accent);
}

/* Pricing Page */

.pricingpage-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0 108px;
    position: relative;
    overflow: hidden;
}
.pricingpage-section .pricing-sidecircleimage {
    position: absolute;
    top: 336px;
    left: -270px;
}
.pricingpage-section .pricing-circle {
    position: absolute;
    left: 116px;
    top: 352px;
}
.pricingpage-section .pricing_content{
    text-align: center;
}
.pricingpage-section .pricing_content h6{
    margin-bottom: 16px;
}
.pricingpage-section .pricing_content h2{
    margin-bottom: 50px;
}
.pricingpage-section .pricing-box {
    border-radius: 20px;
    padding: 50px 20px 50px 40px;
    border: 4px solid var(--e-global-color-dark-moderate-blue);
    transition: all 0.3s ease-in-out;
    margin-bottom: 35px;
}
.pricingpage-section .pricing-box:hover {
    border: 4px solid var(--e-global-color-moderate-blue);
    background: var(--e-global-color-moderate-blue);
}
.pricingpage-section .pricing-box .pricing-boxcontent{
    display: flex;
}
.pricingpage-section .pricing-box .image {
    width: 12%;
}
.pricingpage-section .pricing-box .pricing-icon {
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 115px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-moderate-blue);
    border: 4px solid var(--e-global-color-moderate-blue);
    transition: all 0.3s ease-in-out;
}
.pricingpage-section .pricing-box:hover .pricing-icon{
    background-color: transparent;
    border: 4px solid var(--e-global-color-soft-blue);
}
.pricingpage-section .pricing-box .pricing-icon:hover {
    transform: translateY(-10px);
}
.pricingpage-section .pricing-box .content{
    padding-left: 30px;
    padding-top: 16px;
    width: 28%;
}
.pricingpage-section .pricing-box h4{
    font-weight: 400;
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}
.pricingpage-section .pricing-box .list1{
    padding: 10px 0 0 20px;
    width: 20%;
}
.pricingpage-section .pricing-box .list2{
    padding: 10px 0 0 13px;
    width: 23%;
}
.pricingpage-section .pricing-box .value-content{
    padding: 20px 0 0 2px;
    width: 17%;
    text-align: center;
}
.pricingpage-section .pricing-box .value-content2{
    width: 19%;
}
.pricingpage-section .pricing-box .counting {
    margin-bottom: 20px;
}
.pricingpage-section .pricing-box sup {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--e-global-color-white);
    display: inline-block;
    margin-right: -2px;
}
.pricingpage-section .pricing-box .text1 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: var(--e-global-color-white);
}
.pricingpage-section .pricing-box .month {
    text-transform: uppercase;
    color: var(--e-global-color-white);
}
.pricingpage-section .pricing-box .content1 li {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: var(--e-global-color-text);
}
.pricingpage-section .pricing-box .content1 li .circle {
    position: relative;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100px;
    height: 17px;
    width: 17px;
    line-height: 17px;
    text-align: center;
    margin-right: 14px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 3px;
}
.pricingpage-section .pricing-box .content1 li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.pricingpage-section .pricing-box .content1 li:hover {
    color: var(--e-global-color-vivid-yellow);
}
.pricingpage-section .pricing-box .content1 li:hover .circle{
    border: 2px solid var(--e-global-color-vivid-yellow);
    border-right-style: none;
}
.pricingpage-section .pricing-box .content1 li:hover .circle:before{
    color: var(--e-global-color-vivid-yellow);
}
.pricingpage-section .pricing-box .choose_plan {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
}
.pricingpage-section .pricing-box .choose_plan:hover {
    color: var(--e-global-color-white);
}
.pricingpage-section .pricing-box .choose_plan .arrow{
    font-size: 16px;
    line-height: 16px;
    margin-left: 4px;
    position: relative;
    top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-vivid-yellow);
}
.pricingpage-section .pricing-box .choose_plan:hover .arrow{
    color: var(--e-global-color-white);
}

/* Faq's */

.faq-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0 102px;
    position: relative;
    overflow: hidden;
}
.faq-section .faq-sidecircleimage {
    position: absolute;
    top: 336px;
    left: -268px;
}
.faq-section .faq-circle {
    position: absolute;
    left: 118px;
    top: 352px;
}
.faq-section .faq_content{
    text-align: center;
}
.faq-section .faq_content h6{
    margin-bottom: 16px;
}
.faq-section .faq_content h2{
    margin-bottom: 50px;
}
.faq-section .accordian-inner{
    padding: 0 45px;
}
.faq-section .accordian-inner .accordion-card .btn-link h5{
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-white);
    top: 6px;
    margin-bottom: 0;
}
.faq-section .accordion-card{
    background: var(--e-global-color-very-dark-blue);
    width: 100%;
    border-radius: 10px;
    margin-bottom: 26px;
    padding: 0 24px;
}
.faq-section .accordion-card a.btn.btn-link {
    position: relative;
    display: flex;
}
.faq-section .accordian-inner .accordion-card .btn {
    padding: 16px 0px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.faq-section .accordian-inner .accordion-card .btn-link {
    padding: 16px 0px 6px;
}
.faq-section .accordian-inner .accordion-card .collapsed {
    padding: 16px 0px;
}
.faq-section .accordion-card i{
    font-size: 22px;
    color: var(--e-global-color-soft-red);
    width: 44px;
    height: 44px;
    line-height: 40px;
    background: transparent;
    text-align: center;
    border: 3px solid var(--e-global-color-soft-red);
    border-radius: 100px;
    margin-right: 16px;
}
.faq-section .accordion-card .btn-link i {
    color: var(--e-global-color-white);
    border: 3px solid var(--e-global-color-white);
}
.faq-section .accordion-card .collapsed i {
    color: var(--e-global-color-soft-red);
    border: 3px solid var(--e-global-color-soft-red);
}
.faq-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-section .accordian-inner .card-body {
    padding: 0px 0 28px 62px;
}
.faq-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-section .accordion-card .btn-link:before {
    content: "\f062";
    position: absolute;
    right: 2px;
    top: 40%;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-vivid-yellow);
    font-size: 20px;
    line-height: 20px;
}
.faq-section .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-vivid-yellow);
    right: 1px;
    top: 35%;
}
.faqpage-securitysection {
    padding: 194px 0 168px;
}

/* Team */

.team-section {
    background: var(--e-global-color-bright-blue);
    padding: 138px 0;
    position: relative;
    overflow: hidden;
}
.team-section .team-sidecircleimage {
    position: absolute;
    top: 246px;
    left: -248px;
}
.team-section .team-circle {
    position: absolute;
    left: 142px;
    top: 264px;
}
.team-section .team_content{
    text-align: center;
}
.team-section .team_content h6{
    margin-bottom: 16px;
}
.team-section .team_content h2{
    margin-bottom: 50px;
}
.team-section .team-box{
    position: relative;
    text-align: center;
    padding: 44px 30px;
    background-color: var(--e-global-color-very-dark-blue);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box:hover{
    background-color: var(--e-global-color-moderate-blue);
}
.team-section .team-box figure{
    margin-bottom: 28px;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box figure:hover{
    transform: translateY(-5px);
}
.team-section .team-box figure img{
    border-radius: 100px;
}
.team-section .team-box h4{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--e-global-color-white);
}
.team-section .team-box span{
    display: block;
    margin-bottom: 16px;
    color: var(--e-global-color-text);
}
.team-section .team-box li{
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box i{
    background: var(--e-global-color-dark-blue);
    border-radius: 100px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0 3px;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box li:hover{
    transform: translateY(-5px);
}
.team-section .team-box li:first-child{
    margin-left: 0;
}
.team-section .team-box li:last-child{
    margin-right: 0;
}
.team-section .team-box li a{
    color: var(--e-global-color-white);
}
.team-section .team-box i:hover {
    background: var(--e-global-color-vivid-yellow);
}
.teaminfo-section{
    background: var(--e-global-color-very-dark-blue);
    padding: 166px 0 140px;
    position: relative;
    overflow: hidden;
}
.teaminfo-section .team-backgroundimage {
    position: absolute;
    top: 0;
    left: 0;
}
.teaminfo-section .team-lefttoplayer {
    position: absolute;
    left: 0;
    top: 0;
}
.teaminfo-section .team-rightbottomlayer {
    position: absolute;
    right: 0;
    bottom: 0;
}
.teaminfo-section .teaminfo_wrapper{
    position: relative;
}
.teaminfo-section .teaminfo_wrapper .teaminfo-image1{
    position: absolute;
    top: -24px;
    right: 22px;
    z-index: 1;
}
.teaminfo-section .teaminfo_wrapper .teaminfo-image1 img{
    border-radius: 15px;
}
.teaminfo-section .teaminfo_wrapper .teaminfo-circleimage {
    position: absolute;
    top: 100px;
    left: 24px;
}
.teaminfo-section .teaminfo_wrapper .teaminfo-circleimage img {
    -webkit-animation: mover2 1s infinite  alternate;
    animation: mover2 1s infinite  alternate;
}
@-webkit-keyframes mover2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
.teaminfo-section .teaminfo_wrapper .box{
    border-radius: 15px;
    padding: 36px 25px 30px;
    background: var(--e-global-color-moderate-blue);
    text-align: center;
    position: relative;
    z-index: 1;
    width: 312px;
    height: 221px;
    top: 306px;
    left: -6px;
}
.teaminfo-section .teaminfo_wrapper .box .teaminfo-quoteimage{
    margin-bottom: 18px;
    transition: all 0.3s ease-in-out;
}
.teaminfo-section .teaminfo_wrapper .box .teaminfo-quoteimage:hover{
    transform: translateY(-5px);
}
.teaminfo-section .teaminfo_wrapper .box p{
    margin-bottom: 14px;
    color: var(--e-global-color-white);
}
.teaminfo-section .teaminfo_wrapper .box span{
    font-weight: 600;
    color: var(--e-global-color-white);
}
.teaminfo-section .teaminfo_content{
    padding-left: 16px;
}
.teaminfo-section .teaminfo_content h6{
    margin-bottom: 12px;
}
.teaminfo-section .teaminfo_content h2{
    margin-bottom: 23px;
    line-height: 58px;
}
.teaminfo-section .teaminfo_content p{
    color: var(--e-global-color-text);
    margin: 0 15px 32px 0;
}
.teaminfo-section .teaminfo_content ul{
    padding-left: 22px;
}
.teaminfo-section .teaminfo_content ul li {
    display: block;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.teaminfo-section .teaminfo_content ul li h5{
    margin-bottom: 11px;
    color: var(--e-global-color-white);
}
.teaminfo-section .teaminfo_content ul li p{
    padding-left: 27px;
}
.teaminfo-section .teaminfo_content ul li .circle {
    position: relative;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 6px;
    left: -20px;
    float: left;
}
.teaminfo-section .teaminfo_content ul li .circle:before {
    font-size: 20px;
    position: absolute;
    left: 6px;
    margin-top: -4px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.teaminfo-section .teaminfo_content ul li:hover h5{
    color: var(--e-global-color-vivid-yellow);
}
.teaminfo-section .teaminfo_content ul li:hover .circle{
    border:2px solid var(--e-global-color-vivid-yellow);
    border-right-style: none;
}
.teaminfo-section .teaminfo_content ul li:hover .circle:before{
    color: var(--e-global-color-vivid-yellow);
}

/* About */

.aboutpage-section {
    background: var(--e-global-color-bright-blue);
    padding: 146px 0 150px;
    position: relative;
    overflow: hidden;
}
.aboutpage-section .aboutpage-sidecircleimage{
    position: absolute;
    top: 246px;
    left: -270px;
}
.aboutpage-section .aboutpage-circle{
    position: absolute;
    left: 135px;
    top: 286px;
}
.aboutpage-section .aboutpage_wrapper{
    position: relative;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image1{
    position: absolute;
    top: -6px;
    right: 26px;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image2 {
    position: absolute;
    top: -6px;
    left: 3px;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image img{
    border-radius: 15px;
}
.aboutpage-section .aboutpage_wrapper .circle {
    background: var(--e-global-color-soft-red);
    border-radius: 100px;
    position: absolute;
    top: 185px;
    left: 0;
    width: 165px;
    height: 165px;
    padding: 28px 20px;
    z-index: 1;
    right: 0;
    margin: 0 auto;
}
.aboutpage-section .aboutpage_wrapper .circle:hover {
    background: var(--e-global-color-vivid-yellow);
}
.aboutpage-section .aboutpage_wrapper .circle .year {
    text-align: center;
    position: relative;
}
.aboutpage-section .aboutpage_wrapper .circle .year .value {
    font-size: 46px;
    line-height: 58px;
    font-weight: 600;
    margin-bottom: 2px;
    display: inline-block;
}
.aboutpage-section .aboutpage_wrapper .circle .year .plus {
    font-size: 46px;
    line-height: 58px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: -2px;
    left: -2px;
}
.aboutpage-section .aboutpage_wrapper .circle .year .text {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    display: block;
}
.aboutpage-section .aboutpage_content{
    padding-left: 16px;
}
.aboutpage-section .aboutpage_content h6{
    margin-bottom: 12px;
}
.aboutpage-section .aboutpage_content h2{
    margin-bottom: 23px;
    line-height: 58px;
}
.aboutpage-section .aboutpage_content p{
    color: var(--e-global-color-text);
    margin: 0 15px 18px 0;
}
.aboutpage-section .aboutpage_content .text2{
    margin: 0 20px 22px 0;
}
.aboutpage-section .aboutpage_content .properties{
    display: flex;
    margin-bottom: 36px;
}
.aboutpage-section .aboutpage_content .properties ul{
    padding-left: 16px;
}
.aboutpage-section .aboutpage_content .properties .first-list{
    margin-right: 39px;
}
.aboutpage-section .aboutpage_content .properties li {
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.aboutpage-section .aboutpage_content .properties ul li .circle {
    position: relative;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 2px;
    left: -15px;
}
.aboutpage-section .aboutpage_content .properties ul li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.aboutpage-section .aboutpage_content .properties ul li:hover {
    color: var(--e-global-color-vivid-yellow);
}
.aboutpage-section .aboutpage_content .properties ul li:hover .circle{
    border:2px solid var(--e-global-color-vivid-yellow);
    border-right-style: none;
}
.aboutpage-section .aboutpage_content .properties ul li:hover .circle:before{
    color: var(--e-global-color-vivid-yellow);
}
.aboutpage-section .aboutpage_content .get_started {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
    padding: 20px 45px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-vivid-yellow);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.aboutpage-section .aboutpage_content .get_started:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-red);
}
.provide-section {
    background: var(--e-global-color-very-dark-blue);
    padding: 138px 0 140px;
    position: relative;
}
.provide-section .provide-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.provide-section .provide-lefttoplayer{
    position: absolute;
    left: 0;
    top: 0;
}
.provide-section .provide-rightbottomlayer{
    position: absolute;
    right: 0;
    bottom: 0;
}
.provide-section .provide_content{
    text-align: center;
}
.provide-section .provide_content h6{
    margin-bottom: 13px;
}
.provide-section .provide_content h2{
    line-height: 60px;
    margin-bottom: 47px;
    padding: 0 245px
}
.provide-section .provide-box {
    border-radius: 20px;
    padding: 57px 40px 40px;
    background-color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}
.provide-section .provide-box1 {
    padding: 46px 40px 40px;
}
.provide-section .provide-box:hover {
    transform: translateY(-5px);
    background-color: var(--e-global-color-moderate-blue);
}
.provide-section .provide-box .provide-icon {
    margin-bottom: 36px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.provide-section .provide-box1 .provide-icon {
    margin-bottom: 25px;
}
.provide-section .provide-box .provide-icon:hover {
    transform: translateY(-10px);
}
.provide-section .provide-box h4 {
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}
.aboutchoice-section {
    background: var(--e-global-color-moderate-blue);
    position: relative;
    padding: 135px 0 138px;
}
.aboutchoice-section::before {
    content: "";
    position: absolute;
    background: url(../images/aboutchoice-backgroundimage.jpg);
    opacity: 15%;
    width: 100%;
    height: 700px;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.aboutchoice-section .aboutchoice_content {
    text-align: center;
}
.aboutchoice-section .aboutchoice_content h6 {
    margin-bottom: 15px;
    color: var(--e-global-color-white);
}
.aboutchoice-section .aboutchoice_content h2 {
    line-height: 56px;
    margin-bottom: 10px;
}
.aboutchoice-section .aboutchoice_content p {
    margin-bottom: 30px;
    padding: 0 35px;
}
.aboutchoice-section .aboutchoice_content .learn_more {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
    padding: 20px 45px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-soft-red);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.aboutchoice-section .aboutchoice_content .learn_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-vivid-yellow);
}
.aboutteam-section .aboutteam-sidecircleimage {
    position: absolute;
    top: 246px;
    right: -262px;
}
.aboutteam-section .aboutteam-circle {
    position: absolute;
    right: 124px;
    top: 264px;
}
/*-------- BLOG PAGES ------------ */
/*=-*=-*=-*=-*=-*=-*= Single Post =-*=-*=-*=-*=-*=-*=/
/**************************************************/
.single-post01 .post-image img,
.single-post01 .post-navigation,
.single-post01 .comment-list img,
.sidebar .widget,
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
#loader-wrapper,
.post-image img,
.single-post01 .post-item-description .post-meta,
.sidebar .form-inline .input-group,
.sidebar .post-thumbnail-entry,
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed,
#blog .post-item.border > .post-item-wrap > .post-item-description,
#blog img,#blog audio,#blog iframe{
	width: 100%;
}
.single-post01 .post-image img {
	height: auto;
}
.single-post01 .post-item-description {
	font-size: 16px;
	padding: 22px 0;
	line-height: 28px;
}
.single-post01 .post-item-description h2,
.single-post01 .post-item-description h2 > a {
	font-size: 34px;
	margin-top: 8px;
	line-height: 38px;
	margin-bottom: 12px;
}
.single-post01 .post-item-description .post-meta {
	padding: 12px 0;
	margin-bottom: 26px;
}
.single-post01 .post-item-description .post-meta-date,
.single-post01 .post-item-description .post-meta-date a,
.single-post01 .post-item-description .post-meta-category,
.single-post01 .post-item-description .post-meta-category a,
.single-post01 .post-item-description .post-meta-comments,
.single-post01 .post-item-description .post-meta-comments a,
.single-post01 .post-meta-share a,
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev,
.sidebar .post-thumbnail-list a,
.sidebar .tags a,
.load-more a,
#blog .post-item.border .post-image .post-meta-category a,
#blog .post-item .post-item-description > h2,
#blog .post-item .post-item-description > h2 > a,
.breadcrumb ol li a, .breadcrumb ul li a,
.sidebar .widget-categories ul li a, .post-meta-category a{
	text-decoration: none; color: var(--secondary--color);
}
a.item-link{margin-top: 10px; display: inline-block}
.single-post01 .post-item-description .post-meta-date,
.single-post01 .post-item-description .post-meta-date a,
.single-post01 .post-item-description .post-meta-category,
.single-post01 .post-item-description .post-meta-category a,
.single-post01 .post-item-description .post-meta-comments,
.single-post01 .post-item-description .post-meta-comments a,
.single-post01 .post-tags a{
	font-size: 13px;
	margin-right: 16px;
}
.single-post01 .post-item-description .post-meta-category i,
.single-post01 .post-item-description .post-meta-comments i,
.single-post01 .post-item-description .post-meta-date i {
	margin-right: 4px;
}
.single-post01 .post-meta-share a{
	line-height: 16px;
}
.single-post01 .post-meta-share a i{
	font-size: 30px;
}
.single-post01 .post-item-description .blockquote {
	font-size: 16px;
    margin: 0 0 20px 72px;
    padding: 10px 20px;
    font-style: italic;
}
.single-post01 .post-item-description .blockquote .small,
.single-post01 .post-item-description .blockquote small {
	font-size: 100%;
}
.single-post01 .post-tags {
	margin-bottom: 40px;
}
.single-post01 .post-tags a {
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 4px;
	margin-bottom: 10px;
}
.single-post01 .post-navigation,
.sidebar .post-thumbnail-list,
#loader,
#blog .post-item .post-meta-category,
#blog .post-item .post-meta-comments,
#blog .post-item .post-meta-date,
#blog .post-item.border .post-image,
.breadcrumb ol li, .breadcrumb ul li,
.sidebar .widget-categories ul li,
.single-post01 .comments .comment .text {
	position: relative;
}
.single-post01 .post-navigation,
.sidebar .tags a {
	display: inline-block;
	font-size: 14px;
    line-height: 20px;
}
.single-post01 .post-navigation {
	min-height: 64px;
	padding: 20px 0 0;
	vertical-align: top;
}
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev,
.post-navigation .post-prev:before,
.post-navigation .post-all,
#loader:before,
#loader:after,
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed,
#blog .post-item.border .post-meta-category,
.sidebar .widget-categories ul li:before,
.player,
.sidebar .widget-tweeter:not([data-avatar="true"]) li::before,
.sidebar .widget-twitter:not([data-avatar="true"]) li::before,
.post-navigation .post-next:after{
	position: absolute;
}
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev {
	height: 44px;
	max-width: 40%;
	font-size: 16px;
}
.post-navigation .post-prev:before,
.post-navigation .post-next:after{
	left: 0;
	top: 12px;
	font-size: 14px;
	padding-top: 2px;
	content: "\f053";
	font-family: 'FontAwesome';
	transition: all .3s ease;
	transform: translate3d(0,-50%,0);
}
.post-navigation .post-next:after {
	right: 0;
	left: inherit;
	content: "\f054";
	font-family: 'FontAwesome';
}
.post-navigation .post-prev-title {
	padding-left: 25px;
}
.post-navigation .post-next span,
.post-navigation .post-prev span {
	opacity: 0.7;
	font-size: 14px;
	margin-top: 3px;
	margin-bottom: -6px;
	text-transform: uppercase;
}
.post-navigation .post-all {
	top: 32px;
	right: 50%;
	left: auto;
	width: 12px;
	opacity: .7;
	font-size: 24px;
	text-align: center;
}
.single-post01 .post-navigation .post-next {
	right: 0;
	text-align: right;
}
.post-navigation .post-next-title {
	padding-right: 25px;
}
.single-post01 .comments {
	padding: 40px 0;
}
.single-post01 .comments .comment {
	padding: 10px 0;
}
.single-post01 .comments .comment_number {
	font-size: 20px;
	margin: 0 0 30px;
	font-weight: 500;
}
.single-post01 .comments .comment .image,
.sidebar .post-thumbnail-entry > img,
.sidebar .post-thumbnail-entry,
.single-post01 .post-item-description .post-meta,
.sidebar .widget{
	float: left;
}
.single-post01 .comments .comment .image {
	width: 64px;
	height: 64px;
}
.single-post01 .comment-list img {
	height: auto;
	border-radius:100%;
}
.single-post01 .comments .comment .text {
	min-height: 80px;
	padding: 0 0 0 86px;
}
.single-post01 .comments .comment .text .name {
	font-size: 24px;
}
.single-post01 .comments .comment .comment_date {
	font-size: 14px;
}
.single-post01 .comments .comment .text .comment-reply-link {
	opacity: 0.7;
	font-size: 12px;
	padding: 0 0 0 5px;
	text-transform: uppercase;
}
.single-post01 .text_holder{
	line-height: 24px;
}
.single-post01 .comment .comment {
	margin-left: 90px;
}
.respond-form {
	padding-top: 40px;
}
.respond-comment {
	font-size: 20px;
	margin: 0 0 30px;
	font-weight: 500;
}
.single-post01 .form-group label:not(.error) {
	font-size: 16px;
	margin-bottom: 4px;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 500;
}
.single-post01 .form-gray-fields .form-control {
	border-color: transparent;
}
.single-post01 .form-gray-fields .form-control:focus{
	outline: 0;
}
.single-post01 .form-control{
	box-shadow: none;
	line-height: 20px;
	padding:10px 16px;
	border-radius: 5px;
	font-size: 14px;
	transition: all .3s ease;
}
.form-gray-fields .btn{
	font-size: 14px;
	padding:13px 22px 10px;
	text-transform: uppercase;
}
.sidebar {
	font-size: 12px;
}
.sidebar .widget {
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.widget-newsletter .form-control{
	font-size: 14px;
	box-shadow: none;
	line-height: 18px;
	padding: 10px 16px;
	height: auto;
	background: var(--e-global-color-very-dark-mostly-black-blue);
    border: 1px solid #eeee;
}
.widget-newsletter .btn {
	font-weight: 600;
	height: 40px;
	padding: 8px 16px;
}
.widget-newsletter .btn{
	border-radius: 0 5px 5px 0;
}
.sidebar .nav-tabs {
	margin-bottom: 30px;
}
.sidebar .nav-tabs .nav-item {
	margin-bottom: -2px;
}
.tabs .nav-tabs .nav-link {
	border: 0;
	padding: 14px 24px;
	transition: .3s ease;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.sidebar .widget .tabs li > a {
	padding: 10px;
	font-size: 14px;
}
.sidebar .post-thumbnail-entry > img {
	height: 60px;
	width: 80px;
	margin-right: 16px;
	border-radius: 2px;
}
.sidebar .post-thumbnail-entry {
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar .post-thumbnail-entry:last-child,
.sidebar .widget-categories ul li:last-child{
	margin: 0;
	padding-bottom:0;
	border-bottom: none;
}
.sidebar .post-thumbnail-entry > img {
	height: 48px;
	width: 64px;
	margin-right: 10px;
}
.sidebar .post-thumbnail-entry img + .post-thumbnail-content {
	padding-left: 72px;
}
.sidebar .post-thumbnail-list a {
	margin: -4px 0 0;
}
.sidebar .post-thumbnail-entry .post-category i,
.sidebar .post-thumbnail-entry .post-date i {
	margin-right: 2px;
}
.sidebar .post-thumbnail-entry .post-category,
.sidebar .post-thumbnail-entry .post-date {
	font-size: 10px;
}
.sidebar .widget-title,
.sidebar > h4 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 500;
}
.sidebar .widget-tweeter ul,
.sidebar .widget-twitter ul,
.sidebar .widget-categories ul{
	list-style: none;
}

.sidebar .widget-tweeter ul,
.sidebar .widget-twitter ul {
	margin-bottom: 0;
	padding-left: 22px;
}
.sidebar .widget-tweeter li,
.sidebar .widget-twitter li {
	font-size: 14px;
	margin-bottom: 18px;
	color: var(--e-global-color-white);
}
.sidebar .widget-tweeter:not([data-avatar="true"]) li::before,
.sidebar .widget-twitter:not([data-avatar="true"]) li::before {
	content: "\f099";
    margin-left: -22px;
    color: var(--primary--color);
	font-family: 'Font Awesome 5 Brands';
}
.sidebar .tags a {
	padding: 5px 14px;
	border-radius: 50px;
	margin: 0 2px 5px 0;
}
.sidebar .widget-categories ul{
	padding:0;
}
.sidebar .widget-categories ul li{
	margin-bottom: 10px;
	padding:0 0 10px 28px;
}
.sidebar .widget-categories ul li:before{
	position: absolute ; content: "";
	left:0;
	top: 12px;
	font-size: 20px;
	padding-top: 2px;
	background: url("../images/icon-folder.png"); width: 16px; height: 14px;
	transition: all .3s ease;
	transform: translate3d(0,-50%,0);
}
.sidebar .cat-count-span{
	float: right;
}

/* Blog Page */

.blogpage-section {
    position: relative;
    padding: 130px 0 120px;
}
.blogpage-section .blog_content {
    text-align: center;
}
.blogpage-section .blog_content h2 {
    margin-bottom: 46px;
}
.blogpage-section .blog-box{
    position: relative;
    background: var( --e-global-color-secondary);
    transition: all 0.3s ease-in-out;
    margin-bottom: 32px;
    /* border: 1px solid #eeeeee; */
    width: 100%;
    float: left;
}
.blog-item-content {
    margin-top: -19px;
    padding:36px 13px 28px;
}
.blog-item-content ul {
    gap: 5px;
    justify-content: space-between;
}
.blogpage-section .blog-box .lower-portion{
    padding: 26px 30px 20px;
	border-bottom: 1px solid #b2b2b2;
}
.blogpage-section .blog-box .lower-portion i{
    font-size: 14px;
    color: var(--e-global-color-accent);
    margin-right: 4px;
}
.blogpage-section .blog-box .lower-portion span{
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-white);
}
.blogpage-section .blog-box .lower-portion .text-mr{
    margin-right: 20px;
}
.blogpage-section .blog-box .lower-portion h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
	color: var(--secondary--color);
    position: relative;
    letter-spacing: 0;
    word-spacing: 0;
}
.blogpage-section .blog-box .button-portion {
	position: relative;
	padding: 16px 0 16px 30px;
}
.blogpage-section .blog-box .button-portion .date{
	display: inline-block;
	width: 50.5%;
}
.blogpage-section .blog-box .button-portion .button{
	display: inline-block;
	text-align: right;
	width: 48%;
}
.blogpage-section .blog-box .button-portion span {
    font-family: 'Montserrat', sans-serif;
    color: var(--e-global-color-white);
}
.blogpage-section .blog-box .button-portion .calendar-ml {
    font-size: 22px;
    color: var(--e-global-color-accent);
    margin-right: 5px;
    margin-bottom: 28px;
}
.blogpage-section .blog-box .button-portion .read_more {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-primary);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 30px 0 0 30px;
    padding: 14px 24px 14px 26px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
	border: none;
    overflow: visible;
    outline: none;
}
.blogpage-section .blog-box .button-portion .read_more:hover {
    color: var(--primary--color);
    text-decoration: none;
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--primary--color);
}


/* Single Blog Page */


.singleblog-section .main-box{
    border-radius: 10px;
    position: relative;
    background: var(--e-global-color-dark-moderate-blue);
    transition: all 0.3s ease-in-out;
    padding: 10px 15px 40px 10px;
    width: 104%;
    margin-left: -45px;
}
.singleblog-section .main-box .singleblog-image1{
    margin-bottom: 30px;
}
.singleblog-section .main-box .image1 img{
    border-radius: 10px;
}
.singleblog-section .main-box .content1{
    margin-left: 10px;
}
.singleblog-section .main-box h4{
    font-family: 'PT Serif', serif;
}
.singleblog-section .main-box .content1 h4{
	color: var(--e-global-color-white);
    margin-bottom: 18px;
}
.singleblog-section .main-box .content1 i{
    font-size: 14px;
    color: var(--e-global-color-accent);
    margin-right: 4px;
    margin-bottom: 32px;
}
.singleblog-section .main-box .content1 .calendar{
    font-size: 16px;
}
.singleblog-section .main-box .content1 span{
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-white);
}
.singleblog-section .main-box .content1 .text-mr{
    margin-right: 10px;
}
.singleblog-section .main-box .content1 p{
    font-weight: 600;
    margin-bottom: 35px;
}
.singleblog-section .main-box .content2{
    background: var(--e-global-color-bright-blue);
    padding: 20px 32px 32px;
    border-radius: 10px;
    margin-bottom: 34px;
}
.singleblog-section .main-box .content2 .singleblog-quoteimage{
    margin-bottom: 22px;
}
.singleblog-section .main-box .content2 p{
    font-style: italic;
}
.singleblog-section .main-box .text{
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 15px;
}
.singleblog-section .main-box .singleblog-image2{
    margin-bottom: 30px;
}
.singleblog-section .content4{
    padding: 0 14px;
    margin-bottom: 115px;
}
.singleblog-section .content4 h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
	color: var(--e-global-color-white);
}
.singleblog-section .content4 .tag li {
    display: contents;
}
.singleblog-section .content4 .tag .button{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-accent);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-right: 4px;
}
.singleblog-section .content4 .tag .button2{
    padding: 10px 24px;
}
.singleblog-section .content4 .tag li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .tag .button:hover{
    background: var(--e-global-color-soft-red);
}
.singleblog-section .content4 .icon{
    position: relative;
}
.singleblog-section .content4 .icon h5{
    float: right;
}
.singleblog-section .content4 .icon .social-icons{
    top: 46px;
    right: -8px;
}
.singleblog-section .content4 .icon .social-icons ul li {
    margin: 0 8px;
    display: inline-block;
}
.singleblog-section .content4 .icon .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .content4 .icon .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .middle-portion a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.6px;
    word-spacing: 0.2px;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks {
    font-size: 16px;
    color: var(--e-global-color-white);
    border-radius: 100px;
    border: 1px solid var(--e-global-color-white);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 35px;
    height: 35px;
    line-height: 35px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks:hover {
    background: var(--e-global-color-vivid-yellow);
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-vivid-yellow);
    transform: translateY(-5px);
}
.singleblog-section .content5{
    position: relative;
    text-align: center;
    margin-bottom: 45px;
}
.singleblog-section .content5 .singleblog-review1{
    position: absolute;
    left: 0;
    right: 0;
    top: -62px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content5 .singleblog-review1:hover{
    transform: translateY(-5px);
}
.singleblog-section .content5 .singleblog-review1 img{
    border-radius: 100px;
}
.singleblog-section .content5 .content{
    padding: 82px 65px 20px;
    background: var(--e-global-color-bright-blue);
    border-radius: 10px;
}
.singleblog-section .content5 .content h4{
    margin-bottom: 4px;
	color: var(--e-global-color-white);
}
.singleblog-section .content5 .content span{
    font-family: 'Montserrat', sans-serif;
    display: block;
	color: var(--e-global-color-white);
    margin-bottom: 14px;
}
.singleblog-section .content6{
    padding: 0 15px;
    margin-bottom: 58px;
}
.singleblog-section .content6:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-moderate-blue);
    position: absolute;
    width: 92%;
    height: 6px;
    left: 26px;
}
.singleblog-section .content6 h4{
    margin-bottom: 34px;
	color: var(--e-global-color-white);
}
.singleblog-section .content6 h4:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 23%;
    height: 45px;
    left: 23px;
}
.singleblog-section .content6 .comment{
    display: flex;
    margin: 0 0 24px 6px;
}
.singleblog-section .content6 .comment .image img{
    border-radius: 100px;
}
.singleblog-section .content6 .comment .content{
    padding: 13px 0 0 19px
}
.singleblog-section .content6 .comment h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 2px;
	color: var(--e-global-color-white);
}
.singleblog-section .content6 .comment span{
    margin-bottom: -38px;
    display: block;
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-accent);
}
.singleblog-section .content6 .comment .reply{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: var(--e-global-color-accent);
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 28px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    float: right;
    right: -18px;
    top: -28px;
}
.singleblog-section .content6 .comment .reply:hover{
    background: var(--e-global-color-soft-red);
}
.singleblog-section .content6 .comment .text_holder p{
    display: inline-block;
    line-height: 24px;
    margin: 0 40px 12px 0;
    word-spacing: 1.6px;
}
.singleblog-section .content7{
    padding: 0 15px;
}
.singleblog-section .content7 h4{
    color: var(--e-global-color-secondary);
    margin-bottom: 28px;
}
.singleblog-section .content7 textarea {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
	color: var(--e-global-color-text);
    background: var(--e-global-color-bright-blue);
    border-radius: 8px;
    padding: 18px 30px 20px;
    width: 100%;
    height: 184px;
    margin-bottom: 15px;
    resize: none;
    outline: none;
    overflow: auto;
	border: none;
}
.singleblog-section .content7 input {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
	color: var(--e-global-color-text);
    background: var(--e-global-color-bright-blue);
    border-radius: 8px;
    padding: 14px 30px;
    margin-bottom: 16px;
    width: 100%;
    overflow: visible;
    outline: none;
	border: none;
}
.singleblog-section .content7 .text-mb {
    margin-bottom: 26px;
}
.singleblog-section .content7 .post_comment {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    padding: 25px 38px;
    border-radius: 8px;
    color: #ffffff;
    background-color: var(--e-global-color-accent);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    outline: none;
    border-style: none;
}
.singleblog-section .content7 .post_comment:hover{
    background: var(--e-global-color-soft-red);
    color: #ffffff
}
.singleblog-section .column{
    margin-left: -20px;
}
.singleblog-section .box1{
    border-radius: 10px;
    background: var(--e-global-color-dark-moderate-blue);
    padding: 34px 30px;
    margin-bottom: 43px;
    width: 110%;
}
.singleblog-section .box1 h5{
    text-align: center;
    margin-bottom: 42px;
	color: var(--e-global-color-white);
}
.singleblog-section .box1 h5:after{
    content: "";
	border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 84%;
    height: 43px;
    left: 46px;
}
.singleblog-section .box1 input{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    border: 1px solid var(--e-global-color-moderate-blue);
    border-radius: 8px;
    padding: 0 18px;
    width: 100%;
    height: 58px;
    overflow: visible;
    outline: none;
}
.singleblog-section .box1 .search{
    position: absolute;
    font-size: 18px;
    right: 6px;
    top: 1px;
    width: 60px;
    height: 56px;
	border: 1px solid transparent;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 8px;
    outline: none;
    box-shadow: none;
	transition: all 0.3s ease-in-out;
}
.singleblog-section .box1 .search:hover{
    color: var(--e-global-color-accent);
    background: transparent;
	border: 1px solid var(--e-global-color-accent);
}
.singleblog-section .box2{
    text-align: center;
}
.singleblog-section .box2 h5{
    margin-bottom: 38px;
}
.singleblog-section .box2 h5:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 84%;
    height: 45px;
    left: 46px;
}
.singleblog-section .box2 ul li{
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 28px;
    color: var(--e-global-color-white);
}
.singleblog-section .box2 ul li:hover{
    color: var(--e-global-color-accent);
}
.singleblog-section .box3{
    text-align: center;
    padding: 30px 30px 60px;
}
.singleblog-section .box3 h5{
    margin-bottom: 43px;
}
.singleblog-section .box3 h5:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 84%;
    height: 45px;
    left: 46px;
}
.singleblog-section .box3 .social-icons ul li {
    margin: 0 10px;
    display: inline-block;
}
.singleblog-section .box3 .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .box3 .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .box3 .social-icons ul li .social-networks {
    font-size: 20px;
    color: var(--e-global-color-white);
    background: transparent;
    border-radius: 100px;
    border: 1px solid var(--e-global-color-white);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 45px;
    height: 45px;
    line-height: 45px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .box3 .social-icons ul li .social-networks:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-accent);
    transform: translateY(-5px);
}
.singleblog-section .box4 h5{
    margin-bottom: 36px;
}
.singleblog-section .box4 h5:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 84%;
    height: 45px;
    left: 46px;
}
.singleblog-section .box4 .tag li{
    margin-right: 8px;
    display: contents;
}
.singleblog-section .box4 .tag .button{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-accent);
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 4px;
    letter-spacing: 0.6px;
}
.singleblog-section .box4 .tag .button2{
    padding: 15px 24px;
}
.singleblog-section .box4 .tag .button:hover{
    background: var(--e-global-color-soft-red);
    color: #ffffff;
}
.singleblog-section .box5{
    margin-bottom: 0 !important;
}
.singleblog-section .box5 h5{
    margin-bottom: 42px;
}
.singleblog-section .box5 h5:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 84%;
    height: 45px;
    left: 46px;
}
.singleblog-section .box5 .feed{
    display: flex;
    margin-bottom: 70px;
}
.singleblog-section .box5 .feed:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-moderate-blue);
    position: absolute;
    width: 84%;
    height: 125px;
    left: 46px;
}
.singleblog-section .box5 .feed4{
    margin-bottom: 0 !important;
}
.singleblog-section .box5 .feed4:after{
    border-bottom: none;
}
.singleblog-section .box5 .feed .feed-image{
    width: 34%;
}
.singleblog-section .box5 .feed .feed-image img{
    border-radius: 10px;
}
.singleblog-section .box5 .feed a{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'PT Serif', serif;
    color: var(--e-global-color-white);
    text-decoration: none;
    width: 66%;
    padding: 8px 0 0 16px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.singleblog-section .box5 .feed a:hover{
    color: var(--e-global-color-accent);
}

/* BLOG PAGES */


.blogpage-section .onecolumn-blog .button-portion .date {
    width: 51.5%;
}
.blogpage-section .twocolumn-blog .button-portion .button {
    width: 48.5%;
}
.blogpage-section .twocolumn-blog .lower-portion {
    padding: 26px 30px 30px;
}
.blogpage-section .threecolumn-blog .lower-portion {
    padding: 26px 18px 20px;
}
.blogpage-section .threecolumn-blog .button-portion {
    padding: 16px 0 16px 10px;
}
.blogpage-section .threecolumn-blog .button-portion .date {
    width: 48.5%;
}
.blogpage-section .threecolumn-blog .button-portion .button {
    width: 49%;
}
.blogpage-section .threecolumn-blog .button-portion .read_more{
	padding: 10px 16px 10px 20px;
}
.blogpage-section .threecolumn-blog .lower-portion .text-mr {
    margin-right: 92px;
}
.blogpage-section .threecolumn-blog .lower-portion i {
    margin-bottom: 20px;
}
.blogpage-section .threecolumn-blog .button-portion .calendar-ml {
    margin-left: 0;
}
.blogpage-section .fourcolumn-blog .lower-portion {
    padding: 26px 20px 20px;
}
.blogpage-section .fourcolumn-blog .button-portion {
    padding: 16px 0 16px 7px;
}
.blogpage-section .fourcolumn-blog .button-portion .date {
    width: auto;
}
.blogpage-section .fourcolumn-blog .button-portion .button {
    width: 52.25%;
}
.blogpage-section .fourcolumn-blog .button-portion .read_more{
	padding: 10px 16px 10px 20px;
}
.blogpage-section .fourcolumn-blog .lower-portion .text-mr {
    margin-right: 107px;
}
.blogpage-section .fourcolumn-blog .lower-portion i {
    margin-bottom: 8px;
}
.blogpage-section .sixcolumn-blog .button-portion .date {
    width: 52%;
}
.blogpage-section .sixcolumn-blog .button-portion .button {
    width: 46%;
}
.blogpage-section .sixcolumn-blog .lower-portion {
    padding: 26px 20px 20px;
}
.blogpage-section .sixcolumn-blog .button-portion {
    padding: 16px 0 16px 20px;
}
.blogpage-section .sixcolumn-blog .button-portion .read_more{
	padding: 10px 16px 10px 20px;
}
.blogpage-section .sixcolumn-blog .lower-portion .text-mr {
    margin-right: 2px;
}
.blogpage-section .sixcolumn-blog .lower-portion i {
    margin-bottom: 20px;
}


/************ PRELOADER CSS ************/
/* ====  Preloader styles ==== */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 9999999999999;
}
#loader {
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	z-index: 1001;
	animation: spin 2s linear infinite;
}
#loader:before {
	content: "";
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	animation: spin 3s linear infinite;
}
#loader:after {
	content: "";
	top: 15px;
	right: 15px;
	left: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	animation: spin 1.5s linear infinite;
}
#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	z-index: 1000;
	transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
	left: 0;
}
#loader-wrapper .loader-section.section-right {
	right: 0;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.loaded #loader-wrapper .loader-section.section-left {
	transform: translateX(-100%);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
	transform: translateX(100%);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;
	transform: translateY(-100%);
	transition: all 0.3s 1s ease-out;
}
/*************************************************
=-*=-*=-*=-*=-*=-*= One Column =-*=-*=-*=-*=-*=-*=
**************************************************/
.breadcrumb,
#loader,
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
.post-navigation .post-next span,
.post-navigation .post-prev span,
.sidebar .post-thumbnail-entry .post-category{
	display: block;
	font-size: 12px;
    line-height: 20px;
}
.breadcrumb {
	font-size: 10px;
	margin-bottom: 10px;
	letter-spacing: .5px;
	background-color: transparent;
	padding: 10px 0;
}
.breadcrumb ol, .breadcrumb ul{
	margin:0;
	padding: 0;
}
.breadcrumb ol li, .breadcrumb ul li {
	opacity: .8;
	display: inline;
}
.breadcrumb ol li + li::before,
.breadcrumb ul li + li::before {
	margin: 0 5px;
	content: ">";
	background-color: transparent;
}
.breadcrumb ol li.active,
.breadcrumb ol li:hover,
.breadcrumb ol li:last-child,
.breadcrumb ul li.active,
.breadcrumb ul li:hover,
.breadcrumb ul li:last-child {
	opacity: 1;
}
#blog .post-item.border > .post-item-wrap > .post-item-description {
	padding: 24px;
	line-height: 28px;
}
#blog .post-item.border .post-meta-category{
	top: 11px;
	z-index: 0;
	right: 10px;
	font-size: 13px;
	padding:7px 16px 7px;
	border-radius: 50px;
}
#blog .post-item .post-meta-category,
#blog .post-item .post-meta-comments,
#blog .post-item .post-meta-date {
	top: -4px;
	font-size: 12px;
	margin-right: 8px;
}
#blog .post-item .post-item-description > h2,
#blog .post-item .post-item-description > h2 > a {
	font-size: 28px !important;
	font-weight: 500 !important;
	line-height: 34px !important;
	margin-bottom: 16px;
	letter-spacing: 0px;
}
.blog-posts p {
    font-size: 16px;
    line-height: 22px;
    color: rgb(0 0 0 / 40%);
}
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
	top: 0;
	left: 0;
	height: 100%;
}
.fluid-width-video-wrapper{
	padding-top:56.3%;
}
.player{
	top:0;
}
.post-audio audio{
	bottom: 0;
    left: 0;
}
.pagination{
	padding-left:15px;
}
.fluid-width-video-wrapper {
	padding-top: 66.8%;
}
.hide-blog{
	display: none;
}
.load-more a{
	padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
.load-more a:hover{
	background: none;
}


/*************************************************************
=-*=-*=-*=-*=-*=-*= Responsive Single Post =-*=-*=-*=-*=-*=-*=
*************************************************************/
@media screen and (max-width: 1440px){
/* Blog */
.blogpage-section {padding: 100px 0;}
/* Single Blog */
.singleblog-section .main-box {width: 100%; margin-left: 0;}
.singleblog-section .column {margin-left: 0;}
.singleblog-section .box1 {width: 105%; padding: 34px 22px;}
/* Blogs pages */
.blog-posts .sixcolumn-blog .button-portion .date {width: 100%;}
.blog-posts .sixcolumn-blog .button-portion .button {width: 100%;}
.blog-posts .sixcolumn-blog .lower-portion {padding: 26px 12px 20px;}
.blog-posts .sixcolumn-blog .lower-portion .text-mr {margin-right: 45px;}
.blog-posts .sixcolumn-blog .lower-portion i {font-size: 14px; margin-bottom: 15px; margin-right: 3px;}
.blog-posts .sixcolumn-blog .button-portion .calendar-ml {font-size: 16px;}
.blog-posts .sixcolumn-blog .button-portion .read_more {padding: 8px 18px;}
.blog-posts .sixcolumn-blog .button-portion {padding: 14px 0 14px 12px;}
.blog-posts .sixcolumn-blog .button-portion .read_more {padding: 8px 18px;}
}
@media screen and (max-width: 1199px) {
	.widget-newsletter .form-control {
		font-size: 12px;
		padding: 10px 10px;
	}
	.sidebar .widget .tabs li > a {
		font-size: 13px;
		padding: 10px 8px;
	}
	.sidebar .widget {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.single-post01 .post-item-description,
	.single-post01 .post-item-description .blockquote{
		font-size: 14px;
		line-height: 26px;
	}
	.single-post01 .post-navigation .post-next,
	.single-post01 .post-navigation .post-prev {
		font-size: 14px;
	}
	.single-post01 .post-item-description h2,
	.single-post01 .post-item-description h2 > a {
		margin-top: 0;
		font-size: 28px;
		line-height: 32px;
	}
	
/* Blog */
.blogpage-section {padding: 90px 0 75px;}
.blogpage-section .blog_content h2 {margin-bottom: 35px;}
.blogpage-section .blog-box {margin-bottom: 25px;}
.blogpage-section .blog-box .lower-portion {padding: 20px;}
.blogpage-section .blog-box .button-portion {padding: 12px 0 12px 20px;}
.blogpage-section .blog-box .button-portion .date {width: 49.5%;}
.blogpage-section .blog-box .button-portion .button {width: 48.5%;}
.blogpage-section .blog-box .lower-portion i {font-size: 16px; margin-right: 5px; margin-bottom: 20px;}
.blogpage-section .blog-box .button-portion .calendar-ml {font-size: 18px; margin-left: 0;}
.blogpage-section .blog-box .lower-portion .text-mr {margin-right: 15px;}
.blogpage-section .blog-box .lower-portion h5 {font-size: 18px; line-height: 26px; letter-spacing: 0; word-spacing: 0;}
.blogpage-section .blog-box .button-portion .read_more {padding: 12px 20px;}
/* Single Blog */
.singleblog-section {padding: 100px 0;}
.singleblog-section .main-box {padding: 10px 15px 35px 10px;}
.singleblog-section .main-box .content1 h4 {margin-bottom: 15px;}
.singleblog-section .main-box .content1 i {margin-bottom: 22px;}
.singleblog-section .main-box .content1 p {margin-bottom: 30px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage {margin-bottom: 20px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage img{width: 32px;}
.singleblog-section .main-box .content2 {padding: 20px 20px 28px; margin-bottom: 30px;}
.singleblog-section .main-box .text {margin-bottom: 30px; margin-left: 12px;}
.singleblog-section .content4 {margin-bottom: 90px;}
.singleblog-section .content4 .tag .button {padding: 10px 16px; margin-right: 0;}
.singleblog-section .content4 .tag {margin-right: -40px;}
.singleblog-section .content4 .icon .social-icons {top: 46px; right: -10px;}
.singleblog-section .content5 .content {padding: 82px 62px 20px;}
.singleblog-section .content5 .content span {margin-bottom: 10px;}
.singleblog-section .content5 {margin-bottom: 30px;}
.singleblog-section .content6 .comment .image img {width: 90px;}
.singleblog-section .content6 h4 {margin-bottom: 34px;}
.singleblog-section .content6 .comment {margin: 0 0 30px 0;}
.singleblog-section .content6 .comment .content {padding: 0 0 0 15px;}
.singleblog-section .content6 .comment h5 {font-size: 20px; line-height: 26px; margin-bottom: 4px;}
.singleblog-section .content6 .comment span {margin-bottom: -44px;}
.singleblog-section .content6 .comment .text_holder p {line-height: 22px; margin: 0 30px 0 0; word-spacing: 0;}
.singleblog-section .content6 .comment .reply {font-size: 16px; line-height: 22px; padding: 10px 32px; top: -24px;}
.singleblog-section .content7 h4 {margin-bottom: 20px;}
.singleblog-section .content7 textarea {padding: 16px 20px; height: 145px; margin-bottom: 10px;}
.singleblog-section .content7 input {padding: 12px 20px; margin-bottom: 15px;}
.singleblog-section .content7 .text-mb {margin-bottom: 20px;}
.singleblog-section .content7 .post_comment {padding: 20px 36px;}
.singleblog-section .box1 {width: 100%; padding: 30px 15px; margin-bottom: 30px;}
.singleblog-section .box1 h5 {margin-bottom: 35px; letter-spacing: 0; word-spacing: 0;}
.singleblog-section .box1 h5:after {width: 80%; height: 36px; left: 32px;}
.singleblog-section .box1 input {padding: 0 13px; height: 50px;}
.singleblog-section .box1 .search {font-size: 16px; height: 48px;}
.singleblog-section .box2 ul li {margin-bottom: 22px;}
.singleblog-section .box3 .social-icons ul li .social-networks {font-size: 18px; width: 40px; height: 40px; line-height: 40px;}
.singleblog-section .box4 .tag .button {padding: 12px; letter-spacing: 0;}
.singleblog-section .box5 .feed a {font-size: 16px; line-height: 24px; padding: 0 0 0 12px;}
.singleblog-section .box5 .feed {margin-bottom: 46px;}
.singleblog-section .box5 .feed:after {width: 81%; height: 100px; left: 30px;}
/* Blog pages*/
.blog-posts p {font-size: 16px; line-height: 24px;}
.blog-posts .load-blog .lower-portion .text-mr {margin-right: 18px;}
.blog-posts .onecolumn-blog .button-portion .date {width: 50.5%;}
.blog-posts .onecolumn-blog .button-portion .button {width: 48.5%;}
.blog-posts .onecolumn-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .twocolumn-blog .button-portion .date {width: 50%;}
.blog-posts .twocolumn-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .threecolumn-blog .button-portion .date {width: 100%;}
.blog-posts .threecolumn-blog .button-portion .button {width: 100%;}
.blog-posts .threecolumn-blog .lower-portion .text-mr {margin-right: 20px;}
.blog-posts .threecolumn-blog .lower-portion i {margin-bottom: 18px;}
.blog-posts .three-column .lower-portion .text-mr {margin-right: 50px;}
.blog-posts .three-column .button-portion .read_more {padding: 8px 18px;}
.blog-posts .fourcolumn-blog .button-portion .date {width: 50.5%;}
.blog-posts .fourcolumn-blog .button-portion .button {width: 48%;}
.blog-posts .fourcolumn-blog .button-portion .read_more {padding: 8px 18px;}
.blog-posts .sixcolumn-blog .button-portion .date {width: 50%;}
}
@media screen and (max-width: 991px) {
	.respond-form {
		padding-top: 0;
	}
.single-post01 .post-item-description .post-meta-date, .single-post01 .post-item-description .post-meta-date a, .single-post01 .post-item-description .post-meta-category, .single-post01 .post-item-description .post-meta-category a, .single-post01 .post-item-description .post-meta-comments, .single-post01 .post-item-description .post-meta-comments a {
		margin-right: 5px;
	}
	.single-post01 .comments .comment .text {
		padding: 0;
	}
	.single-post01 .comments .comment .image {
		width: 48px;
		height: 48px;
		margin-right: 14px;
	}
	.single-post01 .text_holder {
		font-size: 12px;
		margin: 10px 0 0;
	}
	.single-post01 .comment .comment {
		margin-left: 30px;
	}
	.single-post01 .comments{
		padding: 30px 0 0;
	}
	.sidebar {
		margin: 55px 0 0;
	}
	.page-title h1 {
		font-size: 2rem;
	}
	
/* Blog */
.blogpage-section {padding: 65px 0 50px;}
.blogpage-section .blog_content h2 {margin-bottom: 30px;}
.blogpage-section .blog-box {margin-bottom: 20px;}
.blogpage-section .blog-box .lower-portion {padding: 15px 20px;}
.blogpage-section .blog-box .lower-portion i {font-size: 14px; margin-right: 2px; margin-bottom: 6px;}
.blogpage-section .blog-box .button-portion .calendar-ml {font-size: 16px;}
.blogpage-section .blog-box .lower-portion .tag-mb {margin-bottom: 15px;}
.blogpage-section .blog-box .lower-portion .text-mr {margin-right: 40px;}
.blogpage-section .blog-box .lower-portion h5 {font-size: 16px; line-height: 22px;}
.blogpage-section .blog-box .button-portion .read_more {padding: 10px 20px;}
/* Single Blog */
.singleblog-section {padding: 70px 0;}
.singleblog-section .main-box {margin-bottom: 30px;}
.singleblog-section .main-box .image1{margin-bottom: 25px;}
.singleblog-section .main-box .content1 p {margin-bottom: 25px;}
.singleblog-section .main-box .content2 {padding: 24px 30px; margin-bottom: 25px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage {margin-bottom: 18px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage img {width: 30px;}
.singleblog-section .main-box .text {margin: 0 0 25px 10px;}
.singleblog-section .content4 {margin-bottom: 80px;}
.singleblog-section .content4 h5 {font-size: 20px; line-height: 24px; margin-bottom: 12px;}
.singleblog-section .content4 .tag .button {font-size: 14px; line-height: 22px; padding: 8px 14px;}
.singleblog-section .content4 .icon .social-icons {top: 40px; right: -8px;}
.singleblog-section .content4 .icon .social-icons ul li {margin: 0 5px;}
.singleblog-section .content4 .icon .social-icons ul li .social-networks {font-size: 14px; width: 30px; height: 30px; line-height: 30px;}
.singleblog-section .content5 {margin-bottom: 25px;}
.singleblog-section .content5 .content {padding: 75px 40px 15px;}
.singleblog-section .content5 .singleblog-review1 img {width: 125px;}
.singleblog-section .content5 .content h4 {margin-bottom: 2px; letter-spacing: 0;}
.singleblog-section .content5 .content span {margin-bottom: 8px; letter-spacing: 0;}
.singleblog-section .content6 h4 {margin-bottom: 25px;}
.singleblog-section .content6 h4:after {width: 17%; height: 35px;}
.singleblog-section .content6 .comment {margin-bottom: 20px;}
.singleblog-section .content6 .comment .image img {width: 80px;}
.singleblog-section .content6 .comment .content {padding: 4px 0 0 12px;}
.singleblog-section .content6 .comment h5 {font-size: 18px; line-height: 24px;}
.singleblog-section .content6 .comment span {margin-bottom: -34px;}
.singleblog-section .content6 .comment .text_holder p {margin-right: 55px;}
.singleblog-section .content6 .comment .reply {font-size: 14px; line-height: 20px; padding: 10px 30px; top: -23px;}
.singleblog-section .content6 {margin-bottom: 45px;}
.singleblog-section .content7 h4 {margin-bottom: 15px;}
.singleblog-section .content7 textarea {padding: 14px; height: 120px; margin-bottom: 8px;}
.singleblog-section .content7 input {padding: 10px 14px; margin-bottom: 13px;}
.singleblog-section .content7 .post_comment {font-size: 14px; line-height: 20px; padding: 16px 34px;}
.singleblog-section .box1 h5:after {width: 91%;}
.singleblog-section .box1 h5 {margin-bottom: 30px;}
.singleblog-section .box1 input {font-size: 14px; line-height: 20px; padding: 0 12px; height: 47px;}
.singleblog-section .box1 .search {font-size: 14px; height: 45px;}
.singleblog-section .box2 ul li {margin-bottom: 15px;}
.singleblog-section .box3 .social-icons ul li {margin: 0 8px;}
.singleblog-section .box3 .social-icons ul li .social-networks {font-size: 16px; width: 35px; height: 35px; line-height: 35px;}
.singleblog-section .box4 ul{text-align: center; padding: 0 110px;}
.singleblog-section .box4 .tag .button {padding: 10px 14px; margin-bottom: 10px; font-size: 14px; line-height: 24px;}
.singleblog-section .box5 .feed {margin-bottom: 40px;}
.singleblog-section .box5 .feed:after {width: 91%; height: 88px;}
.singleblog-section .box5 .feed .feed-image {width: 12%;}
.singleblog-section .box5 .feed .feed-image img {width: 80px;}
.singleblog-section .box5 .feed a {font-size: 14px; line-height: 22px; padding: 14px 200px 0 20px;}
/* Blog pages */
.blog-posts p {font-size: 16px; line-height: 24px;}
.blog-posts .blog-box .loadone_twocol .date {width: 50%;}
.blog-posts .blog-box .loadone_twocol .button {width: 49%;}
.blog-posts .threecolumn-blog .button-portion .date {width: 50%;}
.blog-posts .threecolumn-blog .button-portion .button {width: 48%;}
.blog-posts .fourcolumn-blog .button-portion .date {width: 49.5%;}
.blog-posts .fourcolumn-blog .button-portion .button {width: 48.5%;}
.blog-posts .sixcolumn-blog .lower-portion .text-mr {margin-right: 46px;}
}
@media screen and (max-width: 767px) {
    .blog-item-content {
        width: 100% !important;
    }
	.single-post01 .post-item-description h2,
	.single-post01 .post-item-description h2 > a {
		font-size: 24px;
		line-height: 26px;
	}
	#blog .post-item.border > .post-item-wrap > .post-item-description {
		line-height: 20px;
		font-size: 12px;
	}
	.blog-posts p {
		font-size: 16px;
		line-height: 22px;
	}
	.single-post01 .post-item-description .blockquote {
		margin-left: 25px;
	}
	.sidebar {
		margin: 30px 0 0;
	}
	
/* Blog */
.blogpage-section {padding: 52px 0 40px;}
.blogpage-section .blog_content h2 {margin-bottom: 25px;}
.blogpage-section .blog-box .lower-portion {padding: 20px;}
.blogpage-section .blog-box .lower-portion i {margin: 0 8px 8px 0;}
.blogpage-section .blog-box .button-portion .date {width: 48.5%;}
.blogpage-section .blog-box .button-portion .button {width: 49%;}
.blogpage-section .blog-box .button-portion .calendar-ml {font-size: 14px;}
.blogpage-section .blog-box .lower-portion .text-size-14 {font-size: 12px; line-height: 20px;}
.blogpage-section .blog-box .button-portion .text-size-14 {font-size: 12px; line-height: 20px;}
.blogpage-section .blog-box .lower-portion .text-mr {font-size: 12px; line-height: 20px; margin-right: 100px;}
.blogpage-section .blog-box .lower-portion h5 {font-size: 14px; line-height: 24px;}
.blogpage-section .blog-box .button-portion .read_more {font-size: 12px; line-height: 20px; padding: 8px 14px 8px 20px;}
/* Single Blog */
.singleblog-section {padding: 60px 0;}
.singleblog-section .main-box {padding: 10px 15px 30px 10px; margin-bottom: 25px;}
.singleblog-section .main-box .image1 {margin-bottom: 20px;}
.singleblog-section .main-box .content1 h4 {margin-bottom: 10px;}
.singleblog-section .main-box .content1 i {margin-bottom: 18px;}
.singleblog-section .main-box .content1 p {margin-bottom: 20px;}
.singleblog-section .main-box .content2 {padding: 22px 30px; margin-bottom: 20px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage {margin-bottom: 15px;}
.singleblog-section .main-box .content2 .singleblog-quoteimage img {width: 28px;}
.singleblog-section .main-box .text {margin: 0 0 20px 10px;}
.singleblog-section .content4 h5 {font-size: 18px; line-height: 22px;}
.singleblog-section .content4 {margin-bottom: 90px;}
.singleblog-section .content4 .tag .button {padding: 6px 12px;}
.singleblog-section .content4 .icon .social-icons {top: 37px;}
.singleblog-section .content4 .icon .social-icons ul li {margin: 0 3px;}
.singleblog-section .content4 .icon .social-icons ul li .social-networks {font-size: 12px; width: 28px; height: 28px; line-height: 28px;}
.singleblog-section .content5 {margin-bottom: 20px;}
.singleblog-section .content5 .singleblog-review1 img {width: 110px;}
.singleblog-section .content5 .content {padding: 58px 14px 10px;}
.singleblog-section .content6 {margin-bottom: 40px;}
.singleblog-section .content6:after {height: 4px; left: 21px;}
.singleblog-section .content6 h4 {margin-bottom: 30px;}
.singleblog-section .content6 h4:after {width: 21%;}
.singleblog-section .content6 .comment .image img {width: 70px;}
.singleblog-section .content6 .comment .text_holder p {line-height: 20px; margin-right: 0;}
.singleblog-section .content6 .comment .reply {padding: 8px 28px; top: -22px;}
.singleblog-section .content6 .comment .content {padding: 0px 0 0 12px;}
.singleblog-section .content7 textarea {font-size: 12px; line-height: 18px; padding: 12px; height: 110px;}
.singleblog-section .content7 input {font-size: 12px; line-height: 18px; padding: 8px 12px;}
.singleblog-section .content7 .text-mb {margin-bottom: 18px;}
.singleblog-section .content7 .post_comment {padding: 14px 28px;}
.singleblog-section .box1 {padding: 25px 15px; margin-bottom: 25px;}
.singleblog-section .box1 h5 {margin-bottom: 28px;}
.singleblog-section .box1 h5:after {width: 88%; height: 32px;}
.singleblog-section .box1 input {padding: 0 10px; height: 42px;}
.singleblog-section .box1 .search {height: 40px; width: 50px;}
.singleblog-section .box2 ul li {margin-bottom: 12px;}
.singleblog-section .box3 .social-icons ul li {margin: 0 5px;}
.singleblog-section .box3 .social-icons ul li .social-networks {font-size: 14px; width: 30px; height: 30px; line-height: 30px;}
.singleblog-section .box4 .tag .button {padding: 6px 14px; margin-bottom: 8px;}
.singleblog-section .box4 ul {padding: 0 20px;}
.singleblog-section .box5 .feed {margin-bottom: 35px;}
.singleblog-section .box5 .feed:after {width: 89%; height: 80px;}
.singleblog-section .box5 .feed .feed-image {width: 15%;}
.singleblog-section .box5 .feed a {padding: 9px 90px 0 12px;}
/* Blog pages */
.blog-posts .blog-box .loadone_twocol .date {width: 49.5%;}
.blog-posts .blog-box .loadone_twocol .button {width: 49.5%;}
.blog-posts .load-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .load-more a {padding: 8px 25px;}
.blog-posts .onecolumn-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .twocolumn-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .three-column .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .threecolumn-blog .button-portion .date {width: 49.5%;}
.blog-posts .threecolumn-blog .button-portion .button {width: 49%;}
.blog-posts .fourcolumn-blog .button-portion .date {width: 49.5%;}
.blog-posts .fourcolumn-blog .button-portion .button {width: 49.5%;}
.blog-posts .fourcolumn-blog .lower-portion .text-mr {margin-right: 40px;}
.blog-posts .sixcolumn-blog .button-portion .date {width: 49.5%;}
.blog-posts .sixcolumn-blog .button-portion .button {width: 49.5%;}
.blog-posts .sixcolumn-blog .lower-portion .text-mr {margin-right: 40px;}
}
@media screen and (max-width: 575px) {
	.single-post01 .text_holder p{
		margin: 0 0 8px;
	}
	.single-post01 .comments .comment .comment_date {
		font-size: 11px;
	}
	.single-post01 .post-item-description,
	.single-post01 .post-item-description .blockquote {
		font-size: 13px;
		line-height: 24px;
	}
	.single-post01 .post-item-description h2,
	.single-post01 .post-item-description h2 > a{
		margin:0;
	}
	.single-post01 .post-meta-share ul{
		margin:5px 0 0;
	}
	.single-post01 .post-item-description .post-meta-date, .single-post01 .post-item-description .post-meta-date a, .single-post01 .post-item-description .post-meta-category, .single-post01 .post-item-description .post-meta-category a, .single-post01 .post-item-description .post-meta-comments, .single-post01 .post-item-description .post-meta-comments a {
		font-size: 12px;
	}
	.single-post01 .respond-comment {
		 font-size: 16px;
	 }
	.page-title h1 {
		font-size: 1.8rem;
		padding: 1rem;
		padding-bottom: 0;
	}
	#blog .post-item .post-item-description > h2,
	#blog .post-item .post-item-description > h2 > a{
		font-size: 20px;
		line-height: 24px;
	}
	.single-post01 .comments .comment .text .name {
		font-size: 18px;
	}

	/* Blog */
	.blogpage-section .blog-box figure img{width: 100%;}
	.blogpage-section .blog-box .lower-portion {padding: 20px 30px;}
	.blogpage-section .blog-box .button-portion {padding: 12px 0 12px 30px;}
	.blogpage-section .blog-box .button-portion .date {width: 49%;}
	.blogpage-section .blog-box .lower-portion .text-mr {margin-right: 40px;}
	.blogpage-section .blog-box .lower-portion h5 {margin-right: 40px;}
	/* Single Blog */
	.singleblog-section .main-box {margin-bottom: 20px;}
	.singleblog-section .main-box .content2 {padding: 20px 22px;}
	.singleblog-section .main-box .content2 .singleblog-quoteimage {margin-bottom: 12px;}
	.singleblog-section .main-box .content2 .singleblog-quoteimage img {width: 26px;}
	.singleblog-section .content4 {margin-bottom: 120px;}
	.singleblog-section .content4 h5 {margin-bottom: 10px;}
	.singleblog-section .content4 .tag .button {margin-bottom: 15px;}
	.singleblog-section .content4 .icon h5 {display: contents;}
	.singleblog-section .content4 .icon .social-icons {top: 32px; left: 0; right: 0;}
	.singleblog-section .content5 .singleblog-review1 img {width: 100px;}
	.singleblog-section .content5 .content {padding: 46px 15px 10px;}
	.singleblog-section .content5 .content span {margin-bottom: 6px;}
	.singleblog-section .content6:after {height: 0; left: 13px;}
	.singleblog-section .content6 h4:after {width: 32%;}
	.singleblog-section .content6 .comment .image img {width: 60px;}
	.singleblog-section .content6 .comment h5 {font-size: 16px; line-height: 22px;}
	.singleblog-section .content6 .comment span {margin-bottom: -26px;}
	.singleblog-section .content6 .comment .reply {padding: 6px 18px; top: -28px;}
	.singleblog-section .content7 textarea {padding: 10px; height: 100px;}
	.singleblog-section .content7 input {padding: 8px 10px;}
	.singleblog-section .content7 .post_comment {padding: 12px 15px;}
	.singleblog-section .box1 {margin-bottom: 20px;}
	.singleblog-section .box1 h5:after {width: 82%;}
	.singleblog-section .box4 ul {padding: 0;}
	.singleblog-section .box5 .feed:after {width: 84%;}
	.singleblog-section .box5 .feed .feed-image {width: 25%;}
	.singleblog-section .box5 .feed a {padding: 9px 0 0 12px;}
	/* Blog pages */
	.blog-posts p {font-size: 14px; line-height: 20px;}
	.blog-posts .blog-box .loadone_twocol .date {width: 48.5%;}
	.blog-posts .onecolumn-blog .lower-portion {padding: 20px;}
	.blog-posts .onecolumn-blog .button-portion {padding: 12px 0 12px 20px;}
	.blog-posts .twocolumn-blog .button-portion {padding: 12px 0 12px 20px;}
	.blog-posts .twocolumn-blog .lower-portion {padding: 20px;}
	.blog-posts .threecolumn-blog .button-portion {padding: 12px 0 12px 20px;}
	.blog-posts .threecolumn-blog .lower-portion {padding: 20px;}
	.blog-posts .threecolumn-blog .lower-portion .text-mr {margin-right: 15px;}
	.blog-posts .fourcolumn-blog .button-portion .date {width: 48.5%;}
	.blog-posts .fourcolumn-blog .lower-portion {padding: 20px;}
	.blog-posts .fourcolumn-blog .button-portion {padding: 15px 0 15px 20px;}
	.blog-posts .sixcolumn-blog .button-portion {padding: 12px 0 12px 20px;}
	.blog-posts .sixcolumn-blog .button-portion .date {width: 48.5%;}
	.blog-posts .sixcolumn-blog .lower-portion {padding: 20px;}
}