/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap);
:root {
    --theme-color: #2171C4;
    --secondary-color: #FFEFCA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: rgb(70, 70, 70);
    background-color: rgb(255, 255, 255);
    font-size: 15px;
}

a {
    color: var(--theme-color);
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #e65d5f;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 4px 0;
}

#header.header-scrolled {
    /* padding: 12px 0; */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #111111;
}

#header .logo a span {
    color: #e03a3c;
}

#header .logo img {
    width: 133px;
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/

.get-started-btn {
    margin-left: 30px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.get-started-btn:hover {
    background: #111111;
    color: #fff;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 23px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--theme-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #e03a3c;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #e03a3c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-slider-1.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 82px;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
}

#hero .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

.z-9 {
    z-index: 9;
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        padding-top: 58px;
    }
    #hero h1 {
        font-size: 28px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e03a3c;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 120px 0;
    color: #fff;
}

.section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
}


/*--------------------------------------------------------------
# Short service
--------------------------------------------------------------*/

.topservice {
    position: relative;
}

.topservice .inner-box {
    position: relative;
    text-align: center;
    padding: 55px 30px 35px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    transition: .7s;
    background-color: #fff;
    border-bottom: 2px solid #999;
    overflow: hidden;
}

.topservice .inner-box:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .8s;
    transform: translateY(-30px);
}

.topservice .inner-box.active:before,
.topservice .inner-box:hover:before {
    opacity: 1;
    transform: translateY(0);
}

.topservice .icon {
    position: relative;
    overflow: hidden;
    width: 112px;
    height: 112px;
    line-height: 112px;
    text-align: center;
    border-radius: 50%;
    background-color: #e8f4f1;
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.topservice h4 {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: .5s;
    color: #000;
}

.topservice .inner-box.active h4,
.topservice .inner-box:hover h4 {
    color: #fff;
}

.text {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: #555555;
    margin: 0px 0px 15px;
}

.topservice .inner-box.active .text,
.topservice .inner-box:hover .text {
    color: #fff;
}

.topservice .lower-content {
    position: relative;
    transition: .5s;
    padding-bottom: 100px;
    margin-bottom: -66px;
}

.topservice .inner-box.active .lower-content,
.topservice .inner-box:hover .lower-content {
    padding-bottom: 100px;
    margin-bottom: -66px;
}

.topservice .lower-content .read-more-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 67px;
    font-size: 16px;
    text-transform: uppercase;
    transition: .5s;
    transform-origin: top;
    opacity: 1;
    transform: scale(1);
}

.topservice .inner-box.active .lower-content .read-more-btn,
.topservice .inner-box:hover .lower-content .read-more-btn {
    opacity: 1;
    transform: scale(1);
}

.topservice .lower-content .read-more-btn a {
    display: inline-block;
    color: #222222;
}

.topservice .inner-box.active .lower-content .read-more-btn a,
.topservice .inner-box:hover .lower-content .read-more-btn a {
    color: #ffffff;
}

.topservice .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: .9s;
    opacity: .3;
}

.topservice .inner-box:hover .hover-icon {
    transform: scale(1.5);
    opacity: 0;
}

.topservice .inner-box:before {
    background-color: var(--theme-color);
}

.sec_title h2 {
    color: #000000;
    font-family: Poppins;
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    text-align: left;
}

.sec_title h4 {
    position: relative;
    font-size: 18px;
    color: #737373;
    font-weight: 400;
    padding-top: 20px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
}

.about_right i {
    color: var(--theme-color);
}

.sec_para li {
    padding-bottom: calc(12px/2);
    font-weight: 500;
}

.coursepackage img {
    height: 14em;
    object-fit: cover;
}


/*Btn Style One*/

.drive_btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    padding: 16px 30px;
    padding-right: 55px;
    font-weight: 600;
    border-radius: 3px;
    overflow: hidden;
    text-transform: capitalize;
    vertical-align: middle;
}

.drive_btn:hover {
    color: #fff;
}

.drive_btn:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    content: "";
    background-color: #000;
    transition: .5s;
    opacity: .1;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
}

.drive_btn:hover:before {
    width: 100%;
    border-radius: 0;
}

.drive_btn span {
    position: relative;
}

.drive_btn:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    position: absolute;
    right: 26px;
    top: 16px;
    line-height: 25px;
    font-size: 17px;
    color: #fff;
}


/* CTA Section */

.cta-section {
    text-align: center;
    padding: 110px 0 100px;
    background-size: cover;
}

.cta-section h5 {
    position: relative;
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cta-section h2 {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 50px;
}

.cta-section .link-box a {
    margin: 0 10px 10px;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    padding: 16px 30px;
    padding-right: 55px;
    font-weight: 600;
    border-radius: 3px;
    overflow: hidden;
    text-transform: capitalize;
    vertical-align: middle;
    background: var(--theme-color);
}

.btn-style-one.style-two {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 14px 30px;
    padding-right: 55px;
}

.price {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.thumb {
    position: relative;
    margin-bottom: 15px;
}

.thumb img {
    border-radius: 50%;
    width: auto;
    margin: 0 auto;
    height: unset
}

.price h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--theme-color);
}


/* Style Three */

.drive_btn.drive_btn1 {
    background-color: transparent;
    border: 2px solid #ddd;
    color: #222222;
    padding: 14px 30px;
    padding-right: 55px;
}

.drive_btn.drive_btn1:after {
    top: 14px;
}

.drive_btn.drive_btn1:before {
    background-color: #e8f4f1;
    opacity: 1;
}


/* review */

.testimonial {
    font-size: 0.9rem;
    line-height: 1.4rem;
    font-weight: 500
}

.active-star {
    color: #FBC02D;
    margin-bottom: 8px
}

.active-star:hover {
    color: #F9A825;
    cursor: pointer
}

.profile {
    padding-top: 10px
}

.name {
    font-weight: 700
}

.designation {
    font-size: 0.84rem;
    font-weight: 600
}

.review .owl-carousel .owl-item img {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    object-fit: cover
}

.review .owl-theme .owl-nav [class*='owl-'] {
    border-radius: 50% !important;
    background: inherit !important;
    border: 3px solid #bbb;
    color: #bbb !important
}

.review .owl-theme .owl-nav [class*='owl-']:hover {
    border: 3px solid var(--theme-color);
    color: var(--theme-color) !important
}

.bt1 {
    background: var(--theme-color);
    margin: 0 auto;
    padding: 30px 22px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #fff;
    font-size: 14px;
    background: #111111;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1b1b1b;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #e03a3c;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--theme-color);
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #aaaaaa;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--theme-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: var(--theme-color);
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--theme-color);
    color: #fff;
    text-decoration: none;
}

.portfolio_btn:hover {
    color: #000;
}

.portfolio_btn:hover:after {
    color: #000 !important;
}

.portfolio_btn:hover {
    color: #000 !important;
}


/* breadcrumb */

.breadcrumb-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 135px 0 115px;
    overflow: hidden;
}

.op-8 {
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-downriver {
    background-color: #091851;
}

.breadcrumb-title {
    position: relative;
    z-index: 1;
    width: 100%;
}

.breadcrumb-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb-title h2,
    .section-title h2,
    .content-title h2 {
        font-size: 38px;
    }
}

.breadcrumb-title .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.breadcrumb-title .breadcrumb-menu li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.breadcrumb-title .breadcrumb-menu li:first-child a {
    padding-left: 0;
}

.breadcrumb-title .breadcrumb-menu li a {
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    padding: 0px 5px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.bg-cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
}

.breadcrumb-title .breadcrumb-menu li:after {
    position: absolute;
    top: 1px;
    right: -13px;
    content: "/";
    font-size: 16px;
    background-color: transparent;
    color: #fff;
}


/* portfolio */

.ourportfolio .card {
    background-color: #efefef;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    background-size: contain;
    height: 36.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.congratsimg {
    object-fit: cover;
    width: 18em;
    height: 18em;
    border-radius: 100%;
    margin: auto;
    display: flex;
    border: 5px solid #fff;
}

img.img-fluid.tagimg {
    width: 244px;
    display: flex;
    margin: auto;
    position: absolute;
    top: -74px;
    bottom: 0;
    left: 0;
    right: 0;
}


/* contact us */

ul.contactwrap {
    padding: 0;
}

ul.contactwrap li {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 25px;
    border-bottom: 1px solid #eaeaea;
}

ul.contactwrap li h6 {
    font-size: 18px;
    line-height: 24px;
    padding-left: 37px;
}

ul.contactwrap li:last-child {
    border: 0;
}

ul.contactwrap li i {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 20px;
    /* font-weight: 400; */
}

.spacing-7 {
    padding-top: 60px !important;
    padding-right: 65px !important;
    padding-bottom: 50px !important;
    padding-left: 50px !important;
}

.bgcolor {
    background-color: var(--theme-color);
}

.allcontact {
    z-index: 9;
    position: relative;
}

.myul li {
    color: #fff;
}

.form-control {
    border: 1px solid #eeeeee;
    border-radius: 0px;
    padding: 10px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    background: #f6f6f6;
    color: #022d62;
    border-radius: 5px;
    background-clip: inherit !important;
}

@media(max-width:767px) {
    .sec_title h2 {
        font-size: 30px;
        line-height: 36px;
        text-align: left;
    }
    .section-title {
        padding-bottom: 3px;
    }
    .cta-section h2 {
        position: relative;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 33px;
        margin-bottom: 7px;
        padding: 15px;
    }
}


/* aboutus */

.about_inner .info-thumb {
    overflow: hidden;
    display: inline-block;
}

@media (max-width: 800px) {
    .about_inner .info-content {
        text-align: left;
        padding: 80px 30px 80px 0;
    }
}

.about_inner .info-content {
    box-shadow: 0px 0px 50px 0px rgba(157, 157, 157, 0.3);
    position: relative;
    background: var(--secondary-color);
    padding: 80px 100px 80px 40px;
}

@media (max-width: 575px) {
    .about_inner .info-content {
        margin-top: 30px;
    }
}

.about_inner .info-content:after {
    content: "";
    /* box-shadow: -35.355px 35.355px 50px 0px rgba(157, 157, 157, 0.3); */
    position: absolute;
    right: 100%;
    top: 0;
    background: var(--secondary-color);
    width: 70px;
    height: 100%;
}

@media (max-width: 991px) {
    .about_inner .info-content:after {
        width: 50px;
    }
}

@media (max-width: 575px) {
    .about_inner .info-content:after {
        display: none;
    }
}

@media (max-width: 991px) {
    .about_inner .info-content {
        padding: 30px 30px 30px 0;
    }
}

@media (max-width: 575px) {
    .about_inner .info-content {
        padding: 30px;
    }
}

.about_inner .info-content h1 {
    line-height: 1.15em;
    margin-bottom: 30px;
}

.about_inner .info-content .meta {
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-top: 20px;
}

.about_inner .info-left {
    z-index: 2;
    margin: auto;
}

.info-content p {
    color: #fff;
}

.info-content h2 {
    color: #fff;
}

@media (max-width: 800px) {
    .about_inner .info-left {
        margin-top: 0px;
        margin-bottom: 40px;
    }
    .congratsimg {
        object-fit: cover;
        width: 10em;
        height: 10em;
        border-radius: 100%;
        margin: auto;
        display: flex;
        border: 5px solid #fff;
    }
    img.img-fluid.tagimg {
        width: 156px;
        display: flex;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 82px;
        left: 0;
        right: 0;
    }
    .ourportfolio .card-text p {
        font-size: 11px;
        /* height: 9em; */
    }
    .coursepackage .card {
        height: 100%;
    }
    .ourportfolio .card {
        width: 100%;
        height: 25em;
        background-repeat: no-repeat;
        background-size: contain;
        padding: 1px !important;
    }
}


/* timeline */

.main-timeline {
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline .timeline {
    width: 50%;
    margin: 0 10px 30px 0;
    float: left;
}

.main-timeline .timeline-content {
    color: #fff;
    text-align: right;
    display: block;
    position: relative;
    z-index: 1;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
    content: "";
    background: #E91E63;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-clip-path: polygon(10% 0, 100% 10%, 95% 100%, 0 90%);
    clip-path: polygon(10% 0, 100% 10%, 95% 100%, 0 90%);
}

.main-timeline .timeline-content:after {
    background-color: #000;
    z-index: -2;
    -webkit-clip-path: polygon(10% 10%, 95% 0, 90% 90%, 5% 100%);
    clip-path: polygon(10% 10%, 95% 0, 90% 90%, 5% 100%);
}

.main-timeline .timeline-icon {
    color: #fff;
    background-color: #E91E63;
    font-size: 40px;
    text-align: center;
    line-height: 90px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0 0 7px #000, 0 0 0 22px #fff, 0 0 10px 20px #000;
    display: block;
    transform: translateY(-50%);
    position: absolute;
    top: 60%;
    right: -45px;
}

.main-timeline .inner-content {
    padding: 30px 85px 40px 40px;
}

.main-timeline .title {
    font-size: 20px;
    font-weight: 800;
    text-transform: capitalize;
    /* margin: 0 0 10px; */
}

.main-timeline .description {
    font-size: 15px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    float: right;
    margin: 0 0 30px 10px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before,
.main-timeline .timeline:nth-child(even) .timeline-content:after {
    transform: rotateY(180deg);
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: -45px;
    right: auto;
}

.main-timeline .timeline:nth-child(even) .inner-content {
    padding: 30px 40px 40px 85px;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+2) .timeline-icon {
    background-color: #2196F3;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+3) .timeline-icon {
    background-color: #009688;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+4) .timeline-icon {
    background-color: #FF5722;
}

@media screen and (max-width:767px) {
    .main-timeline .timeline {
        width: 100%;
        margin: 0 0 40px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        text-align: left;
        margin: 0 0 0 40px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline-content:after {
        transform: rotateY(180deg);
    }
    .main-timeline .timeline-content:before {
        -webkit-clip-path: polygon(3% 0, 100% 5%, 97% 100%, 0 95%);
        clip-path: polygon(3% 0, 100% 5%, 97% 100%, 0 95%);
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        font-size: 30px;
        line-height: 60px;
        height: 60px;
        width: 60px;
        box-shadow: 0 0 5px #000, 0 0 0 10px #fff, 0 0 10px 7px #000;
        right: auto;
        left: -30px;
        top: 50%;
    }
    .main-timeline .inner-content,
    .main-timeline .timeline:nth-child(even) .inner-content {
        padding: 30px 20px 40px 50px;
    }
    .main-timeline .title {
        font-size: 18px;
    }
}

.a1 {
    font-size: 26px;
    color: var(--theme-color);
}
