/*------------------------------------------------------------------
[Master Stylesheet]

Project:  E-netram
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header
3. Banner  /.banner-con
4. Service  /.service-con
5. About  /.about-con
6. Choose  /.choose-con
7. Pricing  /.pricing-con
8. Specialist Intro  /.specialist-intro-con
9. Help  /.help-con
10. Team  /.team-con
11. Contact  /.contact-con
12. Testimonial  /.testimonial-con
13. Faq  /.faq-con
14. Footer  /.footer-con
*/

/*------------------------------------------------------------------
# [Color Codes]

#    --e-global-color-primary: #ffffff;
#    --e-global-color-secondary: #000000;
#    --e-global-color-accent: #fddf5b;
#    --e-global-color-text: #6d6d6d;
#	 --e-global-color-white: #ffffff;
#    --e-global-color-black: #000000;
#    --e-global-color-dark-blue: #114a73;
#    --e-global-color-grayish-blue: #bed1de;
#    --e-global-color-light-grayish-blue: #f4f9fc;
#    --e-global-color-star-yellow: #fddf5b;
#    --e-global-color-pure-red: #ff0000;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Archivo", serif;
Heading: "Lexend Deca", serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&amp;family=Lexend+Deca:wght@100..900&amp;display=swap');
body {
    font-family: "Archivo", serif;
    /* font-family: "Lexend Deca", serif; */
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #000000;
    --e-global-color-accent: #fddf5b;
    --e-global-color-text: #6d6d6d;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-dark-blue: #114a73;
    --e-global-color-grayish-blue: #bed1de;
    --e-global-color-light-grayish-blue: #f4f9fc;
    --e-global-color-star-yellow: #fddf5b;
    --e-global-color-pure-red: #ff0000;
}

h1{
    font-size: 66px;
    line-height: 70px;
    font-weight: 700;
    color: var(--e-global-color-primary);
    font-family: "Lexend Deca", serif;
}
h2{
    font-size: 46px;
    line-height: 50px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: "Lexend Deca", serif;
}
h3{
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: "Lexend Deca", serif;
}
h4{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: "Lexend Deca", serif;
}
h5{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    font-family: "Lexend Deca", serif;
}
h6{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--e-global-color-dark-blue);
    font-family: "Archivo", serif;
}
p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
    word-break: break-word;
}
.text-size-18{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.text-size-16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: "Archivo", serif;
}
.primary_btn{
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    font-family: "Archivo", serif;
    transition: all 0.8s ease-in-out;
}
.primary_btn:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-dark-blue);
}
.primary_btn i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.primary_btn:hover i{
    color: var(--e-global-color-white);
}
html{
    scroll-behavior: smooth;
}
.all_row {
    display: flex;
    flex-wrap: wrap;
}
.all_column {
    display: flex;
}
.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Home Page */

/* Topbar */

.top-bar-con .top-bar-box{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8f0f6;
}
.top-bar-con .top-bar-box ul,
.top-bar-con .top-bar-box .info,
.top-bar-con .top-bar-box .top-bar-social {
    display: flex;
    align-items: center;
}
.top-bar-con .top-bar-box .info {
    padding-right: 35px;
}
.top-bar-con .top-bar-box .info:last-child {
    padding-right: 0;
}
.top-bar-con .top-bar-box .info a,
.top-bar-con .top-bar-box .info p{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 14px;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.top-bar-con .top-bar-box .info a:hover {
    color: var(--e-global-color-accent);
}
.top-bar-con .top-bar-box .social-icons li {
    display: inline-block;
    margin: 0 10px;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons li:first-child {
    margin-left: 0;
}
.top-bar-con .top-bar-box .social-icons li:last-child {
    margin-right: 0;
}
.top-bar-con .top-bar-box .social-icons i {
    font-size: 14px;
    color: var(--e-global-color-dark-blue);
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons a:hover i{
    color: var(--e-global-color-accent);
}

/* Header */

.header {
    padding: 32px 0px;
    position: relative;
    z-index: 5;
}
.header .logo img {
    width: 150px;
}
.navbar-collapse ul {
    text-align: center;
    align-items: center;
    display: inherit;
}
.navbar-expand-lg {
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child {
    margin-left: 0;
}
.navbar-nav .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-family: "Archivo", serif;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover {
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active>a {
    color: var(--e-global-color-accent) !important;
}
.navbar-nav li:last-child {
    margin-right: 34px;
    padding-right: 0;
    margin-left: 0;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 69px;
    min-width: 200px;
    padding: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages li {
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-family: "Archivo", serif;
    padding: 10px 20px;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 14px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages .active:first-child>a::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages li:last-child {
    margin: 0;
    border: none;
}
.navbar-nav .nav-item .dropdown-item:hover{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a:hover {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 8px 8px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 8px 8px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 8px 8px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 8px 8px;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.header .last_list {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(0, 0, 0, 10%);
    padding-left: 35px;
}
.header .last_list .search-box {
    font-size: 20px;
    color: var(--e-global-color-dark-blue);
    transition: all 0.3s ease-in-out;
}
.header .last_list .search-box:hover {
    color: var(--e-global-color-accent);
}
.header .last_list .get_started {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 17px 32px;
    margin-left: 30px;
    border-radius: 8px;
    font-family: "Archivo", serif;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.header .last_list .get_started i {
    font-size: 12px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.header .last_list .get_started:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.header .last_list .get_started:hover i {
    color: var(--e-global-color-white);
}

/* Banner */

.banner-con::before,
.banner-con::after {
    content: "";
    width: 62%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/banner-rightbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.banner-con::after {
    width: 55%;
    left: 0;
    right: unset;
    background-image: url(../images/contact-rightbackground.jpg);
    border-radius: 0 0 300px 0;
}
.banner-con .banner-leftimage {
    position: absolute;
    left: 0;
    top: 210px;
    z-index: 1;
}
.banner-con .banner-leftimage img {
    opacity: 5%;
}
.banner-con .banner_wrapper {
    display: none;
}
.banner-con .banner_content{
    padding: 185px 0 210px;
    position: relative;
    z-index: 1;
}
.banner-con .banner_content h6{
    padding-left: 50px;
    margin-bottom: 20px;
    position: relative;
    color: var(--e-global-color-accent);
}
.banner-con .banner_content h6::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 37px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner-con .banner_content h1{
    margin-bottom: 25px;
}
.banner-con .banner_content p{
    margin-bottom: 38px;
}
.banner-con .banner_content .primary_btn {
    padding: 20px 25px;
    margin-right: 15px;
    border: 1px solid var(--e-global-color-accent);
}
.banner-con .banner_content .secondary_btn {
    padding: 20px 30px;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
}
.banner-con .banner_content .primary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner-con .top-btn {
    display: inline-block;
    left: 80px;
    right: 0;
    bottom: 50px;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
}
.banner-con .top-btn figure{
    transition: all 0.3s ease-in-out;
}
.banner-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* Service */

.service-con {
    padding: 135px 0 195px;
    background-color: var(--e-global-color-white);
}
.service-con .service_content h6{
    margin-bottom: 14px;
}
.service-con .service_content h2{
    margin-bottom: 40px;
}
.service-con .owl-stage-outer {
    padding-left: 2px;
}
.service-con .owl-stage {
    display: flex;
}
.service-con .owl-item { 
    padding: 50px 30px 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-top: 2px solid var(--e-global-color-accent);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%)inset;
    transition: all 0.8s ease-in-out;
}
.service-con .owl-item:hover {
    border-top: 2px solid var(--e-global-color-dark-blue);
}
.service-con .service-box .icon {
    min-height: 60px;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.service-con .service-box:hover .icon {
    transform: translateY(-5px);
}
.service-con .service-box h5 {
    margin-bottom: 8px;
}
.service-con .service-box p {
    margin-bottom: 20px;
}
.service-con .service-box .arrow {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service-con .service-box .arrow i {
    font-size: 10px;
    margin-left: 12px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service-con .service-box .arrow:hover {
    color: var(--e-global-color-secondary);
}
.service-con .service-box .arrow:hover i {
    color: var(--e-global-color-secondary);
}
.service-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.service-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 44px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.service-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #dde9f1;
}
.service-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-accent);
}
.service-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-accent);
}
.service-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* About */

.about-con {
    padding: 132px 0 220px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.about-con .about-rightimage {
    position: absolute;
    right: 0;
    top: 210px;
}
.about-con .about-rightimage img {
    opacity: 10%;
}
.about-con .about_wrapper .about-image1 {
    position: relative;
    top: 0;
    right: 40px;
    text-align: right;
}
.about-con .about_wrapper .about-image1 img {
    border-radius: 25px;
}
.about-con .about_wrapper .video-image{
    bottom: -96px;
    left: 40px;
    position: absolute;
    display: inline-block;
}
.about-con .about_wrapper .about-image2 img{
    border-radius: 20px;
    border: 10px solid #f4f9fc;
}
.about-con .about_wrapper .icon {
    height: 110px;
    width: 110px;
    line-height: 90px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    border: 8px solid #f4f9fc;
    transition: all 0.8s ease-in-out;
    background-color: var(--e-global-color-accent);
    left: -50px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.about-con .about_wrapper .icon:hover {
    transform: translateY(-5px);
}
.about-con .about_content h6{
    margin-bottom: 14px;
}
.about-con .about_content h2{
    margin-bottom: 22px;
}
.about-con .about_content .text{
    margin-bottom: 26px;
}
.about-con .about_content .propertise {
    margin-bottom: 28px;
}
.about-con .about_content ul{
    display: inline-block;
}
.about-con .about_content .list1{
    padding-right: 30px;
}
.about-con .about_content ul li {
    position: relative;
    margin-bottom: 12px;
}
.about-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.about-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.about-con .about_content .primary_btn {
    padding: 20px 32px;
}

/* Choose */

.choose-con {
    overflow: hidden;
    padding-top: 92px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--e-global-color-dark-blue);
    background-image: url(../images/choose-backgroundimage.png);
}
.choose-con .choose-lefttopimage {
    position: absolute;
    left: 0;
    top: 0;
}
.choose-con .choose-rightbottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.choose-con .image img {
    opacity: 15%;
}
.choose-con .choose_content,
.choose-con .choose_contentvalue {
    padding-top: 100px;
}
.choose-con .choose_content {
    padding-right: 45px;
}
.choose-con .choose_content h6 {
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.choose-con .choose_content h2 span{
    color: var(--e-global-color-accent);
}
.choose-con .choose_wrapper .choose-image {
    position: relative;
    bottom: 0;
    left: -100px;
}
.choose-con .choose_wrapper .choose-image::before {
    content: "";
    width: 500px;
    height: 500px;
    top: 58px;
    left: 60px;
    position: absolute;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    z-index: -1;
}
.choose-con .choose_contentvalue ul * {
    color: var(--e-global-color-white);
}
.choose-con .choose_contentvalue ul li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.choose-con .choose_contentvalue ul li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.choose-con .choose_contentvalue ul li .number {
    font-size: 46px;
    line-height: 46px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Lexend Deca", serif;
}
.choose-con .choose_contentvalue ul li .plus {
    font-size: 42px;
    line-height: 42px;
    font-weight: 700;
    top: 0;
    position: relative;
    font-family: "Lexend Deca", serif;
}
.choose-con .choose_contentvalue ul li .text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    display: block;
}

/* Pricing */

.pricing-con {
    padding: 135px 0 140px;
}
.pricing-con .pricing_content h6 {
    margin-bottom: 14px;
}
.pricing-con .pricing_content h2 {
    margin-bottom: 40px;
}
.pricing-con .pricing-box {
    padding: 50px 35px 55px;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%);
    border-top: 2px solid var(--e-global-color-dark-blue);
    cursor: pointer;
    transition: all 0.8s ease-in-out;
}
.pricing-con .pricing-box:hover {
    border-top: 2px solid var(--e-global-color-accent);
}
.pricing-con .pricing-box .content {
    padding-bottom: 32px;
    margin-bottom: 26px;
    border-bottom: 1px solid #e8f0f6;
}
.pricing-con .pricing-box sup,
.pricing-con .pricing-box span {
    display: inline-block;
    color: var(--e-global-color-secondary);
}
.pricing-con .pricing-box .dollar {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    top: -14px;
    font-family: "Lexend Deca", serif;
}
.pricing-con .pricing-box .number {
    font-size: 46px;
    line-height: 46px;
    font-weight: 700;
    font-family: "Lexend Deca", serif;
}
.pricing-con .pricing-box .month {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.pricing-con .pricing-box h4 {
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}
.pricing-con .pricing-box p {
    line-height: 26px;
    transition: all 0.3s ease-in-out;
}
.pricing-con .pricing-box ul {
    margin-bottom: 32px;
}
.pricing-con .pricing-box ul li {
    position: relative;
    margin-bottom: 6px;
}
.pricing-con .pricing-box ul li:last-child {
    margin-bottom: 0 !important;
}
.pricing-con .pricing-box ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.pricing-con .pricing-box ul li p {
    padding-left: 25px;
    color: var(--e-global-color-secondary);
}
.pricing-con .pricing-box .primary_btn {
    padding: 18px;
    display: block;
}
.pricing-con .pricing-box:hover .primary_btn {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.pricing-con .pricing-box:hover .primary_btn i {
    color: var(--e-global-color-white);
}
.pricing-con .pricing-box .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
}

/* Specialist Intro */

.specialist-intro-con {
    padding: 128px 0;
    background-color: var(--e-global-color-light-grayish-blue);
}
.specialist-intro-con .timing_content {
    padding: 50px 40px;
    border-radius: 15px;
    background-color: var(--e-global-color-dark-blue);
}
.specialist-intro-con .timing_content * {
    color: var(--e-global-color-white);
}
.specialist-intro-con .timing_content .specialist-intro-clockimage {
    margin-bottom: 20px;
}
.specialist-intro-con .timing_content h5 {
    margin-bottom: 28px;
}
.specialist-intro-con .timing_content ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.specialist-intro-con .timing_content ul li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.specialist-intro-con .timing_content ul li span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}
.specialist-intro-con .timing_content ul li .day {
    font-weight: 600;
}
.specialist-intro-con .intro_content {
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
}
.specialist-intro-con .intro_content .image {
    width: 88%;
}
.specialist-intro-con .intro_content .specialist-intro-image img {
    border-radius: 12px;
}
.specialist-intro-con .intro_content .specialist-intro-quoteimage {
    top: 30px;
    right: 32px;
    width: 62px;
    height: 62px;
    line-height: 62px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
}
.specialist-intro-con .intro_content .content {
    width: 100%;
}
.specialist-intro-con .intro_content h3 {
    margin-bottom: 18px;
}
.specialist-intro-con .intro_content p {
    margin-bottom: 36px;
    font-style: italic;
}
.specialist-intro-con .intro_content .lower_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.specialist-intro-con .intro_content .name {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    display: block;
    font-family: "Lexend Deca", serif;
    color: var(--e-global-color-dark-blue);
}
.specialist-intro-con .intro_content .field {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.specialist-intro-con .intro_content .specialist-intro-signature {
    position: relative;
    right: 50px;
}

/* Help */

.help-con {
    padding: 135px 0 140px;
    background-color: var(--e-global-color-black);
}
.help-con::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 45%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/help-backgroundimage.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.help-con .help_content h6 {
    margin-bottom: 18px;
    color: var(--e-global-color-accent);
}
.help-con .help_content h2 {
    line-height: 54px;
    margin-bottom: 42px;
}
.help-con .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-con .phone-number .number {
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 15px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.help-con .phone-number .number:hover {
    color: var(--e-global-color-accent);
}

/* Team */

.team-con {
    padding: 135px 0 140px;
}
.team-con .team-leftimage {
    position: absolute;
    left: 0;
    top: 235px;
}
.team-con .team-leftimage img {
    opacity: 10%;
}
.team-con .team_content h6 {
    margin-bottom: 12px;
}
.team-con .team_content h2 {
    margin-bottom: 50px;
}
.team-con .team-box {
    position: relative;
    text-align: center;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box figure { 
    width: 314px;
    height: 314px;
    margin: 0 auto 30px;
    border-radius: 100%;
    overflow: hidden;
}
.team-con .team-box figure img {
    width: 314px;
    height: 314px;
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box h4 {
    margin-bottom: 8px;
}
.team-con .team-box span {
    display: block;
    margin-bottom: 26px;
}
.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box i {
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.team-con .team-box li:hover {
    transform: translateY(-5px);
}
.team-con .team-box li:first-child {
    margin-left: 0;
}
.team-con .team-box li:last-child {
    margin-right: 0;
}
.team-con .team-box:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}

/* Contact */

.contact-con::before,
.contact-con::after {
    content: "";
    width: 62%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/contact-leftbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.contact-con::after {
    width: 55%;
    right: 0;
    left: unset;
    background-image: url(../images/contact-rightbackground.jpg);
    border-radius: 0 0 0 300px;
}
.contact-con .contact-rightimage {
    position: absolute;
    right: 0;
    top: 190px;
    z-index: 1;
}
.contact-con .contact-rightimage img {
    opacity: 5%;
}
.contact-con .contact_wrapper {
    display: none;
}
.contact-con .contact_content{
    padding: 125px 0 130px 45px;
    position: relative;
    z-index: 1;
}
.contact-con .contact_content h6{
    margin-bottom: 12px;
    color: var(--e-global-color-accent);
}
.contact-con .contact_content h2{
    margin-bottom: 50px;
}
.contact-con .contact_content .form-group{
    margin-bottom: 26px;
}
.contact-con .contact_content .input1 {
    float: left;
    margin-right: 14px;
}
.contact-con .contact_content input,
.contact-con .contact_content select {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    width: 240px;
    padding: 10px 10px 10px 20px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    font-family: "Archivo", serif;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.contact-con .contact_content select {
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 90.3% 23px !important;
    background-image: url(../images/dropdown-arrow.png) !important;
}
.contact-con .contact_content select option{
    color: var(--e-global-color-text);
}
.contact-con .contact_content input:focus,
.contact-con .contact_content select:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-secondary);
}
.contact-con .contact_content .time {
    position: relative;
}
.contact-con .contact_content .time i {
    display: none;
}
/* Firefox-specific CSS */
@-moz-document url-prefix() {
    .contact-con .contact_content .time i {
        font-size: 13px;
        top: 20px;
        right: 12px;
        position: absolute;
        color: var(--e-global-color-text);
        display: block;
    }
}
.contact-con .contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 20px 39px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
    width: 100%;
    outline: none;
    border-style: none;
}
.contact-con .contact_content .submit_now:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.contact-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 22px;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.contact-con .contact_content .submit_now:hover i {
    color: var(--e-global-color-secondary);
}
.contact-con .contact_content input::placeholder{
    color: var(--e-global-color-text);
}
/* Specific styles for Firefox */
@-moz-document url-prefix() {
    .contact-con .contact_content select:invalid {
        color: var(--e-global-color-text);
    }
}
.contact-con .contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red);
}

/* Testimonial */

.testimonial-con{
    padding: 135px 0 200px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.testimonial-con .testimonial_content h6{
    margin-bottom: 12px;
}
.testimonial-con .testimonial_content h2{
    margin-bottom: 50px;
}
.testimonial-con .testimonial-sideimage {
    position: absolute;
    top: 0;
    left: -20px;
}
.testimonial-con .carousel-inner{
    width: 730px;
    margin: 0 auto;
}
.testimonial-con .testimonial-box ul {
    margin-bottom: 20px;
}
.testimonial-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial-con .testimonial-box ul li i {
    font-size: 16px;
    line-height: 16px;
    color: var(--e-global-color-star-yellow);
}
.testimonial-con .testimonial-box p{
    line-height: 30px;
    margin-bottom: 28px;
    color: var(--e-global-color-text);
}
.testimonial-con .testimonial-box .lower_content{
    margin-bottom: 45px;
}
.testimonial-con .testimonial-box .name{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    color: var(--e-global-color-secondary);
    font-family: "Lexend Deca", serif;
}
.testimonial-con .testimonial-box .review{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial-con .carousel-indicators {
    margin: 0;
}
.testimonial-con .carousel-indicators li {
    opacity: 1;
    width: 60px;
    background: none;
    text-indent: 1px;
    margin: 0 10px;
}
.testimonial-con .carousel-indicators li figure {
    border-radius: 100%;
    position: relative;
    width: 74px;
    height: 74px;
    line-height: 70px;
    text-align: center;
    border: 1px solid transparent;
}
.testimonial-con .carousel-indicators li img {
    border-radius: 100%;
    width: 60px;
}
/* Specific styles for Firefox */
@-moz-document url-prefix() {
    .testimonial-con .carousel-indicators li img {
        position: relative;
        right: 1px;
    }
}
.testimonial-con .carousel-indicators .active figure {
    border: 1px solid var(--e-global-color-accent);
}
.testimonial-con .pagination_outer{
    position: relative;
}
.testimonial-con .carousel-control-prev,
.testimonial-con .carousel-control-next{
    opacity: 1;
}
.testimonial-con .carousel-control-prev i,
.testimonial-con .carousel-control-next i{
    font-size: 18px;
    top: 18px;
    position: absolute;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}
.testimonial-con .carousel-control-prev i{
    left: 275px;
}
.testimonial-con .carousel-control-next i{
    right: 260px;
}
.testimonial-con .carousel-control-prev i:hover,
.testimonial-con .carousel-control-next i:hover{
    color: var(--e-global-color-dark-blue) !important;
}

/* Faq */

.faq-con {
    padding: 135px 0 200px;
}
.faq-con .faq_content h6 {
    margin-bottom: 12px;
}
.faq-con .faq_content h2 {
    margin-bottom: 36px;
}
.faq-con h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
}
.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%);
}
.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}
.faq-con .accordion-card .btn-link h4 {
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed h4 {
    color: var(--e-global-color-secondary);
}
.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-accent);
}
.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}
.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-con .accordian-inner .card-header a {
    padding: 20px 45px 20px 20px;
}
.faq-con .accordian-inner .card-body {
    padding: 0 20px 20px;
}
.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}
.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-con .accordion-card .btn-link:before {
    content: "\f062";
    font-size: 15px;
    top: 21px;
    right: 24px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-dark-blue);
}
.faq-con .faq_wrapper .faq-image {
    position: relative;
    top: 0;
    right: 0;
    text-align: right;
}
.faq-con .faq_wrapper .faq-image img {
    border-radius: 25px;
}
.faq-con .faq_wrapper .faq-circle {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: -1;
}

/* Footer */

.footer-con{
    background-color: var(--e-global-color-dark-blue);
}
.footer-con .footer-leftimage{
    position: absolute;
    left: 0;
    top: 78px;
}
.footer-con .footer-leftimage img{
    opacity: 5%;
}
.footer-con .upper_portion {
    padding: 40px 62px;
    margin-top: -70px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--e-global-color-accent);
}
.footer-con .upper_portion .form-group {
    display: flex;
    align-items: center;
}
.footer-con .upper_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 16px 28px;
    margin-right: 16px;
    width: 449px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border-radius: 8px;
    border: 1px solid transparent;
    overflow: visible;
    outline: none;
}
.footer-con .upper_portion input:focus {
    border: 1px solid var(--e-global-color-secondary);
}
.footer-con .upper_portion button {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    width: 170px;
    padding: 17px 27px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
    border-radius: 8px;
    position: relative;
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.footer-con .upper_portion button i {
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-white);
}
.footer-con .upper_portion button:hover {
    background-color: var(--e-global-color-secondary);
}
.footer-con .middle_portion{
    padding: 100px 45px 95px;
}
.footer-con .middle_portion .logo-content{
    margin-top: 4px;
}
.footer-con .middle_portion .footer-logo {
    margin-bottom: 24px;
    display: inline-block;
}
.footer-con .middle_portion .footer-logo img {
    width: 150px;
}
.footer-con .middle_portion .logo-content p {
    margin-bottom: 30px;
    color: var(--e-global-color-grayish-blue);
}
.footer-con .middle_portion .social-icons li {
    display: inline-block;
    margin: 0 10px;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons li:first-child {
    margin-left: 0;
}
.footer-con .middle_portion .social-icons li:last-child {
    margin-right: 0;
}
.footer-con .middle_portion .social-icons i {
    font-size: 14px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons a:hover i{
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion h5 {
    margin-bottom: 26px;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion .links{
    padding-left: 75px;
}
.footer-con .middle_portion .links li {
    margin-bottom: 3px;
}
.footer-con .middle_portion li:last-child {
    margin-bottom: 0 !important;
}
.footer-con .middle_portion .links li i {
    font-size: 10px;
    top: -2px;
    position: relative;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion .links li a {
    font-size: 14px;
    line-height: 14px;
    padding-left: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--e-global-color-grayish-blue);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .links li a:hover {
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion .timing {
    padding-left: 54px;
}
.footer-con .middle_portion .timing li {
    margin-bottom: 10px;
}
.footer-con .middle_portion .timing p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--e-global-color-grayish-blue);
}
.footer-con .middle_portion .timing span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion .contact{
    padding-left: 38px;
}
.footer-con .middle_portion .contact .text {
    position: relative;
    margin-bottom: 16px;
    padding-left: 32px;
    display: inline-block;
}
.footer-con .middle_portion .contact a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-grayish-blue);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .contact i {
    font-size: 14px;
    left: 1px;
    top: 7px;
    position: absolute;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .contact li a:hover {
    color: var(--e-global-color-accent);
}
.footer-con .copyright p{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
    color: var(--e-global-color-grayish-blue) !important;
    border-top: 1px solid rgb(255 255 255 / 15%);
}
.footer-con .footer-contactimage{
    position: absolute;
    right: 180px;
    bottom: 80px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.footer-con .footer-contactimage:hover{
    transform: translateY(-5px);
}
#fixed-form-container{
    position: absolute;
    bottom: 6px;
    right: 0;
    width: 25%;
    text-align: center;
    margin: 0;
    z-index: 1;
}
#fixed-form-container .body{
    width: 290px;
    right: -30px;
    top: -175px;
    padding: 30px 20px;
    z-index: 1;
    text-align: center;
    border-radius: 8px;
    background-color: #1d537a;
    position: relative;
    display: none;
}
#fixed-form-container .body input,
#fixed-form-container .body textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 45px;
    padding: 12px 18px;
    margin-bottom: 15px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: none;
    border-radius: 8px;
    width: 100%;
    overflow: visible;
    outline: none;
}
#fixed-form-container .body textarea {
    height: 118px;
    border-radius: 8px;
    resize: none;
    outline: none;
    overflow: auto;
}
#fixed-form-container .body input:focus,
#fixed-form-container .body textarea:focus {
    box-shadow: 1px 1px 57px rgb(239 218 199 / 24%);
}
#fixed-form-container .body .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 12px 25px;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
    box-shadow: none;
    border: none;
    outline: none;
}
#fixed-form-container .body .submit_now:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
#fixed-form-container .body .submit_now i {
    font-size: 12px;
    margin-left: 18px;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
#fixed-form-container .body .submit_now:hover i{
    color: var(--e-global-color-white);
}

/* Home 2 */

/* Banner */

.banner2-con {
    padding: 172px 0 350px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url(../images/banner2-backgroundimage.png);
}
.banner2-con .banner-leftimage {
    position: absolute;
    left: 0;
    top: 170px;
}
.banner2-con .banner-leftimage img {
    opacity: 10%;
}
.banner2-con .banner_content{
    padding-right: 130px;
    position: relative;
    z-index: 1;
}
.banner2-con .banner_content h1{
    font-size: 74px;
    line-height: 78px;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_content h1 span{
    color: var(--e-global-color-dark-blue);
}
.banner2-con .banner_content p{
    margin-bottom: 36px;
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_content .primary_btn {
    padding: 20px 25px;
    margin-right: 22px;
}
.banner2-con .banner_content .secondary_btn {
    padding: 20px 30px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.banner2-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner2-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.banner2-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}

/* About */

.about2-con {
    padding: 10px 0 140px;
}
.about2-con .about_wrapper .about-image1 {
    position: relative;
    top: 0;
    left: 0;
}
.about2-con .about_wrapper .about-image2 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.about2-con .about_wrapper .about-image2 img {
    border-radius: 100%;
    border: 6px solid var(--e-global-color-white);
}
.about2-con .about_content {
    padding: 0 50px;
}
.about2-con .about_content h6{
    margin-bottom: 14px;
}
.about2-con .about_content h2{
    margin-bottom: 22px;
}
.about2-con .about_content .text1{
    margin-bottom: 15px;
}
.about2-con .about_content .text2{
    margin-bottom: 36px;
}
.about2-con .about_content .about_button,
.about2-con .about_content .phone_wrapper {
    display: flex;
    align-items: center;
}
.about2-con .about_content .primary_btn {
    padding: 20px 32px;
    margin-right: 25px;
}
.about2-con .about_content .phone_content {
    padding-left: 25px;
}
.about2-con .about_content span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
    color: var(--e-global-color-secondary);
}
.about2-con .about_content .number {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.about2-con .about_content .number:hover {
    color: var(--e-global-color-accent);
}

/* Service */

.service2-con {
    padding: 125px 0 195px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.service2-con .service_content h6{
    margin-bottom: 14px;
}
.service2-con .service_content h2{
    margin-bottom: 45px;
}
.service2-con .owl-stage-outer {
    padding-left: 2px;
}
.service2-con .owl-stage {
    display: flex;
}
.service2-con .owl-item {
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.service2-con .owl-item:hover {
    border-bottom: 2px solid var(--e-global-color-dark-blue);
}
.service2-con .service-box .image img{
    width: 100% !important;
    border-radius: 15px 15px 0 0;
}
.service2-con .service-box .icon {
    width: 97px;
    height: 97px;
    line-height: 97px;
    bottom: -45px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    background-color: var(--e-global-color-dark-blue);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.8s ease-in-out;
}
.service2-con .service-box:hover .icon {
    transform: translateY(-5px);
}
.service2-con .service-box .lower_portion {
    padding: 70px 55px 30px;
}
.service2-con .service-box h5 {
    margin-bottom: 8px;
}
.service2-con .service-box p {
    margin-bottom: 20px;
}
.service2-con .service-box .arrow {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service2-con .service-box .arrow i {
    font-size: 10px;
    margin-left: 12px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service2-con .service-box .arrow:hover {
    color: var(--e-global-color-secondary);
}
.service2-con .service-box .arrow:hover i {
    color: var(--e-global-color-secondary);
}
.service2-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.service2-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 44px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.service2-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #dde9f1;
}
.service2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-accent);
}
.service2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-accent);
}
.service2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Statistic */

.statistic2-con .statistic-box .icon{
    width: 83px;
    height: 83px;
    line-height: 83px;
    min-height: auto !important;
    margin: 0 auto 30px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--e-global-color-dark-blue);
}

/* Contact */

.contact2-con {
    padding: 0 !important;
    overflow: hidden;
    background-color: var(--e-global-color-light-grayish-blue) !important;
}
.contact2-con::before,
.contact2-con::after {
    display: none;
}
.contact2-con .contact_wrapper {
    display: block;
}
.contact2-con .contact_wrapper .contact-image1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.contact2-con .contact_wrapper .contact-image2 {
    position: absolute;
    left: -30px;
    top: 140px;
}
.contact2-con .contact_content {
    padding: 146px 0 150px 45px !important;
}
.contact2-con .contact_content h6 {
    color: var(--e-global-color-dark-blue);
}

/* Case */

.case2-con {
    padding-bottom: 195px !important;
}
.case2-con .owl-stage-outer {
    padding-left: 2px;
}
.case2-con .owl-stage {
    display: flex;
}
.case2-con .case-box {
    margin-bottom: 0 !important;
}
.case2-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.case2-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 44px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.case2-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #dde9f1;
}
.case2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-accent);
}
.case2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-accent);
}
.case2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Help */

.help2-con {
    padding: 170px 0 175px;
    background-color: var(--e-global-color-black);
}
.help2-con::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 50%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/help2-backgroundimage.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.help2-con .help_content h6 {
    margin-bottom: 18px;
    color: var(--e-global-color-accent);
}
.help2-con .help_content h2 {
    line-height: 54px;
    margin-bottom: 42px;
}
.help2-con .help_content .primary_btn {
    padding: 20px 25px;
    margin-right: 15px;
}
.help2-con .help_content .secondary_btn {
    padding: 20px 30px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.help2-con .help_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.help2-con .help_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.help2-con .help_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.help2-con .help_video .video-icon {
    position: absolute;
    top: -45px;
    right: 0;
    text-align: right;
    display: inline-block;
}
.help2-con .help_video .icon {
    height: 100px;
    width: 100px;
    line-height: 92px;
    position: relative;
    text-align: center;
    background-color: transparent;
    border: 2px solid var(--e-global-color-white);
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
}
.help2-con .help_video .icon:hover {
    transform: translateY(-5px);
}

/* Testimonial */

.testimonial2-con {
    padding: 135px 0 205px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.testimonial2-con .testimonial_content h6{
    margin-bottom: 14px;
}
.testimonial2-con .testimonial_content h2{
    margin-bottom: 40px;
}
.testimonial2-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial2-con .owl-stage {
    display: flex;
}
.testimonial2-con .owl-item {
    padding: 44px 40px;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-dark-blue);
    transition: all 0.8s ease-in-out;
}
.testimonial2-con .owl-item:hover {
    border-bottom: 2px solid var(--e-global-color-accent);
}
.testimonial2-con .testimonial-box {
    width: 100%;
    display: flex;
}
.testimonial2-con .testimonial-box .testimonial-personimage {
    width: 30%;
}
.testimonial2-con .testimonial-box .testimonial-personimage img {
    border-radius: 100%;
}
.testimonial2-con .testimonial-box .content {
    width: 100%;
    padding-left: 10px;
    display: inline-block;
}
.testimonial2-con .testimonial-box p {
    margin-bottom: 10px;
}
.testimonial2-con .testimonial-box ul {
    margin-bottom: 10px;
}
.testimonial2-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial2-con .testimonial-box ul li i {
    font-size: 14px;
    line-height: 14px;
    color: var(--e-global-color-star-yellow);
}
.testimonial2-con .testimonial-box .name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    display: block;
    font-family: "Lexend Deca", serif;
    color: var(--e-global-color-secondary);
}
.testimonial2-con .testimonial-box .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial2-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.testimonial2-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 54px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial2-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #dde9f1;
}
.testimonial2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-accent);
}
.testimonial2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-accent);
}
.testimonial2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Article */

.article-con {
    padding: 135px 0 210px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.article-con .article_content h6 {
    margin-bottom: 14px;
}
.article-con .article_content h2 {
    margin-bottom: 42px;
}
.article-con .article-bigbox {
    display: block !important;
    margin-bottom: 0 !important;
}
.article-con .article-bigbox .article-image {
    width: 100% !important;
}
.article-con .article-bigbox .article-image img {
    border-radius: 15px 15px 0 0 !important;
}
.article-con .article-bigbox .box-content {
    padding: 35px !important;
}
.article-con .article-bigbox .box-content h5 {
    font-size: 22px !important;
    line-height: 24px !important;
}
.article-con .article-box {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
}
.article-con .article-box:last-child {
    margin-bottom: 0;
}
.article-con .article-box .article-image {
    width: 78%;
    margin-bottom: 0;
}
.article-con .article-box .article-image img {
    border-radius: 15px 0 0 15px;
}
.article-con .article-box .box-content {
    width: 100%;
    padding-right: 35px;
}
.article-con .article-box .box-content .content,
.article-con .article-box .box-content .content .admin,
.article-con .article-box .box-content .content .calendar{
    display: flex;
    align-items: center;
}
.article-con .article-box .box-content .content {
    margin-bottom: 15px;
}
.article-con .article-box .box-content .content span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.article-con .article-box .box-content .content img {
    margin-right: 8px;
}
.article-con .article-box .box-content .content .admin {
    margin-right: 30px;
}
.article-con .article-box .box-content h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: all 0.8s ease-in-out;
}
.article-con .article-box .box-content h5:hover {
    color: var(--e-global-color-accent);
}
.article-con .article-box .box-content .arrow {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.article-con .article-box .box-content .arrow i {
    font-size: 10px;
    margin-left: 12px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.article-con .article-box .box-content .arrow:hover {
    color: var(--e-global-color-accent);
}
.article-con .article-box .box-content .arrow:hover i {
    color: var(--e-global-color-accent);
}

/* Home 3 */

/* Header */

.top-bar-con3 {
    background-color: var(--e-global-color-dark-blue);
}
.top-bar-con3 .top-bar-box {
    border-bottom: none;
}
.top-bar-con3 .top-bar-box .info a,
.top-bar-con3 .top-bar-box .info p,
.top-bar-con3 .top-bar-box .social-icons i {
    color: var(--e-global-color-white);
}

/* Banner */

.banner3-con {
    padding: 240px 0 295px;
}
.banner3-con::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url(../images/banner3-backgroundimage.png);
}
.banner3-con .banner-icon {
    position: absolute;
    bottom: -74px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.banner3-con .banner_content{
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner3-con .banner_content h6{
    width: 300px;
    padding: 0 50px;
    margin: 0 auto 20px;
    position: relative;
    color: var(--e-global-color-white);
}
.banner3-con .banner_content h6::before,
.banner3-con .banner_content h6::after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 37px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner3-con .banner_content h6::after {
    left: unset;
    right: 0;
}
.banner3-con .banner_content h1{
    font-size: 74px;
    line-height: 78px;
    margin-bottom: 35px;
}
.banner3-con .banner_content h1 span {
    color: var(--e-global-color-accent);
}
.banner3-con .banner_content p{
    padding: 0 100px;
    margin-bottom: 38px;
}
.banner3-con .banner_content .primary_btn {
    padding: 20px 25px;
    margin-right: 15px;
}
.banner3-con .banner_content .secondary_btn {
    padding: 20px 30px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.banner3-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner3-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.banner3-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner3-con .owl-carousel .owl-item img {
    width: auto !important;
    display: inline-block;
}
.banner3-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 0 !important;
    position: relative;
    text-align: center;
    top: -244px;
}
.banner3-con .owl-carousel .owl-prev,
.banner3-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 67px;
    height: 67px;
    line-height: 67px !important;
    border-radius: 100% !important;
    position: absolute;
    text-align: center;
    color: var(--e-global-color-white) !important;
    background-color: rgb(255 255 255 / 15%) !important;
    border: none !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.banner3-con .owl-carousel .owl-prev{
    left: -420px;
}
.banner3-con .owl-carousel .owl-next{
    right: -420px;
}
.banner3-con .owl-carousel .owl-prev:hover,
.banner3-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}

/* Service */

.service3-con {
    padding: 190px 0 135px;
}
.service3-con .service-rightimage {
    position: absolute;
    right: 0;
    bottom: 140px;
}
.service3-con .service-rightimage img {
    opacity: 10%;
}
.service3-con .service_contentbox .box-top{
    padding-top: 35px;
}
.service3-con .service-box { 
    padding: 40px 30px 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-top: 2px solid var(--e-global-color-accent);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%);
    transition: all 0.8s ease-in-out;
}
.service3-con .service-box:hover {
    border-top: 2px solid var(--e-global-color-dark-blue);
}
.service3-con .service-box .icon {
    min-height: 60px;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.service3-con .service-box:hover .icon {
    transform: translateY(-5px);
}
.service3-con .service-box h5 {
    margin-bottom: 8px;
}
.service3-con .service-box p {
    margin-bottom: 20px;
}
.service3-con .service-box .arrow {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service3-con .service-box .arrow i {
    font-size: 10px;
    margin-left: 12px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-dark-blue);
}
.service3-con .service-box .arrow:hover {
    color: var(--e-global-color-secondary);
}
.service3-con .service-box .arrow:hover i {
    color: var(--e-global-color-secondary);
}
.service3-con .service_content {
    padding-left: 60px;
}
.service3-con .service_content h6{
    margin-bottom: 14px;
}
.service3-con .service_content h2{
    margin-bottom: 22px;
}
.service3-con .service_content .text1{
    margin-bottom: 15px;
}
.service3-con .service_content .text2{
    margin-bottom: 36px;
}
.service3-con .service_content .primary_btn {
    padding: 21px 42px;
}

/* Pricing */

.pricing3-con {
    background-color: var(--e-global-color-light-grayish-blue);
}
.pricing3-con .pricing-box {
    box-shadow: none;
}

/* Statistic */

.statistic-con{
    padding: 125px 0 140px;
    background-color: var(--e-global-color-white);
}
.statistic-con .statistic_content h6 {
    margin-bottom: 12px;
}
.statistic-con .statistic_content h2 {
    margin-bottom: 52px;
}
.statistic-con .statistic-box {
    width: 100%;
}
.statistic-con .statistic-box {
    padding: 45px 30px;
    text-align: center;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%);
    transition: all 0.8s ease-in-out;
}
.statistic-con .statistic-box:hover {
    border-bottom: 2px solid var(--e-global-color-dark-blue);
}
.statistic-con .statistic-box .icon{
    min-height: 58px;
    margin-bottom: 30px;
    transition: all 0.8s ease-in-out;
}
.statistic-con .statistic-box:hover .icon{
    transform: translateY(-5px);
}
.statistic-con .statistic-box .number,
.statistic-con .statistic-box .plus {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Lexend Deca", serif;
    color: var(--e-global-color-secondary);
}
.statistic-con .statistic-box .plus {
    top: 0;
    left: 0;
    position: relative;
}
.statistic-con .statistic-box .text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-text);
}

/* Help */

.help3-con {
    padding: 170px 0 175px;
    background-color: var(--e-global-color-black);
}
.help3-con::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 55%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/help3-backgroundimage.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.help3-con .help3-leftcircle {
    position: absolute;
    top: 100px;
    left: 0;
}
.help3-con .help3-rightcircle {
    position: absolute;
    bottom: 100px;
    right: 0;
}
.help3-con .help_content {
    padding: 0 30px;
}
.help3-con .help_content h6 {
    margin-bottom: 18px;
    color: var(--e-global-color-accent);
}
.help3-con .help_content h2 {
    line-height: 54px;
    margin-bottom: 42px;
}
.help3-con .help_content .primary_btn {
    padding: 20px 25px;
    margin-right: 15px;
}
.help3-con .help_content .secondary_btn {
    padding: 20px 30px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.help3-con .help_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.help3-con .help_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.help3-con .help_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}

/* Team */

.team3-con {
    padding: 135px 0 140px;
}
.team3-con .team_content h6 {
    margin-bottom: 12px;
}
.team3-con .team_content h2 {
    margin-bottom: 50px;
}
.team3-con .team-box {
    position: relative;
    text-align: center;
    transition: all 0.8s ease-in-out;
}
.team3-con .team-box figure {
    margin: 0 auto 30px;
    overflow: hidden;
}
.team3-con .team-box figure img {
    border-radius: 15px;
    transition: all 0.8s ease-in-out;
}
.team3-con .team-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}
.team3-con .team-box span {
    display: block;
    margin-bottom: 26px;
}
.team3-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.team3-con .team-box i {
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.team3-con .team-box li:hover {
    transform: translateY(-5px);
}
.team3-con .team-box li:first-child {
    margin-left: 0;
}
.team3-con .team-box li:last-child {
    margin-right: 0;
}
.team3-con .team-box:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}

/* Testimonial */

.testimonial3-con{
    padding: 135px 0 220px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.testimonial3-con .testimonial_content h6 {
    margin-bottom: 14px;
}
.testimonial3-con .testimonial_content h2 {
    margin-bottom: 40px;
}
.testimonial3-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial3-con .owl-stage {
    display: flex;
}
.testimonial3-con .owl-item {
    padding: 48px 40px 40px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.testimonial3-con .owl-item:hover {
    border-bottom: 2px solid var(--e-global-color-dark-blue);
}
.testimonial3-con .testimonial-box .testimonial-quoteimage {
    margin-bottom: 20px;
}
.testimonial3-con .testimonial-box p {
    margin-bottom: 24px;
}
.testimonial3-con .review-content {
    padding-left: 16px;
    display: flex;
}
.testimonial3-con .review-content .testimonial-personimage {
    position: relative;
    top: 2px;
    left: -15px;
}
.testimonial3-con .review-content .testimonial-personimage img {
    width: 54px !important;
    border-radius: 100px;
}
.testimonial3-con .testimonial-box ul {
    margin-bottom: 6px;
}
.testimonial3-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial3-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: var(--e-global-color-star-yellow);
}
.testimonial3-con .review-content .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    color: var(--e-global-color-secondary);
}
.testimonial3-con .review-content .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial3-con .owl-carousel .owl-item img {
    width: auto !important;
}
.testimonial3-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 52px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d8e3eb;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-accent);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-accent);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Faq */

.faq3-con {
    padding-bottom: 200px !important;
}

/* Sub banner */

.sub_banner .sub_banner_con {
    padding: 128px 0 140px;
    background: var(--e-global-color-black);
}
.sub_banner .sub_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 48%;
    position: absolute;
    background-image: url(../images/subbanner-backgroundimage.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_banner .sub_banner_con h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 25px;
}
.sub_banner .sub_banner_con p {
    margin-bottom: 38px;
}
.sub_banner .sub_banner_con .box {
    padding: 10px 24px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 40%);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}
.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    margin: 0 15px;
    display: inline-block;
    color: var(--e-global-color-white);
}

/* Contact Page */

/* Contact Info Form */

.contact-info-form-con {
    padding: 135px 0 145px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.contact-info-form-con .contact-box{
    padding: 35px 42px;
    margin-bottom: 30px;
    border-radius: 20px;
    display: inline-block;
    background: var(--e-global-color-white);
    border-left: 2px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
    width: 100%;
}
.contact-info-form-con .contact-box:hover {
    border-left: 2px solid var(--e-global-color-dark-blue);
}
.contact-info-form-con .contact-box:last-child {
    margin-bottom: 0;
}
.contact-info-form-con .contact-box .icon{
    float: left;
    width: 25%;
    margin: 0;
    transition: all 0.8s ease-in-out;
}
.contact-info-form-con .contact-box:hover .icon{
    transform: translateY(-5px);
}
.contact-info-form-con .contact-box .box-content{
    position: relative;
    display: inline-block;
    width: 75%;
}
.contact-info-form-con .contact-box h5{
    margin-bottom: 10px;
}
.contact-info-form-con .contact-box .box-content a {
    display: inline-block;
    color: var(--e-global-color-text);
    transition: all 0.8s ease-in-out;
}
.contact-info-form-con .contact-box .box-content a:hover {
    color: var(--e-global-color-accent);
}
.contact-info-form-con .contact_form {
    padding-left: 30px;
}
.contact-info-form-con .contact_form h6{
    margin-bottom: 12px;
}
.contact-info-form-con .contact_form h2{
    margin-bottom: 26px;
}
.contact-info-form-con .contact_form .form-group{
    margin-bottom: 24px;
}
.contact-info-form-con .contact_form .input1 {
    float: left;
    margin-right: 18px;
}
.contact-info-form-con .contact_form input,
.contact-info-form-con .contact_form textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    width: 332px;
    padding: 10px 10px 10px 20px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    font-family: "Archivo", serif;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.contact-info-form-con .contact_form textarea {
    height: 176px;
    width: 100% !important;
    resize: none;
    outline: none;
    overflow: auto;
}
.contact-info-form-con .contact_form .message {
    margin-bottom: 26px;
}
.contact-info-form-con .contact_form input:focus,
.contact-info-form-con .contact_form textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-secondary);
}
.contact-info-form-con .contact_form .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 20px 39px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
    width: 100%;
    outline: none;
    border-style: none;
}
.contact-info-form-con .contact_form .submit_now:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-dark-blue);
}
.contact-info-form-con .contact_form .submit_now i {
    font-size: 12px;
    margin-left: 22px;
    color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.contact-info-form-con .contact_form .submit_now:hover i {
    color: var(--e-global-color-white);
}
.contact-info-form-con .contact_form input::placeholder,
.contact-info-form-con .contact_form textarea::placeholder{
    color: var(--e-global-color-text);
}
.contact-info-form-con .contact_form form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red);
}

/* Map */

.map-con {
    overflow: hidden;
    margin-bottom: -7px;
}
.map-con iframe {
    width: 100%;
    height: 560px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}

/* Faq Page */

/* Faq */

.faqpage-con {
    padding-bottom: 140px;
    background-color: var(--e-global-color-white);
}

/* Contact */

.faqcontact-con {
    padding: 135px 0 145px;
    background-color: var(--e-global-color-light-grayish-blue) !important;
}
.faqcontact-con::before,
.faqcontact-con::after {
    display: none;
}
.faqcontact-con .contact_wrapper {
    display: block;
}
.faqcontact-con .contact_wrapper .contact-image {
    position: relative;
    top: 0;
    left: 0;
}
.faqcontact-con .contact_wrapper .contact-image img {
    border-radius: 15px;
}
.faqcontact-con .contact_content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.faqcontact-con .contact_content h6 {
    color: var(--e-global-color-dark-blue);
}
.faqcontact-con .contact_content .submit_now:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.faqcontact-con .contact_content .submit_now:hover i {
    color: var(--e-global-color-white);
}

/* Team */

.faqteam-con {
    padding-bottom: 210px;
}

/* Case Studies Page */

/* Case */

.case-con {
    padding: 135px 0 100px;
}
.case-con .case_content h6 {
    margin-bottom: 12px;
}
.case-con .case_content h2 {
    margin-bottom: 45px;
}
.case-con .case-box {
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.8s ease-in-out;
}
.case-con .case-box .case-image img {
    border-radius: 15px;
}
.case-con .case-box .content {
    margin: 15px;
    width: 91%;
    padding: 15px 85px 15px 15px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    position: absolute;
    background-color: var(--e-global-color-white);
}
.case-con .case-box .content h5 {
    margin-bottom: 4px;
}
.case-con .case-box .content i {
    font-size: 16px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    top: 14%;
    right: 15px;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
    transition: all 0.8s ease-in-out;
}
.case-con .case-box:hover .content i {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}

/* Choose */

.casechoose-con {
    padding: 135px 0 140px;
}
.casechoose-con .choose-lefttopimage {
    position: absolute;
    left: 0;
    top: 0;
}
.casechoose-con .image img {
    opacity: 15%;
}
.casechoose-con::before,
.casechoose-con::after {
    content: "";
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/choose-rightbackground.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
.casechoose-con::after {
    width: 50%;
    left: 0;
    right: unset;
    background-image: url(../images/contact-rightbackground.jpg);
    background-position: top;
    z-index: -1;
}
.casechoose-con .choose_content h6{
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.casechoose-con .choose_content h2{
    margin-bottom: 22px;
}
.casechoose-con .choose_content .text{
    margin-bottom: 26px;
}
.casechoose-con .choose_content .propertise {
    margin-bottom: 28px;
}
.casechoose-con .choose_content ul{
    display: inline-block;
}
.casechoose-con .choose_content .list1{
    padding-right: 30px;
}
.casechoose-con .choose_content ul li {
    position: relative;
    margin-bottom: 12px;
}
.casechoose-con .choose_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.casechoose-con .choose_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.casechoose-con .choose_content .primary_btn {
    padding: 20px 32px;
}
.casechoose-con .choose_content .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.casechoose-con .choose_content .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}
.casechoose-con .choose_wrapper .choose-rightbackground{
    display: none;
}

/* Pricing Page */

/* About */

.pricingabout-con {
    padding: 130px 0;
    background-color: var(--e-global-color-dark-blue);
}
.pricingabout-con::before {
    content: "";
    width: 52%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/pricingabout-rightbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.pricingabout-con::after {
    content: "";
    width: 48%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/contact-rightbackground.jpg);
}
.pricingabout-con .about_content{
    z-index: 1;
}
.pricingabout-con .content {
    position: relative;
    padding: 74px 88px 80px;
    border-radius: 15px;
    background-color: var(--e-global-color-white);
}
.pricingabout-con .content::before {
    content: "";
    width: 346px;
    height: 346px;
    left: -100px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    border-radius: 100%;
    background-color: #0e4369;
    z-index: -1;
}
.pricingabout-con .about_content h6{
    margin-bottom: 14px;
}
.pricingabout-con .about_content h2{
    margin-bottom: 22px;
}
.pricingabout-con .about_content .text{
    margin-bottom: 26px;
}
.pricingabout-con .about_content .propertise {
    margin-bottom: 28px;
}
.pricingabout-con .about_content ul{
    display: inline-block;
}
.pricingabout-con .about_content .list1{
    padding-right: 30px;
}
.pricingabout-con .about_content ul li {
    position: relative;
    margin-bottom: 12px;
}
.pricingabout-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.pricingabout-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.pricingabout-con .about_content .primary_btn {
    padding: 20px 32px;
}
.pricingabout-con .about_wrapper{
    display: none;
}

/* Service Page */

/* Service */

.servicepage-con {
    padding-bottom: 110px;
}
.servicepage-con .service-box { 
    padding: 50px 30px 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background-color: var(--e-global-color-white);
    border-top: 2px solid var(--e-global-color-accent);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 2%);
    transition: all 0.8s ease-in-out;
}
.servicepage-con .service-box:hover {
    border-top: 2px solid var(--e-global-color-dark-blue);
}

/* About Page */

/* About */

.aboutpage-con {
    padding: 140px 0;
}
.aboutpage-con .about_wrapper .about-image1 {
    position: relative;
    top: 0;
    left: 0;
}
.aboutpage-con .about_wrapper .about-image2 {
    position: absolute;
    top: 75px;
    right: 40px;
}
.aboutpage-con .about_wrapper .image img {
    border-radius: 25px;
}
.aboutpage-con .about-box {
    left: 240px;
    top: 155px;
    position: absolute;
    padding: 32px 26px;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    background-color: var(--e-global-color-dark-blue);
}
.aboutpage-con .about-box * {
    color: var(--e-global-color-white);
}
.aboutpage-con .about-box img {
    display: block;
    margin: 0 auto 10px;
}
.aboutpage-con .about-box .number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    font-family: "Lexend Deca", serif;
}
.aboutpage-con .about-box .plus {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    top: 0;
    left: 0;
    position: relative;
    font-family: "Lexend Deca", serif;
}
.aboutpage-con .about-box .text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    display: block;
}
.aboutpage-con .about_content h6{
    margin-bottom: 14px;
}
.aboutpage-con .about_content h2{
    margin-bottom: 22px;
}
.aboutpage-con .about_content .text1{
    margin-bottom: 15px;
}
.aboutpage-con .about_content .text2{
    margin-bottom: 36px;
}
.aboutpage-con .about_content .primary_btn {
    padding: 20px 32px;
}

/* Review Page */

.review-con {
    padding-bottom: 250px;
}

/* Service Detail */

.service_detail {
    padding: 130px 0 120px;
    background-color: var(--e-global-color-light-grayish-blue);
}
.service_detail .main-box {
    position: relative;
}
.service_detail .main-box .image {
    margin-bottom: 30px;
}
.service_detail .main-box .image img {
    width: 100%;
    border-radius: 30px;
}
.service_detail .main-box h3 {
    font-size: 24px;
    line-height: 30px;
}
.service_detail .main-box p {
    margin-bottom: 10px;
}
.service_detail .main-box .text2 {
    margin-bottom: 20px;
}
.service_detail .main-box .list {
    margin-bottom: 20px;
}
.service_detail .main-box .list li {
    margin-bottom: 6px;
    padding-left: 28px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-text);
}
.service_detail .main-box .list li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 17px;
    top: 2PX;
    left: 0;
    border-radius: 100px;
    position: absolute;
    text-align: center;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-secondary);
}

.servicedetail-page {
    padding-bottom: 180px;
}

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.project_modal .modal.show .modal-dialog {
    transform: translate(0,0);
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}
.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}
.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.project_modal button.btn-close {
    border: 0;
    -webkit-appearance: none;
}
.project_modal button {
    text-transform: none;
    overflow: visible;
}
.project_modal .modal-header button i {
    color: var(--e-global-color-black);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.project_modal .fa-x:before {
    content: "\58";
}
.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}
.project_modal .blog-box-item {
    background: var(--e-global-color-white);
    overflow: hidden;
}
.project_modal .modal-body .blog-img{
    float: left;
    width: 100%;
}
.project_modal .modal-body .blog-img figure {
    position: relative;
}
.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}
.project_modal .modal-content .project_content{
    padding: 40px 0 40px 20px;
}
.project_modal .modal-content .project_content h4{
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}
.project_modal .modal-content .project_content .text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties{
    margin-bottom: 20px;
}
.project_modal .modal-content .project_content .properties ul{
    padding-left: 25px;
}
.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}
.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.project_modal .modal-content .project_content .primary_btn{
    padding: 20px 30px;
}
.project_modal .modal-content .project_content .primary_btn:hover{
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-blue);
}
.project_modal .modal-content .project_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page{
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-blue);
}
.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-dark-blue);
}
.error_page .error_content .back_home i{
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .back_home:hover i{
    color: var(--e-global-color-white);
}

/* Coming Soon */

.comingsoon_outer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-blue);
}
.comingsoon_outer .logo_outer{
    margin-bottom: 70px;
}
.comingsoon_outer .logo_outer img{
    width: 143px;
}
.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content h1 {
    font-size: 90px;
    line-height: 92px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}
.comingsoon_outer .sub_banner_content form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content .form-group{
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 14px 16px 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.comingsoon_outer .sub_banner_content button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 15px 30px 18px;
    height: 100%;
    top: 0;
    right: -5px;
    border-radius: 0 8px 8px 0;
    position: absolute;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-dark-blue);
}
.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-dark-blue);
    border: 1px solid var(--e-global-color-dark-blue);
}
.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}
.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}
.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}
.comingsoon_outer .sub_banner_content .social-icon a{
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 36px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-white);
    background: var(--e-global-color-dark-blue);
    border: 1px solid var(--e-global-color-dark-blue);
}

/* SEARCH FORM */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}
#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
}
#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border-top: none;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    outline: none;
    padding: 10px;
}
#search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    content: "\f00d";
    background-image: url('../images/close.html');
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
}
#search .close:hover {
    color: var(--e-global-color-accent);
    cursor: pointer;
    text-shadow: none;
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--e-global-color-accent);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/
/* add by arpit full blog.css page css */

a {
	outline: none;
	text-decoration: none;
	/* font-family: "Jost", sans-serif;  */
}

.sub-banner li {
	display: inline-block;
}

/* special classes for blog */

.padding-top {
	padding-top: 134px;
}

.padding-bottom {
	padding-bottom: 195px;
}

/*-------- BLOG PAGES ------------ */
.blog-banner-section {
	background: url(../images/review-bg.html) no-repeat center;
	background-size: cover;
	height: 498px;
	position: relative;
	text-align: center;
}

.blog-banner-section h1 {
	color: var(--e-global-color-primary);
}

.single-blog-box {
	width: 540px;
	border-radius: 15px;
    box-shadow: 0 6px 41px 6px rgba(0, 0, 0, 0.05);
    background: var(--e-global-color-white);
}
.single-blog-box figure img{
	border-radius: 15px 15px 0 0;
}

.single-blog-box:hover h4 a {
	color: var(--button-color);
}

.single-blog-outer-con {
	display: grid;
	gap: 50px 30px;
	margin-bottom: 70px;
	grid-template-columns: 48.6% 48.6%;
}

.single-blog-details {
	padding: 30px;
}

.single-blog-details .generic-btn2 a::before {
	bottom: -7px;
}

.single-blog-details h4 a {
	font-size: 20px;
	line-height: 26px;
	font-weight: 700;
	margin-bottom: 12px;
	/* font-family: "Merriweather", serif; */
	color: var(--e-global-color-secondary);
	transition: all 0.3s ease-in-out;
}

.single-blog-details ul li {
	font-size: 12px;
    line-height: 20px;
	padding-left: 20px;
    color: var(--e-global-color-text);
}

.single-blog-details ul li i {
	position: absolute;
	font-size: 14px;
	line-height: 16px;
	left: 0;
	top: 0;
	color: var(--e-global-color-dark-blue);
}

.single-blog-details p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 28px;
}

.single-blog-details ul {
	display: flex;
	gap: 20px;
}

/* .blog-tabs-section{
	padding-bottom: 170px !important;
} */

.blog-tabs-inner-section .nav-tabs a.nav-link {
	color: var(--e-global-color-text);
	font-size: 24px;
	border: none;
	padding: 13px 36px;
}

.blog-tabs-inner-section .nav-tabs a.nav-link:hover {
	color: var(--button-color);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active:hover {
	color: var(--e-global-color-primary);
}

/* .blog-tabs-inner-section .nav-tabs .nav-link.active {
	color: var(--primary-color);
	background-color: var(--button-color);
	border-radius: 0;
} */

.blog-tabs-inner-section .nav-tabs {
	border: 0;
	margin-bottom: 40px;
	gap: 10px;
	justify-content: space-evenly;
}

.blog-tabs-inner-section .nav-tabs .nav-item {
	margin: 0;
}

.blog-tabs-inner-section .pagination {
	margin-bottom: 0;
	justify-content: center;
	gap: 2px;
}

.blog-tabs-inner-section .pagination .page-link {
	padding: 11px 15px;
	margin-left: 0;
	font-size: 20px;
	line-height: 20px;
	color: #000;
	/* background-color: transparent; */
	border: none;
	font-weight: 600;
}

.blog-tabs-inner-section .pagination .page-link:hover {
	color: var(--button-color);
}

.blog-tabs-inner-section .pagination .page-link:focus {
	box-shadow: none;
}

.blog-tabs-inner-section .pagination .page-item.active .page-link {
	color: var(--e-global-color-secondary);
}

.blog-tabs-inner-section .pagination .page-item.active .page-link:hover {
	color: var(--e-global-color-white);
}

.blog-tabs-inner-section .pagination .page-link i {
	color: var(--e-global-color-text);
	font-size: 14px;
}
.pagination .page-item:not(.disabled):hover>.page-link i{
	color: var(--e-global-color-white);
}

.generic-btn2 a {
	font-size: 14px;
	letter-spacing: 1px;
	position: relative;
	font-weight: bold;
	color: var(--e-global-color-secondary);
	transition: all 0.3s ease-in-out;
}

.single-blog-box h4 a:hover {
	text-decoration: none;
	color: var(--e-global-color-dark-blue);
}

.generic-btn2 a::before {
	content: "";
	background: var(--e-global-color-secondary);
	width: 20px;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -9px;
	transition: all 0.3s ease-in-out;
}

.single-blog-details .generic-btn2 a:hover {
	color: var(--e-global-color-dark-blue);

}

.single-blog-details .generic-btn2 a:hover::before {
	background-color: var(--e-global-color-dark-blue);
}

.single-blog-details .generic-btn2 a::before {
	bottom: -7px;
}

.generic-btn2 a:hover {
	text-decoration: none;
}

.blog-tabs-inner-section .nav-tabs a.nav-link {
	color: var(--e-global-color-secondary);
    font-size: 20px;
    border: none;
	border-radius: 8px;
    padding: 12px 34px;
	transition: all 0.3s ease-in-out;
}

.blog-tabs-inner-section .nav-tabs a.nav-link:hover {
	color: var(--e-global-color-white);
	background-color: var(--e-global-color-dark-blue);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active {
	color: var(--e-global-color-white);
	background-color: var(--e-global-color-dark-blue);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active:hover {
	color: var(--e-global-color-white);
	background-color: var(--e-global-color-dark-blue);
}

/*=-*=-*=-*=-*=-*=-*= Single Post =-*=-*=-*=-*=-*=-*=/
/**************************************************/
.sidebar .widget,
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
.post-image img,
.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%;
	border: none
}

.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,
.sidebar .widget-categories ul li a,
.post-meta-category a {
	text-decoration: none;
	color: #ddd;
}

a.item-link {
	margin-top: 10px;
	display: inline-block
}

.sidebar .post-thumbnail-list,
#blog .post-item .post-meta-category,
#blog .post-item .post-meta-comments,
#blog .post-item .post-meta-date,
#blog .post-item.border .post-image,
.sidebar .widget-categories ul li {
	position: relative;
}

.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 {
	position: absolute;
}

.sidebar .post-thumbnail-entry>img,
.sidebar .post-thumbnail-entry,
.sidebar .widget {
	float: left;
}

.sidebar {
	font-size: 12px;
	position: relative;
	padding: 20px;
	/* z-index: 10; */
	border-radius: 15px;
	box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
}

.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;
	/* font-family: "Jost", sans-serif; */
	background: var(--e-global-color-white);
	border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 8px;
}

.widget-newsletter .form-control:focus{
	border: 1px solid var(--e-global-color-dark-blue);
}

.widget-newsletter .btn {
	font-weight: 600;
	height: 100%;
	padding: 8px 16px;
	border-radius: 0 8px 8px 0;
	background: var(--e-global-color-dark-blue);
	color: var(--e-global-color-white);
	border: 1px solid var(--e-global-color-dark-blue);
}

.widget-newsletter .btn:hover {
	background: var(--e-global-color-white);
	color: var(--e-global-color-dark-blue);
	border: 1px solid var(--e-global-color-dark-blue);
}

.sidebar .nav-tabs {
	margin-bottom: 30px;
	padding-bottom: 0;
}

.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: 6px;
	font-size: 14px;
}

.sidebar .widget .tabs li>a:hover {
	color: var(--e-global-color-dark-blue);
}

.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;
	border-radius: 8px;
}

.sidebar .post-thumbnail-entry img+.post-thumbnail-content {
	padding-left: 0;
}

.sidebar .post-thumbnail-list a {
	margin: -4px 0 0;
	display: block;
}

.sidebar .post-thumbnail-entry .post-category i,
.sidebar .post-thumbnail-entry .post-date i {
	margin-right: 2px;
	color: var(--button-color);
}

.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;
	color: var(--e-global-color-secondary);
}

.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: 13px;
	margin-bottom: 18px;
	color: var(--e-global-color-text);

}

.sidebar .widget-tweeter:not([data-avatar="true"]) li::before,
.sidebar .widget-twitter:not([data-avatar="true"]) li::before {
	content: "\f099";
	margin-left: -22px;
	font-family: 'Font Awesome 5 Brands';
}

.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: "\f101";
	left: 0;
	top: 10px;
    font-size: 10px;
	padding-top: 0;
	transition: all .3s ease;
	font-family: 'FontAwesome';
	transform: translate3d(0, -50%, 0);
	color: var(--e-global-color-dark-blue);
}

.sidebar .cat-count-span {
	float: right;
}

#blogslider .carousel-control-prev,
#blogslider .carousel-control-next {
	top: 50%;
	transform: translateY(-50%);
}

/* Blog Page */

.blogpage-section {
	position: relative;
	padding: 130px 0 180px;
	/* padding-bottom: 0 !important; */
	/* width: 100%;
	float: left; */
}

.blogpage-section .blog-box img{
	border-radius: 15px 15px 0 0 !important;
}
.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-white);
    margin-bottom: 32px;
    border-radius: 15px;
    /* z-index: 3; */
    box-shadow: 0 6px 41px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.blogpage-section .blog-box .lower-portion {
	padding: 20px;
	border-bottom: 1px solid rgb(0 0 0 / 15%);
}
.blogpage-section .blog-box .lower-portion .span-i-con{
	margin-bottom: 10px;
}
.blogpage-section .blog-box .lower-portion i {
	font-size: 15px;
	color: var(--e-global-color-dark-blue);
	margin-right: 2px;
}

.blogpage-section .blog-box .lower-portion .text-mr {
	margin-right: 20px;
	color: var(--e-global-color-text);
}

.blogpage-section .blog-box .lower-portion h5 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	/* font-family: "Merriweather", serif; */
	color: var(--e-global-color-secondary);
	position: relative;
	margin-bottom: 0;
	letter-spacing: 0;
	word-spacing: 0;
	transition: all 0.3s ease-in-out;
}

.blogpage-section .blog-box .lower-portion a {
	display: inline-block;
}

.blogpage-section .blog-box .lower-portion a:hover h5 {
	color: var(--e-global-color-dark-blue);
}

.blogpage-section .blog-box .button-portion {
	position: relative;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blogpage-section .blog-box .button-portion .date {
	display: inline-block;
}

.blogpage-section .blog-box .button-portion .button {
	display: inline-block;
}

.blogpage-section .blog-box .button-portion span {
	color: var(--e-global-color-text);
}

.blogpage-section .blog-box .button-portion .calendar-ml {
	font-size: 18px;
	color: var(--e-global-color-dark-blue);
	margin-right: 5px;
	margin-bottom: 28px;
}

.blogpage-section .blog-box .button-portion .read_more {
	font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    /* font-family: "Jost", sans-serif; */
    color: var(--e-global-color-white);
    background: var(--e-global-color-dark-blue);
    padding: 12px 18px 12px;
	border-radius: 8px;
	text-align: center;
	display: inline-block;
	transition: all 0.3s ease-in-out;
	border: none;
	overflow: visible;
	outline: none;
	/* border: 1px solid transparent; */
}

.button-portion .date i {
	color: var(--e-global-color-dark-blue);
	margin-right: 5px;
}

.blogpage-section .blog-box .button-portion .read_more:hover {
	color: var(--e-global-color-white);
	background: var(--e-global-color-secondary);
	/* border-color: var(--e-global-color-secondary); */
}

.blog-posts a {
	text-decoration: none;
}

/* Single Blog Page */


.singleblog-section .main-box {
    position: relative;
    background: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    padding: 15px 12px 40px;
    width: 104%;
    margin-left: -45px;
	border-radius: 15px;
    box-shadow: 0 6px 41px 6px rgba(0, 0, 0, 0.05);
}

.singleblog-section .main-box .singleblog-image1 {
	margin-bottom: 30px;
}

.singleblog-section .main-box .image1 img {
	border-radius: 15px;
}

.singleblog-section .main-box .content1 {
	margin-left: 0;
}

.singleblog-section .main-box .content1 h4 {
	margin-bottom: 18px;
}

.singleblog-section .main-box .content1 i {
	font-size: 14px !important;
	color: var(--e-global-color-dark-blue);
	margin-right: 4px;
	margin-bottom: 0;
}

.singleblog-section .main-box .content1 .calendar {
	font-size: 16px;
}

.singleblog-section .main-box .content1 span,
.singleblog-section .main-box .content1 .text-mr {
	font-size: 12px;
    line-height: 20px;
	margin-right: 10px;
}

.singleblog-section .main-box .content1 p {
	/* font-weight: 500; */
	margin-bottom: 30px;
}

.singleblog-section .main-box .content2 {
	background: var(--e-global-color-dark-blue);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.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: 500; */
	margin-bottom: 30px;
	margin-left: 0 !important;
}

.singleblog-section .main-box .singleblog-image2 {
	margin-bottom: 30px;
}

.singleblog-section .content4 {
	padding: 0 14px;
	margin-bottom: 50px;
}

.singleblog-section .content4 h4 {
	/* font-size: 22px;
	line-height: 30px; */
	margin-bottom: 14px;
}

.singleblog-section .content4 .tag li {
	display: contents;
}

.singleblog-section .content4 .tag .button {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	background: var(--e-global-color-dark-blue);
	color: #ffffff;
	border-radius: 8px;
    padding: 6px 18px 8px;
	display: inline-block;
	text-align: center;
	transition: all 0.3s ease-in-out;
	margin-right: 4px;
	/* border: 1px solid transparent; */
}

.singleblog-section .buttons {
	margin-bottom: 75px;
    padding: 0 15px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* border-bottom: 1px solid rgba(128, 141, 158, 15%); */
}

.singleblog-section .content4 .tag li:last-child {
	margin-right: 0;
}

.singleblog-section .content4 .tag .button:hover {
	background: var(--e-global-color-secondary);
	/* border-color: var(--e-global-color-secondary); */
	color: var(--e-global-color-white);
}

.singleblog-section .buttons .prev-text {
	left: 24px;
}

.singleblog-section .buttons .next-text {
	right: 0;
}

.singleblog-section .buttons .prev-text,
.singleblog-section .buttons .next-text {
	font-size: 14px;
	line-height: 14px;
    font-weight: 500;
    position: relative;
    top: -20px;
    color: var(--e-global-color-secondary);
	transition: all 0.3s ease-in-out;
}

.singleblog-section .buttons .prev,
.singleblog-section .buttons .next {
	position: relative;
	width: 56px;
	background-repeat: no-repeat;
	transition: all 0.3s ease-in-out;
}

.singleblog-section .buttons .prev {
	background-image: url(../images/single-blog-prev-image.png);
	left: 0px;
}

.singleblog-section .buttons .next {
	background-image: url(../images/single-blog-next-image.png);
	right: 0;
}


.singleblog-section .buttons .prev:hover .prev-text,
.singleblog-section .buttons .next:hover .next-text {
	color: var(--e-global-color-accent);
}
.singleblog-section .buttons .prev:hover {
	background-image: url(../images/single-blog-prev-imagehover.png);
}

.singleblog-section .buttons .next:hover {
	background-image: url(../images/single-blog-next-imagehover.png);
}


.singleblog-section .content4 .icon {
	position: relative;
}

.singleblog-section .content4 .icon h4 {
	float: right;
}

.singleblog-section .content4 .icon .social-icons {
	top: 45px;
	right: 0;
}

.singleblog-section .content4 .icon .social-icons ul {
	display: flex;
}

.singleblog-section .content4 .icon .social-icons ul li {
	margin: 0 8px;
	/* height: 40px;
	width: 40px; */
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--e-global-color-dark-blue);
	border-radius: 100%;
	transition: .3s ease-in-out;
	/* border: 1px solid transparent; */
}

.singleblog-section .content4 .icon .social-icons ul li a {
	/* padding: 10px; */
	border-radius: 100%;
	color: var(--e-global-color-white);
}

.hide-blog {
	display: none;
}

.singleblog-section .content4 .icon .social-icons ul li:hover {
	background: var(--e-global-color-secondary);
	/* border-color: var(--e-global-color-secondary); */
	transform: translateY(-8px);
}

.singleblog-section .content4 .icon .social-icons ul li a i {
	transition: .3s ease-in-out;
}

.singleblog-section .content4 .icon .social-icons ul li:hover .social-networks {
	color: var(--e-global-color-white);
}

.singleblog-section .content4 .icon .social-icons ul li:hover a {
	color: var(--e-global-color-white);
}

.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;
	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;
	border-radius: 100%;
	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 .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 img {
	border-radius: 100%;
}

.singleblog-section .content5 .content {
	padding: 82px 65px 20px;
	background: var(--e-global-color-dark-blue);
	border-radius: 15px;
}

.singleblog-section .content5 .content h4 {
	margin-bottom: 4px;
	font-weight: bold;
	color: var(--e-global-color-white);
}

.singleblog-section .content5 .content span {
	display: block;
	margin-bottom: 14px;
	color: var(--e-global-color-white);
}

.singleblog-section .content5 .content p {
	color: var(--e-global-color-white);
}

.singleblog-section .content6 {
	/* padding-bottom: 30px; */
	margin-bottom: 40px;
	border-bottom: 1px solid rgb(0, 0, 0, 15%);
}

/* .singleblog-section .content6:after {
	content: "";
	border-bottom: 1px solid rgb(0, 0, 0, 15%);
	position: absolute;
	width: 92%;
	height: 6px;
	left: 26px;
} */

.singleblog-section .content6 h4 {
	margin-bottom: 34px;
	padding-bottom: 10px;
	font-weight: bold;
	display: inline-block;
	border-bottom: 1px solid rgba(0, 0, 0, 15%);
}

/* .singleblog-section .content6 h4:after {
	content: "";
	border-bottom: 1px solid rgba(0, 0, 0, 15%);
	position: absolute;
	width: 23%;
	height: 40px;
	left: 0;
} */

.singleblog-section .content6 .comment {
	display: flex;
	margin: 0 0 24px 6px;
}

.singleblog-section .content6 .comment .image img {
	border-radius: 100%;
}

.singleblog-section .content6 .comment .content {
	padding: 13px 0 0 19px
}

.singleblog-section .content6 .comment h5 {
	margin-bottom: 2px;
	color: var(--e-global-color-secondary);
}

.singleblog-section .content6 .comment span {
	margin-bottom: -38px;
	display: block;
	color: var(--e-global-color-text);
}

.singleblog-section .content6 .comment .reply {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	background: var(--e-global-color-dark-blue);
	color: var(--e-global-color-white);
	border-radius: 8px;
	padding: 10px 28px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	position: relative;
	float: right;
	right: 0;
	top: -28px;
	/* border: 1px solid transparent; */
}

.singleblog-section .content6 .comment .reply:hover {
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-white);
	/* border-color: var(--e-global-color-secondary); */
}

.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 {
	margin-bottom: 28px;
}

.singleblog-section .content7 textarea {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    /* font-family: "Jost", sans-serif; */
    color: var(--e-global-color-text);
    padding: 18px;
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
	border-radius: 8px;
    resize: none;
    outline: none;
    overflow-y: auto;
    border: none;
    border: 1px solid rgb(0 0 0 / 15%);
}

.singleblog-section .content7 input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    /* font-family: "Jost", sans-serif; */
	color: var(--e-global-color-text);
    padding: 11px 18px 13px;
	margin-bottom: 16px;
	border-radius: 8px;
	width: 100%;
	overflow: visible;
	outline: none;
	border: none;
    border: 1px solid rgb(0 0 0 / 15%);
}

.singleblog-section .content7 textarea:focus,
.singleblog-section .content7 input:focus {
    /* color: var(--e-global-color-text); */
    border: 1px solid var(--e-global-color-dark-blue);
}

.singleblog-section .content7 .text-mb {
	margin-bottom: 26px;
}

.singleblog-section .content7 .post_comment {
	font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    /* font-family: "Jost", sans-serif; */
    padding: 16px 30px;
	border-radius: 8px;
	color: var(--e-global-color-white);
	background-color: var(--e-global-color-dark-blue);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	display: block;
	text-align: center;
	outline: none;
	border-style: none;
	/* border: 1px solid transparent; */
}

/* .singleblog-section .content7 button.post_comment {
	margin-top: 20px;
} */

.singleblog-section .content7 .post_comment:hover {
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-white);
	cursor: pointer;
	/* border-color: var(--e-global-color-secondary); */
}

.singleblog-section .column {
	margin-left: -20px;
}

.singleblog-section .box1 {
	border-radius: 15px;
	background: var(--e-global-color-white);
	padding: 34px 30px;
	margin-bottom: 43px;
	width: 110%;
	box-shadow: 0 6px 41px 6px rgba(0, 0, 0, 0.05);
}

.singleblog-section .box1 h4 {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgb(0 0 0 / 15%);
}

/* .singleblog-section .box1 h4:after {
	content: "";
	border-bottom: 1px solid rgb(0 0 0 / 15%);
	position: absolute;
	width: 84%;
	height: 43px;
	left: 30px;
} */

.singleblog-section .box1 input {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	/* font-family: "Jost", sans-serif; */
	color: var(--e-global-color-text);
	background: transparent;
	border: 1px solid rgb(0 0 0 / 15%);
	border-radius: 8px;
	padding: 0 75px 2px 18px;
	width: 100%;
	height: 58px;
	overflow: visible;
	outline: none;
}

.singleblog-section .box1 input:focus {
	box-shadow: none;
	color: var(--e-global-color-secondary);
	border: 1px solid var(--e-global-color-secondary);
}

.singleblog-section .box1 .search {
	position: absolute;
	font-size: 18px;
	right: 5px;
    top: 0px;
    width: 60px;
    height: 58px;
	line-height: 45px;
	color: var(--e-global-color-white);
	/* border: 1px solid transparent; */
	background: var(--e-global-color-dark-blue);
	border-radius: 0 8px 8px 0;
	outline: none;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.singleblog-section .box1 .search:hover {
	color: var(--e-global-color-white);
	background: var(--e-global-color-secondary);
	/* border: 1px solid var(--e-global-color-secondary); */
}

.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-secondary);
	position: absolute;
	width: 84%;
	height: 45px;
	left: 30px;
}

.singleblog-section .box2 ul li {
	margin-bottom: 15px;
}

.singleblog-section .box2 ul li a {
	font-size: 18px;
    line-height: 24px;
	font-weight: 500;
	color: var(--e-global-color-secondary);
	transition: all 0.3s ease-in-out;
}

.singleblog-section .box2 ul li a:hover {
	color: var(--e-global-color-dark-blue);
}

.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-secondary);
	position: absolute;
	width: 84%;
	height: 45px;
	left: 30px;
}

.singleblog-section .box3 .social-icons ul {
	display: flex;
	justify-content: center;
}

.singleblog-section .box3 .social-icons ul li a {
	/* padding: 10px; */
	color: var(--e-global-color-white);
}

.singleblog-section .box3 .social-icons ul li {
	margin: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 40px;
	width: 40px; */
	border-radius: 100%;
	background: var(--e-global-color-dark-blue);
	transition: all 0.3s ease-in-out;
	/* border: 1px solid transparent; */
}

.singleblog-section .box3 .social-icons ul li i {
	transition: all 0.3s ease-in-out;
}

.singleblog-section .box3 .social-icons ul li:hover {
	background: var(--e-global-color-secondary);
	transform: translateY(-8px);
	/* border-color: var(--e-global-color-secondary); */
}

.singleblog-section .box3 .social-icons ul li:hover i {
	color: var(--e-global-color-white);
}

.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: 18px;
	background: transparent;
	border-radius: 100%;
	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 .box4 h5 {
	margin-bottom: 36px;
}

.singleblog-section .box4 h5:after {
	content: "";
	border-bottom: 1px solid var(--e-global-color-secondary);
	position: absolute;
	width: 84%;
	height: 45px;
	left: 30px;
}

.singleblog-section .box4 .tag li {
	/* margin-right: 8px; */
	display: inline-block;
}

.singleblog-section .box4 .tag .button {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	background: var(--e-global-color-dark-blue);
	color: var(--e-global-color-white);
	border-radius: 8px;
    padding: 8px 20px 10px;
	display: inline-block;
	text-align: center;
	transition: all 0.3s ease-in-out;
	margin-bottom: 5px;
	letter-spacing: 0.6px;
	/* border: 1px solid transparent; */
}

/* .singleblog-section .box4 .tag .button2 {
	padding: 15px 24px;
} */

.singleblog-section .box4 .tag .button:focus {
	outline: none;
}

.singleblog-section .box4 .tag .button:hover {
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-white);
	/* border-color: var(--e-global-color-secondary); */
}

.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-secondary);
	position: absolute;
	width: 84%;
	height: 45px;
	left: 30px;
}

.singleblog-section .box5 .feed {
	display: flex;
	margin-bottom: 30px;
	align-items: center;
	padding-bottom: 30px;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

/* .singleblog-section .box5 .feed:after {
	content: "";
	border-bottom: 1px solid rgb(0 0 0 / 15%);
	position: absolute;
	width: 84%;
	height: 125px;
	left: 30px;
} */

.singleblog-section .box5 .feed4 {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border: none !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: 16px;
    line-height: 24px;
    font-weight: 400;
    /* font-family: "Merriweather", serif; */
	text-decoration: none;
	width: 66%;
	padding: 0 0 0 16px;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	color: var(--e-global-color-secondary);
}

.singleblog-section .box5 .feed a:hover {
	color: var(--e-global-color-dark-blue);
}

.blogpage-section a {
	text-decoration: none;
}

/* BLOG PAGES */

.blogpage-section .twocolumn-blog .lower-portion {
	padding: 26px 20px 30px;
}

.blogpage-section .threecolumn-blog .lower-portion {
	padding: 15px 10px 15px;
}

.blogpage-section .threecolumn-blog .lower-portion p{
	font-size: 14px;
    line-height: 20px;
}
.blogpage-section .threecolumn-blog .infinite-blog {
	background: var(--e-global-color-white);
	border-radius: 20px;
}

.blogpage-section .threecolumn-blog .button-portion {
	padding: 10px;
}

.blogpage-section .threecolumn-blog .button-portion .read_more {
    font-size: 14px;
    line-height: 20px;
    padding: 7px 12px;
}

.blogpage-section .threecolumn-blog .lower-portion span,
.blogpage-section .threecolumn-blog .lower-portion .text-mr,
.blogpage-section .threecolumn-blog .button-portion span {
	font-size: 12px;
    line-height: 18px;
}
.blogpage-section .threecolumn-blog .lower-portion .text-mr {
	margin-right: 4px;
}

.blogpage-section .threecolumn-blog .lower-portion i {
	font-size: 14px;
	margin-bottom: 0px;
}

.blogpage-section .threecolumn-blog .button-portion .calendar-ml {
	font-size: 14px;
	margin-left: 0;
}

.blogpage-section .fourcolumn-blog .lower-portion {
	padding: 15px 10px 15px;
}

.blogpage-section .fourcolumn-blog .lower-portion p{
    font-size: 16px;
    line-height: 22px;
}
.blogpage-section .fourcolumn-blog .button-portion {
	padding: 10px;
}

.blogpage-section .fourcolumn-blog .button-portion .date {
	font-size: 15px;
}

.blogpage-section .fourcolumn-blog .button-portion .read_more {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 13px;
}

.blogpage-section .fourcolumn-blog .lower-portion .text-mr {
	margin-right: 8px;
}

.blogpage-section .fourcolumn-blog .lower-portion {
	font-size: 15px;
}

.blogpage-section .fourcolumn-blog .lower-portion i {
	margin-bottom: 6px;
}

.blogpage-section .sixcolumn-blog .lower-portion i,
.blogpage-section .sixcolumn-blog .button-portion .calendar-ml {
    font-size: 13px;
    margin-right: 4px;
}
.blogpage-section .sixcolumn-blog .lower-portion span,
.blogpage-section .sixcolumn-blog .button-portion span {
	font-size: 13px;
}
.blogpage-section .sixcolumn-blog .lower-portion {
	padding: 15px 10px;
}

.blogpage-section .sixcolumn-blog .button-portion {
	padding: 10px;
}

.blogpage-section .sixcolumn-blog .lower-portion p {
	font-size: 16px;
    line-height: 24px;
}

.blogpage-section .sixcolumn-blog .button-portion .read_more {
	font-size: 14px;
    line-height: 20px;
    padding: 7px 12px 8px;
}

.blogpage-section .sixcolumn-blog .lower-portion .text-mr {
	margin-right: 6px;
}

.blogpage-section .sixcolumn-blog .lower-portion i {
	margin-bottom: 0;
}

/* .infinite-blog {
	background: var(--e-global-color-white);
	border-radius: 15px;
} */

/*************************************************
=-*=-*=-*=-*=-*=-*= One Column =-*=-*=-*=-*=-*=-*=
**************************************************/
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
.sidebar .post-thumbnail-entry .post-category {
	display: block;
	font-size: 12px;
	line-height: 20px;
}

#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: 18px;
	line-height: 30px;
	margin-top: 0;
	color: var(--e-global-color-text);
}

.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: 0;
}

.fluid-width-video-wrapper {
	padding-top: 66.8%;
}

.load-more a {
	border-radius: 8px;
	padding: 10px 25px 12px;
	display: inline-block;
	background-color: var(--e-global-color-secondary);
	color: var(--e-global-color-primary);
}

.load-more a:hover {
	background-color: var(--e-global-color-primary);
	color: var(--e-global-color-secondary);
	box-shadow: inset 0 0 0px 1px var(--e-global-color-secondary);
}

.post-item.border>.post-item-wrap>.post-item-description {
	color: #676767;
}

.sidebar>h4,
.page-title h1 {
	color: var(--e-global-color-black);
}

.color01,
.color01 a {
	color: #777;
}

.post-next span,
.post-prev span,
.sidebar .post-thumbnail-content a,
.sidebar .widget-categories ul li a,
.sidebar .nav-tabs .nav-link,
.pagination .page-item:not(.disabled).active>.page-link,
.pagination .page-item:not(.disabled):active>.page-link,
.pagination .page-item:not(.disabled):focus>.page-link,
.pagination .page-item:not(.disabled):hover>.page-link,
.pagination .page-item:not(.disabled)>.page-link,
#blog .post-item.border .post-item-wrap .post-item-description a {
	color: var(--e-global-color-secondary);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	border-radius: 0;
}

.pagination .page-item:not(.disabled)>.page-link {
	background-color: #fff;
	color: var(--e-global-color-black);
}

.respond-comment span,
.sidebar .nav-tabs .nav-link.active,
.sidebar .widget-tweeter li a,
.sidebar .widget-twitter li a,
.sidebar .cat-count-span,
.sidebar .post-thumbnail-list a:hover,
.sidebar .widget-categories ul li a:hover,
#blog .post-item .post-item-description .post-meta-comments a:hover,
#blog .post-item .post-item-description>h2>a:hover,
#blog .post-item.border .post-item-wrap .post-item-description a:hover {
	color: var(--e-global-color-dark-blue);
	font-size: 14px;
	line-height: 20px;
}
.sidebar .nav-tabs .nav-link{
	border-bottom: 2px solid transparent;
}
.sidebar .post-thumbnail-entry{
    display: flex;
    align-items: center;
}

.form-group label:not(.error),
#blog .post-item .post-item-description>h2,
#blog .post-item .post-item-description>h2>a {
	color: #444;
}

.form-gray-fields .form-control {
	color: #333;
	background-color: rgba(238, 238, 238, .6);
}

.form-gray-fields .btn:hover {
	color: var(--e-global-color-secondary);
	background: transparent;
}

.sidebar .widget {
	border-bottom: 1px solid rgb(0 0 0 / 15%);
	border-radius: 0;
}

.sidebar .nav-tabs {
	border-bottom: 2px solid #dee2e6;
}

.sidebar .nav-tabs .nav-link.active {
	background-color: transparent;
	color: var(--e-global-color-dark-blue) !important;
	border-bottom: 2px solid var(--e-global-color-dark-blue);
}

.sidebar .post-thumbnail-entry,
.sidebar .widget-categories ul li {
	border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.sidebar .post-thumbnail-entry .post-category,
.sidebar .post-thumbnail-entry .post-date {
	color: var(--e-global-color-text);
	display: inline-block;
	margin: 0 10px 0 0;
}

.sidebar .widget-tweeter small,
.sidebar .widget-twitter small {
	color: var(--e-global-color-text);
}

.sidebar .widget-tags{
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-bottom: none !important;
}
.sidebar .tags a {
	font-size: 14px;
	line-height: 20px;
	padding: 3px 10px;
	margin: 0 2px 5px 0;
	border-radius: 8px;
	display: inline-block;
    color: var(--e-global-color-white);
    border: 2px solid var(--e-global-color-dark-blue);
    background: var(--e-global-color-dark-blue);
}

.form-gray-fields .btn {
	border-color: var(--e-global-color-secondary);
	background-color: var(--e-global-color-secondary);
}

.sidebar .tags a.active,
.sidebar .tags a:active,
.sidebar .tags a:focus,
.sidebar .tags a:hover {
    color: var(--e-global-color-white);
    border: 2px solid var(--e-global-color-secondary);
    background: var(--e-global-color-secondary);
}

.post-item.border .post-meta-category,
.load-more a {
	font-size: 16px;
    line-height: 18px;
	font-weight: 400;
	border-radius: 8px;
	background-color: var(--e-global-color-dark-blue);
	color: var(--e-global-color-white);
	transition: all 0.3s ease-in-out;
	box-shadow: none;
}
.load-more a {
	border: 1px solid var(--e-global-color-dark-blue);
}

.load-more a:hover {
	background-color: var(--e-global-color-secondary);
	color: var(--e-global-color-white);
	border: 1px solid var(--e-global-color-secondary);
	box-shadow: none;
}

#blog .post-item.border .post-meta-category,
.form-gray-fields .btn,
.widget-newsletter .btn,
#blog .post-item.border .post-meta-category a:hover {
	color: #fff;
}

.widget-newsletter .btn:focus {
	box-shadow: none;
}

#blog .post-item .post-meta-category,
#blog .post-item-description .post-meta-comments a {
	color: var(--e-global-color-text);
	font-size: 14px;
	line-height: 20px;
}

.pagination .page-item:not(.disabled).active>.page-link,
.pagination .page-item:not(.disabled):active>.page-link,
.pagination .page-item:not(.disabled):focus>.page-link,
.pagination .page-item:not(.disabled):hover>.page-link {
	background-color: var(--e-global-color-dark-blue);
    border-color: #e4e4e4;
    box-shadow: none;
    color: var(--e-global-color-white);
	border-radius: 8px;
}

.pagination .page-item:not(.disabled)>.page-link {
	border-color: #ececec;
}

.fourcolumn-blog .post-item-wrap .post-image img {
	height: 181px;
}

.fourcolumn-blog .post-item-wrap .post-video iframe,
.fourcolumn-blog .post-item-wrap .post-video {
	height: 181px;
}

.onecolumn-blog .post-item-wrap .post-video iframe,
.onecolumn-blog .post-item-wrap img {
	height: 462px;
}

.onecolumn-blog .post-item-wrap .post-video .fluid-width-video-wrapper {
	padding-top: 42.3%;
}

.load-blog .post-item-wrap .post-video iframe,
.load-blog .post-item-wrap img,
.load-blog .post-item-wrap .post-video,
.blog-box.hide-blog .post-item-wrap .post-video,
.blog-box.hide-blog .post-item-wrap .post-video iframe,
.blog-box.hide-blog .post-item-wrap img {
	height: 247px;
}

.twocolumn-blog .post-item-wrap .post-video iframe,
.twocolumn-blog .post-item-wrap img,
.twocolumn-blog .post-item-wrap .post-video {
	height: 225px;
}

.three-column-con .blog-box img,
.three-column-con .blog-box .post-item-wrap iframe,
.three-column-con .blog-box .post-item-wrap .post-video {
	height: 247px;
}

.threecolumn-blog .post-image img,
.threecolumn-blog .post-item-wrap iframe,
.threecolumn-blog .post-item-wrap .post-video {
	height: 173px;
}

.sixcolumn-blog .post-item-wrap img,
.sixcolumn-blog .post-item-wrap iframe,
.sixcolumn-blog .post-item-wrap .post-video {
	height: 203px;
}

.blogpage-section .col-xl-3.col-lg-6.col-md-6,
.blogpage-section .col-xl-4.col-lg-4,
.blogpage-section .col-xl-2.col-lg-6.col-md-6,
.blogpage-section .col-lg-4.col-md-6.col-sm-6.col-12,
.blogpage-section .col-xl-6.col-lg-6.col-md-12,
.blogpage-section .blog-box,
.blogpage-section .blog-box .post-item-wrap,
.blogpage-section .blog-box .post-item-wrap .infinite-blog,
.blogpage-section .fourcolumn-blog .post-item-wrap .lower-portion,
.blog-tabs-section .blog-tabs-inner-section .single-blog-outer-con .single-blog-box,
.blog-tabs-section .blog-tabs-inner-section .single-blog-outer-con .single-blog-details,
.blogpage-section .blog-box .lower-portion {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blogpage-section .fourcolumn-blog .post-item-wrap .button-portion,
.blog-tabs-section .blog-tabs-inner-section .single-blog-box .generic-btn2,
.blogpage-section .blog-box .button-portion {
	margin-top: auto;
	display: flex;
	flex-direction: row;
}

.blogpage-section .blog-box .post-item-wrap{
	background-color: #fff;
	border-radius: 15px;
}

.blogpage-section .blog-box .lower-portion, 
.blogpage-section .blog-box .button-portion {
	background-color: #fff;
}

.blogpage-section .twocolumn-blog .lower-portion p{
	font-size: 16px;
    line-height: 24px;
}
.blogpage-section .blog-box .button-portion {
    border-radius: 15px;
}
#blog iframe {
    border-radius: 15px 15px 0 0;
}
.span-fa-outer-con {
	margin-bottom: 10px;
}

/*************************************************************
=-*=-*=-*=-*=-*=-*= Responsive =-*=-*=-*=-*=-*=-*=
*************************************************************/
@media screen and (max-width: 1800px) {
	.blog-posts .sixcolumn-blog .button-portion .date {
		width: 100%;
	}

	.blog-posts .sixcolumn-blog .button-portion .button {
		width: 100%;
		text-align: right;
	}
}

@media screen and (max-width: 1600px) {
	.blog-section .generic-title {
		margin-bottom: 55px;
	}

	.blog-text-details {
		padding: 30px 40px 36px 30px;
	}

	.blog-text-details .comments {
		margin-bottom: 15px;
	}

	.blog-text-details h4 {
		margin-bottom: 15px;
	}

	.blog-text-details p {
		line-height: 28px;
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 1921px){
	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 300px;
	}
}
/* @media screen and (min-width: 1581px) and (max-width: 1599px){
	.blog-posts .sixcolumn-blog .lower-portion p{
		font-size: 18px;
    	line-height: 24px;
	}
} */
@media screen and (min-width: 1441px) and (max-width: 1580px){
	.six-main-box .col-xl-2.col-lg-6.col-md-6 {
		max-width: 33% !important;
		width: 33%;
		flex: 0 0 33%;
	}
	.blog-posts .sixcolumn-blog .lower-portion {
		padding: 20px 15px;
	}
	.blog-posts .sixcolumn-blog .button-portion {
		padding: 14px 15px;
		flex-direction: row;
		gap: 8px;
	}
	.blogpage-section .sixcolumn-blog .button-portion .button,
	.blogpage-section .sixcolumn-blog .button-portion .date {
		width: 100%;
	}
	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 340px;
	}
	.blogpage-section .sixcolumn-blog .button-portion .button {
		text-align: right;
	}
}
@media screen and (max-width: 1440px) {

	/* Blog */
	.blogpage-section {
		padding: 100px 0 145px;
	}

	/* Single Blog */
	.singleblog-section {
		padding: 100px 0 160px;
	}
	.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 */
	.blogpage-section .sixcolumn-blog .button-portion .button,
	.blogpage-section .sixcolumn-blog .button-portion .date {
		width: 100%;
	}

	.blogpage-section .sixcolumn-blog .button-portion .button {
		text-align: right;
	}

	.blog-posts .sixcolumn-blog .lower-portion {
		padding: 20px 15px;
	}

	.blog-posts .sixcolumn-blog .lower-portion .text-mr {
		margin-right: 45px;
	}

	.blog-posts .sixcolumn-blog .lower-portion i {
		font-size: 14px;
		margin-bottom: 0;
		margin-right: 3px;
	}

	.blog-posts .sixcolumn-blog .button-portion .calendar-ml {
		font-size: 16px;
	}

	.blog-posts .sixcolumn-blog .button-portion {
		padding: 14px 15px;
		flex-direction: row;
		gap: 8px;
	}

	.blog-posts .sixcolumn-blog .button-portion .read_more {
		/* font-size: 16px;
    	line-height: 20px; */
		width: auto !important;
	}
	.blog-posts .sixcolumn-blog .post-item-wrap a {
		width: 100%;
	}
	#blogslider .carousel-control-prev,
	#blogslider .carousel-control-next {
		width: 15%;
	}

	/* special classes for blog */

	.padding-top {
		padding-top: 100px;
	}

	.padding-bottom {
		padding-bottom: 170px;
	}

	/* .blog-posts .sixcolumn-blog p {
		font-size: 14px;
		line-height: 20px;
	} */

	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 120px;
	}

	.six-main-box .col-xl-2.col-lg-6.col-md-6 {
		max-width: 33% !important;
		width: 33%;
		flex: 0 0 33%;
	}

	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 258px;
	}
}

@media screen and (max-width: 1400px) {

	.blog-section .generic-title {
		margin-bottom: 45px;
	}

	.blog-text-details .comments {
		margin-bottom: 12px;
	}

	.blog-text-details h4 {
		margin-bottom: 10px;
	}

	.blog-text-details p {
		line-height: 26px;
		margin-bottom: 10px;
	}

	.blog-text-details {
		padding: 25px 30px 35px 25px;
	}

}

@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 .nav-tabs .nav-link.active {
		font-size: 13px;
	}
	.sidebar .widget-categories ul li a,
	.sidebar .widget-categories ul li a:hover,
	.sidebar .widget-tweeter li a,
	.sidebar .post-thumbnail-content a,
	.sidebar .post-thumbnail-list a:hover{
		font-size: 13px;
	}
	.sidebar .widget {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.blogpage-section .sixcolumn-blog .button-portion .button,
	.blogpage-section .sixcolumn-blog .button-portion .date {
		width: auto;
	}

	/* Blog */
	.blogpage-section {
		padding: 80px 0 110px;
	}

	.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 20px;
		flex-direction: unset;
		gap: 0;
	}

	.blogpage-section .threecolumn-blog .date{
		margin-bottom: 5px;
	}

	.blogpage-section .blog-box.threecolumn-blog .button-portion {
		padding: 12px;
	}

	.blogpage-section .blog-box .lower-portion i {
		font-size: 16px;
		margin-right: 5px;
		margin-bottom: 0;
	}

	.blogpage-section .threecolumn-blog .button-portion {
		flex-direction: column;
	}

	.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: 17px;
		line-height: 26px;
		letter-spacing: 0;
		word-spacing: 0;
	}

	.blogpage-section .blog-box .button-portion .read_more {
		/* font-size: 16px;
		line-height: 20px; */
		padding: 9px 15px 10px;
	}
	.single-blog-outer-con {
		gap: 30px;
	}

	/* Single Blog */
	.singleblog-section {
		padding: 80px 0 135px;
	}

	/* .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 {
		font-size: 14px;
    	line-height: 24px;
		margin-bottom: 25px;
	}

	.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 p {
		font-size: 14px;
		line-height: 24px;
	}

	.singleblog-section .main-box .content2 {
		padding: 20px 20px 28px;
		margin-bottom: 25px;
	}

	.singleblog-section .main-box .text {
		font-size: 14px;
    	line-height: 24px;
		margin-bottom: 25px;
		/* margin-left: 12px; */
	}

	.singleblog-section .content4 {
		margin-bottom: 50px;
	}

	.singleblog-section .content4 .tag .button {
		padding: 8px 14px;
		margin-right: 0;
	}

	/* .singleblog-section .content4 .tag {
		margin-right: -40px;
	} */

	.singleblog-section .content4 .icon .social-icons {
		top: 41px;
	}
	.singleblog-section .content4 .icon .social-icons ul li {
		margin: 0 6px;
	}
	.singleblog-section .content4 .icon .social-icons ul li .social-networks {
		font-size: 14px;
	}

	.singleblog-section .buttons {
		margin-bottom: 60px;
	}

	.singleblog-section .content5 .content {
		padding: 82px 30px 20px;
	}

	.singleblog-section .content5 .content span {
		margin-bottom: 10px;
	}

	.singleblog-section .content5 {
		margin-bottom: 30px;
	}
	.singleblog-section .content5 .content p {
		font-size: 14px;
		line-height: 24px;
	}

	.singleblog-section .content6 .comment .image img {
		width: 90px;
	}

	.singleblog-section .content6 h4 {
		margin-bottom: 34px;
	}

	.singleblog-section .content6 h4:after {
		left: 12px;
	}

	.singleblog-section .content6 .comment {
		margin: 0 0 30px 0;
	}

	.singleblog-section .content6 .comment .content {
		padding: 0 0 0 15px;
	}

	.singleblog-section .content6 .comment h5 {
		margin-bottom: 4px;
	}

	.singleblog-section .content6 .comment span {
		margin-bottom: -32px;
	}

	.singleblog-section .content6 .comment .text_holder p {
		font-size: 14px;
		line-height: 24px;
		margin: 0 30px 0 0;
		word-spacing: 0;
	}

	.singleblog-section .content6 .comment .reply {
		font-size: 16px;
		line-height: 22px;
		padding: 11px 32px;
		top: -24px;
	}

	.singleblog-section .content7 h4 {
		margin-bottom: 20px;
	}

	.singleblog-section .content7 textarea {
		font-size: 14px;
		line-height: 14px;
		padding: 16px;
		height: 145px;
		margin-bottom: 10px;
	}

	.singleblog-section .content7 input {
		font-size: 14px;
		line-height: 14px;
		padding: 10px 16px 12px;
		margin-bottom: 15px;
	}

	.singleblog-section .content7 .text-mb {
		margin-bottom: 20px;
	}

	.singleblog-section .content7 .post_comment {
		font-size: 16px;
		line-height: 16px;
		padding: 15px 28px;
	}

	.singleblog-section .box1 {
		width: 100%;
		padding: 30px 15px;
		margin-bottom: 30px;
	}

	.singleblog-section .box1 h4 {
		margin-bottom: 30px;
		padding-bottom: 14px;
		letter-spacing: 0;
		word-spacing: 0;
	}

	/* .singleblog-section .box1 h4:after {
		width: 80%;
		height: 36px;
		left: 32px;
	} */

	.singleblog-section .box1 input {
		padding: 2px 13px;
		height: 50px;
		/* border-radius: 0; */
	}

	.singleblog-section .box1 .search {
		font-size: 16px;
		height: 50px;
		line-height: 30px;
		/* border-radius: 0; */
	}

	.singleblog-section .box2 ul li {
		margin-bottom: 12px;
	}
	.singleblog-section .box2 ul li a {
		font-size: 16px;
		line-height: 22px;
	}
	.singleblog-section .box3 .social-icons ul li .social-networks {
		font-size: 16px;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.singleblog-section .box4 .tag .button {
		padding: 4px 14px;
		letter-spacing: 0;
	}

	.singleblog-section .box5 .feed a {
		font-size: 14px;
    	line-height: 22px;
		padding: 0 0 0 12px;
	}

	.singleblog-section .box5 .feed {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	/* .singleblog-section .box5 .feed:after {
	    width: 90%;
		height: 100px;
		left: 15px;
	} */

	/* 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 .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blog-posts .twocolumn-blog .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blog-posts .threecolumn-blog .lower-portion .text-mr {
		margin-right: 20px;
	}

	.blog-posts .threecolumn-blog .lower-portion i {
		margin-bottom: 0;
	}

	.sidebar .post-thumbnail-entry .post-category,
	.sidebar .post-thumbnail-entry .post-date {
		margin: 0 2px 0 0 !important;
	}

	.blog-posts .threecolumn-blog .lower-portion .span-i-con {
		margin-bottom: 4px;
	}

	.blog-posts .threecolumn-blog .lower-portion {
		padding: 12px;
	}

	.blog-posts .threecolumn-blog .lower-portion .text-mr {
		margin-right: 90px;
	}

	.blog-posts .three-column .button-portion .read_more {
		padding: 8px 12px;
	}

	.blogpage-section .blog-box .button-portion .calendar-ml {
		font-size: 16px;
		margin-right: 5px;
	}

	.blog-posts .fourcolumn-blog .button-portion .read_more {
		padding: 8px 12px;
	}

	.blog-posts .three-column .button-portion .read_more {
		font-size: 13px;
		line-height: 18px;
		padding: 7px 12px;
	}
	.blog-posts .sixcolumn-blog .button-portion .read_more {
		padding: 8px 15px;
	}
	.sidebar {
		padding: 12px;
	}	
	.blog-section .generic-title {
		margin-bottom: 40px;
	}

	.blog-box figure img {
		width: 100%;
	}

	.blog-text-details {
		padding: 20px 20px 30px 20px;
	}

	.blog-text-details .comments {
		margin-bottom: 8px;
	}

	.blog-text-details h4 {
		margin-bottom: 8px;
	}

	.blog-text-details p {
		margin-bottom: 8px;
	}

	.blog-text-details .posting-date {
		padding: 10px 18px;
	}

	.blog-inner-section {
		gap: 20px;
		grid-template-columns: 31.9% 31.9% 31.9%;
	}

	/* blog section styling start here */
	/* .blog-tabs-section {
		padding-bottom: 148px !important;
	} */

	.single-blog-box {
		width: 100%;
	}

	.single-blog-box figure img {
		width: 100%;
	}

	.blog-tabs-inner-section .nav-tabs a.nav-link {
	    font-size: 18px;
    	padding: 10px 25px;
	}

	.single-blog-details h4 {
		margin-bottom: 10px;
	}

	.single-blog-details h4 a {
		margin-bottom: 0;
	}

	.single-blog-details p {
		margin-bottom: 16px;
	}

	.blog-banner-section {
		height: 400px;
	}

	.fourcolumn-blog .post-item-wrap .post-image img {
		height: 318px;
	}

	.fourcolumn-blog .post-item-wrap .post-video iframe,
	.fourcolumn-blog .post-item-wrap .post-video {
		height: 318px;
	}

	.onecolumn-blog .post-item-wrap .post-video iframe,
	.onecolumn-blog .post-item-wrap img {
		height: 387px;
	}

	/* font sizes */

	.padding-top {
		padding-top: 80px;
	}

	.padding-bottom {
		padding-bottom: 135px;
	}

	.load-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap img,
	.load-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video iframe,
	.blog-box.hide-blog .post-item-wrap img {
		height: 205px;
	}

	.twocolumn-blog .post-item-wrap .post-video iframe,
	.twocolumn-blog .post-item-wrap img,
	.twocolumn-blog .post-item-wrap .post-video {
		height: 187px;
	}

	.three-column-con .blog-box img,
	.three-column-con .blog-box .post-item-wrap iframe,
	.three-column-con .blog-box .post-item-wrap .post-video {
		height: 205px;
	}

	.sidebar .tags a {
		font-size: 12px;
		line-height: 18px;
		padding: 3px 8px 4px;
	}
	/* .blogpage-section .blog-box .button-portion .date {
		margin-bottom: 8px;
	} */

	.threecolumn-blog .post-image img,
	.threecolumn-blog .post-item-wrap iframe,
	.threecolumn-blog .post-item-wrap .post-video {
		height: 141px;
	}

	.blog-posts .threecolumn-blog p {
		font-size: 15px;
		line-height: 22px;
	}

	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 329px;
	}

	.six-main-box .col-xl-2.col-lg-6.col-md-6 {
		max-width: 50% !important;
		width: unset;
		flex: unset;
	}
}

@media screen and (max-width: 991px) {
	
	.text-size-14 {
		font-size: 12px;
		line-height: 20px;
	}
	.respond-form {
		padding-top: 0;
	}

	.blogpage-section .threecolumn-blog .button-portion {
		flex-direction: unset;
	}

	.sidebar {
		margin: 30px 30px 20px;
	}

	.page-title h1 {
		font-size: 2rem;
	}

	/* Blog */
	.blogpage-section {
		padding: 60px 0 100px;
	}

	.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: 0;
	}

	.blogpage-section .blog-box .button-portion .calendar-ml {
		font-size: 16px;
	}

	.blogpage-section .blog-box .lower-portion .tag-mb {
		margin-bottom: 0;
	}

	.blogpage-section .blog-box .lower-portion .text-mr {
		margin-right: 8px;
	}

	.blogpage-section .blog-box .lower-portion h5 {
		font-size: 18px;
		line-height: 28px;
	}

	/* .blogpage-section .blog-box .button-portion .read_more {
		padding: 6px 14px;
	} */

	/* Single Blog */
	.singleblog-section {
		padding: 60px 0 125px;
	}

	.singleblog-section .main-box {
		padding: 15px 15px 30px;
		margin-bottom: 30px;
	}

	.singleblog-section .main-box .image1 {
		margin-bottom: 25px;
	}

	.singleblog-section .main-box .content1 p {
		margin-bottom: 20px;
	}

	.singleblog-section .main-box .content2 {
		padding: 25px;
		margin-bottom: 20px;
	}

	.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 20px 10px;
	}

	.singleblog-section .content4 {
		margin-bottom: 50px;
	}

	.singleblog-section .content4 h4 {
		/* 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;
	}

	.singleblog-section .content4 .icon .social-icons ul li {
		margin: 0 5px;
	}

	.singleblog-section .content4 .icon .social-icons ul li .social-networks {
		font-size: 13px;
		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;
		left: 17px;
	}

	.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 span {
		margin-bottom: -30px;
	}

	.singleblog-section .content6 .comment .text_holder p {
		margin-right: 55px;
	}

	.singleblog-section .content6 .comment .reply {
		padding: 10px 30px;
		top: -23px;
	}

	.singleblog-section .content6 {
		margin-bottom: 30px;
	}

	.singleblog-section .content7 h4 {
		margin-bottom: 15px;
	}

	.singleblog-section .content7 textarea {
		padding: 14px;
		height: 120px;
		margin-bottom: 8px;
	}

	.singleblog-section .content7 input {
		padding: 9px 14px 11px;
		margin-bottom: 13px;
	}

	.singleblog-section .content7 .post_comment {
		font-size: 16px;
		line-height: 16px;
		padding: 16px 25px;
	}

	/* .singleblog-section .box1 h4:after {
		width: 91%;
	} */

	.singleblog-section .box1 h4 {
		margin-bottom: 30px;
	}

	.singleblog-section .box1 input {
		font-size: 14px;
		line-height: 20px;
		padding: 2px 16px;
		height: 47px;
	}

	.singleblog-section .box1 .search {
		font-size: 14px;
		height: 47px;
		line-height: 25px;
	}

	.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: 5px 14px;
		/* margin-bottom: 5px; */
		font-size: 14px;
		line-height: 24px;
	}

	.singleblog-section .box5 .feed {
		margin-bottom: 40px;
	}

	/* .singleblog-section .box5 .feed:after {
		width: 91%;
		height: 80px;
	} */

	.singleblog-section .box5 .feed .feed-image {
		width: 12%;
	}

	.singleblog-section .box5 .feed .feed-image img {
		width: 80px;
	}

	/* Blog pages */

	.post-item.border .post-meta-category, .load-more a {
		font-size: 16px;
		line-height: 20px;
	}

	.blog-posts p {
		font-size: 16px;
		line-height: 24px;
	}

	.blog-posts .sixcolumn-blog .lower-portion .text-mr {
		margin-right: 46px;
	}

	.blog-section .generic-title {
		margin-bottom: 30px;
	}

	.blog-text-details {
		padding: 20px 15px 35px 15px;
		width: 94%;
		margin-top: -30px;
	}

	.blog-text-details .comments span,
	.blog-text-details .comments span small {
		font-size: 13px;
		line-height: 14px;
		letter-spacing: 1px;
	}

	.blog-text-details .comments {
		margin-bottom: 6px;
	}

	.blog-text-details p {
		line-height: 24px;
	}

	.blog-text-details .blog-btn a::after {
		bottom: -4px;
	}

	.blog-inner-section {
		gap: 15px;
		grid-template-columns: 31.8% 31.8% 31.8%;
	}

	/* blog page styling start here */
	/* .blog-tabs-section {
		padding-bottom: 140px !important;
	} */

	.blog-tabs-inner-section .nav-tabs a.nav-link {
		font-size: 16px;
		padding: 7px 16px;
	}

	.blog-tabs-inner-section .nav-tabs {
		margin-bottom: 35px;
		gap: 4px;
	}

	.single-blog-outer-con {
		gap: 25px 25px;
		margin-bottom: 40px;
		grid-template-columns: 48% 48%;
	}

	.single-blog-details {
		padding: 25px 20px 40px;
	}

	.single-blog-details ul li {
		/* font-size: 14px; */
		padding-left: 18px;
	}

	.single-blog-details ul {
		gap: 15px;
		margin-bottom: 10px;
	}
	.single-blog-details h4 a {
		font-size: 18px;
		line-height: 24px;
	}
	.single-blog-details h4 {
		margin-bottom: 6px;
	}

	.single-blog-details p {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 15px;
	}

	.blog-tabs-inner-section .pagination .page-link {
		padding: 8px 12px;
		font-size: 18px;
		line-height: 18px;
		min-height: 36px;
		border-radius: 0;
	}

	.fourcolumn-blog .post-item-wrap .post-image img {
		height: 233px;
	}

	.fourcolumn-blog .post-item-wrap .post-video iframe,
	.fourcolumn-blog .post-item-wrap .post-video {
		height: 233px;
	}

	.onecolumn-blog .post-item-wrap .post-video iframe,
	.onecolumn-blog .post-item-wrap img {
		height: 287px;
	}
	/* special classes for blog  */
	.padding-top {
		padding-top: 60px;
	}

	.padding-bottom {
		padding-bottom: 125px;
	}

	.load-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap img,
	.load-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video iframe,
	.blog-box.hide-blog .post-item-wrap img {
		height: 487px;
	}

	.twocolumn-blog .post-item-wrap .post-video iframe,
	.twocolumn-blog .post-item-wrap img,
	.twocolumn-blog .post-item-wrap .post-video {
		height: 287px;
	}

	.three-column-con .blog-box img,
	.three-column-con .blog-box .post-item-wrap iframe,
	.three-column-con .blog-box .post-item-wrap .post-video {
		height: 230px;
	}

	
	.blogpage-section .threecolumn-blog .date{
		margin-bottom: 0;
	}
	
	.blogpage-section .blog-box.threecolumn-blog .button-portion {
		padding: 12px 20px;
	}

	.threecolumn-blog .post-image img,
	.threecolumn-blog .post-item-wrap iframe,
	.threecolumn-blog .post-item-wrap .post-video {
		height: 222px;
	}

	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 250px;
	}

	.singleblog-section .box5 .feed {
		width: 500px;
		justify-content: center;
		margin: 0 auto 20px;
		/* padding-bottom: 20px; */
	}

	.singleblog-section .box5 .feed a {
		font-size: 14px;
		line-height: 20px;
		padding: 0 20px;
	}

}

@media screen and (max-width: 767px) {

	#blog .post-item.border>.post-item-wrap>.post-item-description {
		line-height: 20px;
		font-size: 12px;
	}

	.blog-posts p {
		font-size: 14px;
		line-height: 22px;
		margin-top: 0;
	}

	.sidebar {
		margin: 15px 30px 20px;
	}
	.sidebar .widget-title, .sidebar>h4 {
		font-size: 16px;
		line-height: 22px;
	}

	/* Blog */
	.blogpage-section {
		padding: 40px 0 80px;
	}

	.blogpage-section .blog_content h2 {
		margin-bottom: 25px;
	}
	.three-column-con .blog-box .lower-portion span {
		font-size: 12px;
		line-height: 18px;
	}
	.blogpage-section .blog-box .lower-portion {
		padding: 15px;
	}

	.blogpage-section .blog-box .lower-portion i {
		margin: 0 4px 0 0;
	}
	.three-column-con .blog-box .button-portion span {
		font-size: 12px;
		line-height: 18px;
	}
	.blogpage-section .blog-box .button-portion .calendar-ml {
		font-size: 15px;
	}

	/* .blogpage-section .blog-box .lower-portion .text-size-14 {
		font-size: 14px;
		line-height: 20px;
	} */

	/* .blogpage-section .blog-box .button-portion .text-size-14 {
		font-size: 13px;
		line-height: 20px;
	} */

	/* .blogpage-section .blog-box .lower-portion .text-mr {
		margin-right: 99px;
	} */

	.blogpage-section .blog-box .lower-portion h5 {
		font-size: 16px;
		line-height: 24px;
		/* margin-top: 10px; */
	}

	.blogpage-section .blog-box .button-portion .read_more {
		font-size: 14px;
		line-height: 20px;
		padding: 7px 11px 8px;
	}

	/* Single Blog */
	.singleblog-section {
		padding: 40px 0 110px;
	}

	.singleblog-section .main-box {
		padding: 10px 10px 30px;
		margin-bottom: 25px;
	}

	.singleblog-section .main-box .image1 {
		margin-bottom: 20px;
	}

	.singleblog-section .main-box .content1 h4 {
		margin-bottom: 10px;
	}

	.span-fa-outer-con {
		margin-bottom: 15px;
	}

	/* .singleblog-section .main-box .content1 i {
		margin-bottom: 18px;
	} */

	.singleblog-section .main-box .content1 p { 
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 20px;
	}

	.singleblog-section .main-box .content2 {
		padding: 20px;
		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 h4 {
		font-size: 18px;
		line-height: 22px;
	} */

	.singleblog-section .content4 {
		margin-bottom: 50px;
	}

	.singleblog-section .content4 .tag .button {
		padding: 6px 10px;
	}

	.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: 25px;
	}

	.singleblog-section .content6:after {
		height: 4px;
		left: 21px;
	}

	.singleblog-section .content6 h4 {
		margin-bottom: 30px;
	}

	.singleblog-section .content6 h4:after {
		width: 24%;
	}

	.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 {
		line-height: 18px;
		padding: 12px;
		height: 110px;
	}

	.singleblog-section .content7 input {
		line-height: 18px;
		padding: 8px 12px 10px;
	}

	.singleblog-section .content7 .text-mb {
		margin-bottom: 18px;
	}

	.singleblog-section .content7 .post_comment {
		padding: 13px 20px;
	}

	.singleblog-section .box1 {
		padding: 25px 10px;
		margin-bottom: 25px;
	}

	.singleblog-section .box1 h4 {
		margin-bottom: 28px;
	}
	
	/* .singleblog-section .box1 h4:after {
		width: 88%;
		height: 32px;
	} */

	.singleblog-section .box4 ul {
		text-align: center;
		padding: 0;
	}

	.singleblog-section .box2 ul li a {
		font-size: 14px;
    	line-height: 20px;
	}

	.singleblog-section .box1 input {
		padding: 2px 14px;
		height: 42px;
	}

	.singleblog-section .box1 .search {
		height: 42px;
		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: 4px 10px 6px;
		/* margin-bottom: 8px; */
	}

	.singleblog-section .box4 ul {
		padding: 0 20px;
	}

	/* .singleblog-section .box5 .feed {
		margin-bottom: 0;
	} */

	/* .singleblog-section .box5 .feed:after {
		width: 89%;
		height: 88px;
	} */

	.singleblog-section .box5 .feed .feed-image {
		width: 15%;
	}


	/* Blog pages */
	.blog-posts .load-blog .lower-portion .text-mr {
		margin-right: 20px;
	}

	.blog-posts .load-more a {
		padding: 8px 19px 10px;
		font-size: 14px;
		line-height: 20px;
	}

	.blog-posts .onecolumn-blog .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blog-posts .twocolumn-blog .lower-portion .text-mr {
		margin-right: 40px;
	}
	
	.blogpage-section .twocolumn-blog .lower-portion p {
		font-size: 14px;
		line-height: 22px;
	}

	.blog-posts .three-column .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blogpage-section .blog-box.threecolumn-blog .button-portion {
		padding: 12px 15px;
	}
	.blogpage-section .fourcolumn-blog .post-item-wrap a{
		width: 100%;
	}

	.blog-posts .fourcolumn-blog .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blog-posts .sixcolumn-blog .lower-portion .text-mr {
		margin-right: 40px;
	}

	.blog-section .generic-title {
		margin-bottom: 25px;
	}

	.blog-inner-section {
		gap: 20px;
		grid-template-columns: 100%;
	}

	.blog-box {
		width: 330px;
		margin: 0 auto;
	}

	/* blog section styling start here */
	.blog-tabs-inner-section .nav-tabs {
		display: grid;
		text-align: center;
		margin-bottom: 30px;
		grid-template-columns: 29% 33% 36%;
	}

	.single-blog-outer-con {
		gap: 20px 20px;
		margin-bottom: 30px;
		grid-template-columns: 100%;
	}

	.blog-tabs-inner-section .nav-tabs a.nav-link {
		/* font-size: 18px; */
		padding: 8px 10px;
	}

	.single-blog-box {
		width: 400px;
		margin: 0 auto;
	}

	.blog-banner-section {
		height: 310px;
	}
	.fourcolumn-blog .post-item-wrap .post-image img {
		height: 350px;
	}

	.fourcolumn-blog .post-item-wrap .post-video iframe,
	.fourcolumn-blog .post-item-wrap .post-video {
		height: 350px;
	}

	.onecolumn-blog .post-item-wrap .post-video iframe,
	.onecolumn-blog .post-item-wrap img {
		height: 212px;
	}

	/* special classes for blog */
	.padding-top {
		padding-top: 40px;
	}

	.padding-bottom {
		padding-bottom: 105px;
	}

	.load-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap img,
	.load-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video iframe,
	.blog-box.hide-blog .post-item-wrap img {
		height: 360px;
	}

	.twocolumn-blog .post-item-wrap .post-video iframe,
	.twocolumn-blog .post-item-wrap img,
	.twocolumn-blog .post-item-wrap .post-video {
		height: 212px;
	}

	.three-column-con .blog-box img,
	.three-column-con .blog-box .post-item-wrap iframe,
	.three-column-con .blog-box .post-item-wrap .post-video {
		height: 168px;
	}

	.threecolumn-blog .post-image img,
	.threecolumn-blog .post-item-wrap iframe,
	.threecolumn-blog .post-item-wrap .post-video {
		height: 339px;
	}
	.blogpage-section .fourcolumn-blog .lower-portion p {
		font-size: 14px;
		line-height: 22px;
	  }
	.sixcolumn-blog .post-item-wrap img,
	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 386px;
	}
	.blogpage-section .sixcolumn-blog .lower-portion p {
		font-size: 14px;
    	line-height: 22px;
	}

	.singleblog-section .box5 .feed {
		width: 415px;
	}

	.singleblog-section .box5 .feed a {
		padding: 0 12px;
	}

	.six-main-box .col-xl-2.col-lg-6.col-md-6 {
		max-width: 100% !important;
		width: unset;
		flex: unset;
	}

	.blogpage-section .blog-box .button-portion {
		padding: 12px 15px;
	}

	/* .blog-tabs-section {
		padding-bottom: 120px !important;
	} */
}

@media screen and (max-width: 575px) {
	.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;
	}

	/* .blogpage-section {
		padding: 40px 0;
	} */

	/* .blog-posts p {
		font-size: 15px;
		line-height: 21px;
	} */

	.blogpage-section .blog-box .lower-portion .text-mr {
		margin-right: 100px;
	}

	/* .blogpage-section .blog-box .lower-portion .text-size-14 {
		font-size: 13px;
		line-height: 20px;
	} */

	/* .blogpage-section .blog-box .button-portion .text-size-14 {
		font-size: 13px;
		line-height: 20px;
	} */

	/* Blog */
	.blogpage-section .blog-box figure img {
		width: 100%;
	}

	.blogpage-section .blog-box .lower-portion {
		padding: 20px 15px;
	}

	.blogpage-section .blog-box .lower-portion .text-mr {
		margin-right: 10px;
	}

	.blogpage-section .blog-box .lower-portion h5 {
		margin-right: 0px;
		font-size: 16px;
	}

	/* Single Blog */
	.singleblog-section .main-box {
		margin-bottom: 20px;
	}
	.singleblog-section .main-box .content1 h4 {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 8px;
	}
	.span-fa-outer-con {
		margin-bottom: 10px;
	}
	.singleblog-section .main-box .content2 {
		padding: 20px;
	}

	.singleblog-section .main-box .content2 p {
		font-size: 14px;
    	line-height: 24px;
	}

	.singleblog-section .main-box .content2 .singleblog-quoteimage {
		margin-bottom: 12px;
	}

	.singleblog-section .main-box .content2 .singleblog-quoteimage img {
		width: 26px;
	}
	.singleblog-section .main-box .text {
		font-size: 14px;
		line-height: 20px;
	}
	.singleblog-section .content4 {
		margin-bottom: 90px;
	}

	.singleblog-section .content4 h4 {
		margin-bottom: 10px;
	}

	.text-size-16 {
		font-size: 14px;
		line-height: 20px;
	}

	.singleblog-section .content4 .tag .button {
		margin-bottom: 15px;
	}

	.singleblog-section .content4 .icon h4 {
		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: 38%;
	}

	.singleblog-section .content6 h4 {
		margin-bottom: 22px;
	}
	.singleblog-section .content6 .comment .image img {
		width: 60px;
	}

	.singleblog-section .content6 .comment h5 {
		font-size: 16px;
		line-height: 20px;
	}

	.singleblog-section .content6 .comment span {
		/* margin-bottom: -26px; */
		margin-bottom: -4px;
	}

	.singleblog-section .content6 .comment .reply {
		font-size: 14px;
		line-height: 20px;
		padding: 6px 18px;
		top: -12px;
	}

	.singleblog-section .content7 textarea {
		font-size: 14px;
		line-height: 14px;
		padding: 10px;
		height: 100px;
	}

	.singleblog-section .content7 input {
		font-size: 14px;
		line-height: 14px;
		/* padding: 8px 10px; */
	}

	.singleblog-section .content7 .post_comment {
		font-size: 14px;
		line-height: 14px;
		padding: 12px 15px;
	}

	.singleblog-section .box1 {
		margin-bottom: 20px;
	}

	/* .singleblog-section .box1 h4: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: 0 0 0 12px;
	}

	/* Blog pages */
	.blogpage-section .blog-box .lower-portion .span-i-con {
		margin-bottom: 6px;
	}

	.blog-posts .onecolumn-blog .lower-portion {
		padding: 20px;
	}

	.blog-posts .onecolumn-blog .button-portion {
		padding: 12px 20px 12px 20px;
	}

	.blog-posts .twocolumn-blog .button-portion {
		padding: 12px 20px 12px 20px;
	}

	.blog-posts .twocolumn-blog .lower-portion {
		padding: 20px;
	}

	.blog-posts .threecolumn-blog .button-portion {
		padding: 12px 20px 12px 20px;
	}

	.blog-posts .threecolumn-blog .lower-portion {
		padding: 20px 12px;
	}

	.blog-posts .threecolumn-blog .lower-portion .text-mr {
		margin-right: 15px;
	}

	.blog-posts .fourcolumn-blog .lower-portion {
		padding: 20px;
	}

	.blog-posts .fourcolumn-blog .button-portion {
		padding: 15px 20px 15px 20px;
	}

	.blog-posts .sixcolumn-blog .button-portion {
		padding: 12px 20px 12px 20px;
	}

	.blog-posts .sixcolumn-blog .lower-portion {
		padding: 20px;
	}

	.blog-text-details p {
		font-size: 15px;
		line-height: 21px;
	}

	.blog-section .generic-title {
		margin-bottom: 20px;
	}

	.blog-text-details h4 {
		margin-bottom: 6px;
	}

	.blog-text-details {
		padding: 20px 15px 30px 15px;
	}

	/* blog page styling start here */
	.single-blog-box {
		width: 320px;
		margin: 0 auto;
	}

	.blog-tabs-inner-section .nav-tabs {
		margin-bottom: 20px;
		grid-template-columns: 43.7% 43.7%;
	}

	.single-blog-details {
		padding: 20px 15px 30px;
	}

	.single-blog-details ul {
		gap: 15px;
		margin-bottom: 10px;
	}

	.single-blog-details h4 {
		margin-bottom: 10px;
	}

	/* .single-blog-details p {
		margin-bottom: 12px;
	} */

	.single-blog-outer-con {
		gap: 15px;
	}

	.blog-tabs-inner-section .pagination .page-link {
		padding: 8px 8px;
		font-size: 16px;
		line-height: 16px;
	}

	.blog-tabs-inner-section .disabled i {
		position: relative;
		top: 2px;
	}

	.single-blog-details p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 18px;
	}

	.generic-btn2 a {
		font-size: 12px;
	}

	.blog-banner-section {
		height: 260px;
	}

	.fourcolumn-blog .post-item-wrap .post-image img {
		height: 233px;
	}

	.fourcolumn-blog .post-item-wrap .post-video iframe {
		height: 233px;
	}

	.fourcolumn-blog .post-item-wrap .post-video {
		height: 233px;
	}

	.blog-posts p {
		font-size: 14px;
		line-height: 22px;
	}

	.onecolumn-blog .post-item-wrap .post-video .fluid-width-video-wrapper {
		padding-top: 56%;
	}

	.onecolumn-blog .post-item-wrap .post-video iframe {
		height: 233px;
	}

	.onecolumn-blog .post-item-wrap img {
		height: 200px;
	}

	/* special classes for blog */

	.padding-top {
		padding-top: 40px;
	}

	.padding-bottom {
		padding-bottom: 105px;
	}

	.load-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap img,
	.load-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video iframe,
	.blog-box.hide-blog .post-item-wrap img {
		height: auto;
	}

	.blog-box.hide-blog .post-item-wrap .post-video,
	.blog-box.hide-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap .post-video iframe,
	.load-blog .post-item-wrap .post-video {
		height: 220px;
	}

	.blogpage-section .twocolumn-blog .lower-portion p {
		font-size: 14px;
		line-height: 22px;
	}

	.twocolumn-blog .post-item-wrap img {
		height: auto;
	}

	.twocolumn-blog .post-item-wrap .post-video iframe,
	.twocolumn-blog .post-item-wrap .post-video {
		height: 200px;
	}

	.three-column-con .blog-box img {
		height: auto;
	}

	.three-column-con .blog-box .post-item-wrap iframe,
	.three-column-con .blog-box .post-item-wrap .post-video {
		height: 250px;
	}

	.threecolumn-blog .post-image img {
		height: auto;
	}

	.threecolumn-blog .post-item-wrap iframe,
	.threecolumn-blog .post-item-wrap .post-video {
		height: 200px;
	}

	.sixcolumn-blog .post-item-wrap img {
		height: auto;
	}

	.sixcolumn-blog .post-item-wrap iframe,
	.sixcolumn-blog .post-item-wrap .post-video {
		height: 200px;
	}

	.blog-tabs-inner-section .nav-tabs a.nav-link {
		font-size: 16px;
	}

	.singleblog-section .box5 .feed {
		width: 298px;
	}


}

@media screen and (max-width: 350px) {
	.singleblog-section .box5 .feed {
		width: 290px;
		margin: 0 auto 20px;
		padding-bottom: 0;
	}
}