:root {
    --theme-color: #37AA67;
    --secondary-color: #0B1784;
    --pink-color: #FFC0CB;
    --violet-color: #7F00FF;
    --crimson-color: #DC143C;
    --orange-color: #FFA500;
    --text-color: #6A6A6A;
    --title-color: #111111;

}

/** main-header **/

.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}


/*** Search Popup ***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.80);
    -webkit-transform: translateY(101%);
    -ms-transform: translateY(101%);
    transform: translateY(101%);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.search-popup .popup-inner {
    width: 100%;
    background: #fff;
    height: 100%;
}

.search-popup .upper-box {
    position: relative;
    padding: 70px 70px;
    z-index: 99;
}

.search-popup .upper-box .logo-box {
    max-width: 157px;
}

.search-popup .overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
}

.search-popup .close-search {
    position: relative;
    font-size: 25px;
    color: #141417;
    cursor: pointer;
    z-index: 5;
    top: 11px;
    transition: all 500ms ease;
}

.search-popup .close-search:hover {
    color: red;
}

.search-popup .search-form1 {
    position: relative;
    width: 100%;
    padding: 100px 0px 250px 0px;
}

.search-popup .search-form1 .form-group1 {
    position: relative !important;
    margin: 0px !important;

}

.search-popup .search-form1 fieldset input[type="search"] {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    height: 90px;
    padding: 20px 25px 11px 23px;
    background: #ffffff;
    line-height: 30px;
    font-size: 20px;
    color: #808080;
    font-family: 'Poppins', sans-serif;
    border: none;
    font-weight: 400;
    border-radius: 0px;
    padding-right: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.search-popup .search-form1 fieldset button[type="submit"] {
    border: none;
    position: absolute;
    top: 30px;
    right: 36px;
    font-size: 25px;
    color: #141417;
    cursor: pointer;
    transition: all 500ms ease;
}

.search-popup .search-form1 fieldset input[type="search"]:focus {
    border-color: #141417;
}

.search-popup .form-control:focus {
    box-shadow: none !important;
}



.header-top .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 22px 6px 1px;

    background: #113281;
}

.header-top .top-inner:before {
    position: absolute;
    content: '';
    background: #153D9A;
    width: calc(50% + 30px);
    height: 100%;
    top: 0px;
    right: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 5% 0%);
}

.header-top .top-inner p {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    padding-left: 9px;
}

.header-top .top-inner p i {
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 18px;
}

.header-top .top-inner .social-links {
    margin: 0;
    list-style-type: none;
    position: relative;
    display: flex;
    align-items: center;
}

.header-top .top-inner .social-links li {
    margin-right: 25px;
}

.header-top .top-inner .social-links li:last-child {
    margin: 0px;
}

.header-top .top-inner .social-links li span {
    font-size: 15px;
    line-height: 24px;
    color: #fff;
}

.header-top .top-inner .social-links li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
}

.header-top .top-inner .social-links li a:hover {}

.main-header .header-lower .outer-box {
    position: relative;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    box-shadow: 0px 10px 50px 0px #00000014;
    height: 72px;
}

.main-header .header-lower .outer-box:before {
    position: absolute;
    content: '';
    background: #F7F7F7;
    width: calc(50% + 80px);
    height: 100%;
    top: 0px;
    right: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 7% 0%);
}

.main-header .logo-box .logo {
    position: relative;
    max-width: 157px;
    top: 5px;
    right: 41px;

}


/** language-switcher **/

.main-header .menu-right-content {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .search-box-outer {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--title-color);
    cursor: pointer;
    transition: all 500ms ease;
}

.main-header .menu-right-content .search-box-outer:hover {}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/** main-menu **/

.main-menu {
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation>li {
    position: inherit;
    float: left;
    z-index: 2;
    margin: 0px 19px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    padding-top: 27px;
    padding-bottom: 27px;
    font-weight: 600;
    font-family: var(--text-font);
    opacity: 1;
    color: var(--title-color);
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation>li.dropdown>a {
    padding-right: 17px;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {}

a {
    text-decoration: none !important;
}



.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: var(--secondary-color);
    display: none;
}

.mobile-menu .nav-logo img {
    max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}


.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
    padding-bottom: 100px;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #141417;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 900ms ease !important;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

.main-header .outer-box {
    position: relative;
}


*/.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a,
.header-top .top-inner p i,
.header-top .top-inner .social-links li a:hover,
.main-header .menu-right-content .search-box-outer:hover {
    color: var(--theme-color) !important;
}





/* FOOTER CSS STARTS FROM HERE */




/* 
for footer ends */

img {
    display: inline-block;

    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


/* Preloader */

/* AnimaciÃ³n del preloader */

.auto-container {
    position: static;
    max-width: 1350px;
    padding: 0px 15px;
    margin: 0 auto;
}

.list {
    list-style-type: none;
}

.pull-right {
    float: right;
}

h4 {
    position: relative;
    font-family: var(--title-font);
    font-weight: 500;


    transition: all 500ms ease;
}

.fontt {

    font-size: 20px !important;
}




.social-links a:hover {
    color: inherit;
    /* Apply the inherited color */
}

/* Specific colors for each platform */
.social-links a[title="facebook"]:hover {
    color: #4267B2 !important;
    /* Facebook blue */
}

.social-links a[title="twitter"]:hover {
    color: black !important;
}

.social-links a[title="linkedin"]:hover {
    color: #0077B5 !important;
    /* LinkedIn blue */
}

.social-links a[title="youtube"]:hover {
    color: #FF0000 !important;
    /* YouTube red */
}

.heightt {

    height: 97px !important;


}





:root {
    --primary-color: #1ccabd;
    --blue-color: #273d71;
    --dark-color: #13234a;
    --secondary-color: #888888;
    --grey-color: #f5f9ff;
    --white-color: #ffffff;
    --body-fonts: 'Open Sans', sans-serif;
    --title-fonts: 'Rajdhani', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

.pt-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}



*/.main-menu .navigation>li.current>a {
    color: var(--theme-color) !important;
}





/* FOOTER CSS STARTS FROM HERE */




/* 
for footer ends */

img {
    display: inline-block;

    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


/* Preloader */

/* AnimaciÃ³n del preloader */

.auto-container {
    position: static;
    max-width: 1350px;
    padding: 0px 15px;
    margin: 0 auto;
}

h4,
h5,
h6 {
    position: relative;
    font-family: var(--title-font);
    font-weight: 500;


    transition: all 500ms ease;
}

/* Specific colors for each platform */

.menu {
    padding-left: 0px !important;

}




.pt-button {
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 2;
    font-size: 14px;
    padding: 12px 30px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    fill: var(--white-color);
    transition: all 0.5s ease-in-out;
    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;
    -webkit-transition: all 0.5s ease-in-out;
}

.pt-button:hover,
.pt-button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

.widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin: 0 0 15px 0;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul li a {
    padding: 0 0 0 15px;
    color: var(--secondary-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    position: relative;
}

.widget ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.pt-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}


.pt-foote-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pt-foote-recent-post:last-child {
    margin-bottom: 0;
}

.pt-foote-recent-post .pt-foote-recent-post-media {
    margin-right: 15px;
}

.pt-foote-recent-post .pt-foote-recent-post-media img {
    width: 100px;
    height: 100px;
}

.pt-foote-recent-post .pt-foote-recent-post-info {
    flex: 1;
    align-self: center;
}

.pt-foote-recent-post .pt-foote-recent-post-info .pt-post-date {
    font-size: 12px;
    line-height: 24px;
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    width: 100%;
    display: inline-block;
}

.pt-foote-recent-post .pt-foote-recent-post-info h6 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
}

.pt-foote-recent-post .pt-foote-recent-post-info h6 a:hover {
    color: var(--primary-color);
}

.pt-subscribe {
    display: inline-block;
    width: 100%;
    background: var(--dark-color);
    color: var(--white-color);
    padding-top: 35px;
    position: relative;
    z-index: 10;
}

.pt-subscribe-block {
    display: flex;
    align-items: center;
}

.pt-subscribe-block .pt-subscribe-img {
    width: 55px;
    color: var(--primary-color);
}

.textcolor {
    color: white;
}

.pt-subscribe-block .pt-subscribe-details {
    margin-left: 30px;
    color: var(--white-color);
    flex: 1;
    padding-right: 80px;
}

.pt-subscribe-block .pt-subscribe-details h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
    color: var(--white-color);
    font-weight: 600;
}

.pt-subscribe-from .mc4wp-form-fields {
    display: flex;
}

.pt-subscribe-from #mc4wp-form-1 {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pt-subscribe-from input {
    border: none;
}

.pt-subscribe-from input.form-control {
    padding: 0 15px;
    width: 76%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.pt-subscribe-from input.form-control::-webkit-input-placeholder {
    color: var(--white-color);
}

.pt-subscribe-from input.submit {
    background: var(--primary-color);
    margin-left: 30px;
    text-transform: uppercase;
}

.pt-subscribe-from input.submit:hover {
    background: var(--blue-color);
}

.pt-subscribe .pt-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-top: 35px;
    width: 100%;
}

footer#pt-footer {
    background: var(--dark-color);
    display: inline-block;
    width: 100%;
    color: var(--white-color);
    float: left;
    position: relative;
}

footer#pt-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer#pt-footer .pt-footer-top {
    padding: 60px 0 0;
    position: relative;
    z-index: 9;
}

footer#pt-footer .pt-copyright-footer {
    padding: 7px 0;
    background: var(--blue-color);
    position: relative;
    z-index: 9;
}

footer#pt-footer .pt-copyright-footer .pt-copyright {
    display: inline-block;
    width: 100%;
    color: var(--white-color);
}


footer#pt-footer .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 45px;
}

footer#pt-footer .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 20px;
    position: relative;
    line-height: 36px;
}

footer#pt-footer .widget ul li {
padding:0 0 0 0 !important;
    margin: 0 0 9px 0;
}

footer#pt-footer .widget ul li a {
    padding: 0 0 0 15px;
    display: inline-block;
}

footer#pt-footer .widget ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
}

footer#pt-footer .widget ul.pt-contact li a {
    padding: 0;
}

footer#pt-footer .widget ul.pt-contact li {
    display: flex;
    align-items: center;
}

footer#pt-footer .widget ul.pt-contact li a:before {
    display: none;
}

footer#pt-footer .pt-footer-social ul li a:before {
    display: none;
}

footer#pt-footer .widget ul li a:hover {
    color: var(--primary-color);
}

footer#pt-footer .widget ul.menu li a {
    position: relative;
    border: none;
    padding: 0 0 0 15px;
    display: inline-block;
    width: 100%;
}

footer#pt-footer .widget ul.menu li a:first-child {
    padding-top: 0;
}

footer#pt-footer .widget ul.menu li a:hover {
    color: var(--primary-color);
}

footer#pt-footer .widget ul.menu li a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
}

/*=========*/
footer#pt-footer .pt-footer-style-1 .pt-footer-social {
    display: inline-block;
    float: right;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul {
    margin: 0;
    padding: 0
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li {
    list-style: none;
    float: left;
    margin: 0 5px 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li:last-child {
    margin: 0;
}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a {
       background: #13234a;
    color: var(--white-color);
    width: 43px;
     line-height: 50px;
    text-align: center;
    display: flex
;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    justify-content: center;
    padding: 8px 6px 8px 6px;

}

footer#pt-footer .pt-footer-style-1 .pt-footer-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#pt-footer .pt-footer-style-1 .pt-foote-recent-post .pt-foote-recent-post-info h6 {
    color: var(--white-color);
}

/*=========*/
footer#pt-footer .widget:first-child {
    margin-bottom: 45px;
}

footer#pt-footer .pt-footer-logo {
    height: 60px;
    margin-bottom: 30px;
    width: auto;
}

footer#pt-footer .widget .footer-title {
    color: var(--white-color);
}

footer#pt-footer .widget ul.menu li a,
footer#pt-footer .widget ul li a {
    color: var(--white-color);
    text-decoration: none;

}



footer#pt-footer .widget ul.menu li,
footer#pt-footer .widget ul li {
    color: var(--white-color);
}

footer#pt-footer .pt-footer-social ul li a {
    padding: 0;
}

@media(max-width:1190px) {

    .pt-subscribe-block .pt-subscribe-details {
        padding-right: 0;
    }
}

@media(max-width:991px) {
    .pt-subscribe-block {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    footer#pt-footer .pt-copyright-footer {
        text-align: center;
    }

    footer#pt-footer .pt-footer-style-1 .pt-footer-social {
        margin-top: 15px;
        float: none;
    }
}

@media(max-width:576px) {
    .pt-subscribe-from .mc4wp-form-fields {
        display: block;
    }

    .pt-subscribe-from input.form-control {
        float: none;
        width: 100%;
    }

    .pt-subscribe-from input.submit {
        margin-left: 0;
        margin-top: 15px;
        float: none;
        width: 100%;
    }
}

footer#pt-footer:before {
    background-image: url('<?php echo base_url();?>assets/imagesnew/White_4.png') !important;

}