/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
:root {
    --eduact-base: #0b425e;
    --eduact-soft2: #F6F5F5;
    --eduact-black2-rgb: 0, 0, 0;
    --eduact-secondary: #7ecfd2;
    --eduact-white: #fff;
    --educate-text: #818181;
    --educate-heading: #141516;
    --educate-placeholder: rgba(0, 0, 0, 0.5);
    --eduact-orange: #E67E22;
}

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-font-variant-ligatures: common-ligatures;
    /* for iOS and Safari 6 */
    font-variant-ligatures: common-ligatures;
    /* for up-to-date browsers, including IE10 and Opera 21 */
    font-kerning: normal;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
}

/* Common :: START */
.elementor-widget .elementor-icon-list-item,
.elementor-widget .elementor-icon-list-item a {
    display: inline-flex;
}

body .ti-widget[data-layout-id='14'][data-set-id='light-background'] .ti-widget-container,
body .ti-widget[data-layout-id='14'][data-set-id='light-background'] .ti-widget-container * {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.welcomeFadeup {
    position: fixed;
    top: 0;
    transition: .6s easeOutExpo;
    z-index: 9999;
    background: var(--eduact-base);
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 0;
    right: 0;
}

.welcomeFadeup .loading-container {
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 30px;
}

.welcomeFadeup .loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 200px;
}

.welcomeFadeup .loading-logo .s0loader {
    animation: colorChange 3s linear infinite;
}

.welcomeFadeup .loading-logo .s1loader {
    animation: colorChange1 3s linear infinite;
}

@keyframes colorChange {
    0% {
        fill: var(--eduact-secondary);
    }

    50% {
        fill: var(--eduact-white);
    }

    100% {
        fill: var(--eduact-soft2);
    }
}

@keyframes colorChange1 {
    0% {
        fill: var(--eduact-soft2);
    }

    50% {
        fill: var(--eduact-secondary);
    }

    100% {
        fill: var(--eduact-white);
    }
}

/* Common :: END */
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--eduact-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--eduact-base);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--eduact-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/* Mobile menu :: START */
.mobile-btm-menu .elementor-icon-list-item>* {
    flex-direction: column;
}

.mobile-btm-menu .elementor-icon-list-items {
    display: flex;
}

.mobile-btm-menu .elementor-widget .elementor-icon-list-item {
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 5px;
}

.mobile-btm-menu .elementor-icon-list-item .elementor-icon-list-icon,
.mobile-btm-menu .elementor-icon-list-item .elementor-icon-list-text {
    width: 100%;
    padding: 0;
}

.elementor-widget.elementor-list-item-link-full_width a {
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
}

.mobile-btm-menu {
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 99;
}

.mobile-btm-menu .elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text {
    padding: 0;
}

.mobile-btm-menu .elementor-icon-list-item .elementor-icon-list-icon {
    height: 20px;
    align-items: center;
    justify-content: center;
}

.mobile-btm-menu .elementor-icon-list-item .elementor-icon-list-icon svg {
    margin: 0;
}

/* scroll to top */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px RGBA(var(--eduact-black2-rgb), 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: var(--eduact-white);
}

.hide-in-admin {
    /* display: none; */
}

.scroll-top--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    height: 50%;
    width: 50%;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: transparent;
    background-image: url('data:image/svg+xml,<svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-up" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" fill="%230B425E"></path></svg>');
    background-repeat: no-repeat;
    margin: auto;
	background-position: center;
}
.mobile-btm-menu {
    height: 48px;
}
.scroll-top__circle path {
    stroke: var(--eduact-base);
    stroke-width: 4;
    fill: none;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.cmn-btn-hv .elementor-button {
    position: relative;
    overflow: hidden;
}

.cmn-btn-hv .elementor-button:before {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--eduact-soft2);
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.cmn-btn-hv .elementor-button:hover:before {
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

/* Banner :: START */
.anim-cb svg path {
    animation: change-background 4s ease infinite;
}

@keyframes change-background {
    0% {
        fill: var(--eduact-base);
    }

    50% {
        fill: var(--eduact-secondary);
    }

    100% {
        fill: var(--eduact-base);
    }
}

.anim-float-bob-y-2 img {
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-y-2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.anim-rotated img {
    -webkit-animation: rotated 20s infinite linear;
    animation: rotated 20s infinite linear;
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.anim-change-background svg path {
    animation: change-background 4s ease infinite;
}

@keyframes change-background {
    0% {
        fill: var(--eduact-base);
    }

    50% {
        fill: var(--eduact-secondary);
    }

    100% {
        fill: var(--eduact-base);
    }
}

.sec-banner .shape-svg-100 {
    margin: auto;
    width: calc(100% + 140px);
    height: calc(100% + 140px);
}

.shape-svg-100 svg {
    width: 100%;
    height: 100%;
}

/* Banner :: END */
/* Services :: START */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* Services :: END */
/* Footer :: START */
@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.site-footer {
    padding: 0;
}

.footer-nav-menu {
    color: var(--eduact-white);
}

.footer-nav-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav-menu ul li {
    display: block;
    font-size: var(--e-global-typography-a7ae322-font-size);
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.footer-nav-menu ul li a {
    font: inherit;
    color: var(--eduact-white);
    padding-left: 0;
    transition: all 500ms ease;
}

.footer-nav-menu ul li a:hover {
    padding-left: 5px;
    color: var(--eduact-secondary);
}

.footer-nav-menu h5 {
    /*font-size: var(--e-global-typography-c098209-font-size);*/
    margin-top: 0;
}

.footer-bg-anim:before {
    width: 100%;
    height: 100%;
    -webkit-animation: movebounce3 2s linear infinite;
    animation: movebounce3 2s linear infinite;
}

body .elementor-widget-image a img[src$=".svg"] {
    width: auto;
}

/* Footer :: END */
/* Header :: START */
.site-header .header-inner {
    max-width: 1350px;
    padding: 0 20px;
}
body .site-header{
    padding-top: 0;
}
body .cust-top-header{
    margin-bottom: 1rem;
}
.site-navigation-dropdown ul.menu li a {
    padding: 10px 20px;
    color: var(--eduact-base);
}

.site-header .header-inner .custom-logo-link {
    max-width: 120px;
}

.site-navigation-dropdown ul.menu li a:hover,
.site-header .site-navigation ul.menu li a:hover {
    color: var(--eduact-secondary);
}
.cust-header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-icon-btn:hover {
    background: rgba(11,66,94,0.86);
}
.header-icon-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px 15px 15px;
    background: var(--eduact-base);
    border-radius: 50px 0 0 50px;
}
.header-icon-btn .icon-Call {
    display: flex;
    flex-shrink: 0;
}
.header-icon-btn .icon-Call {
    max-width: 35px;
}
.cust-top-header {
    background: var(--eduact-base);
    width: 100%;
    padding: 10px 0;
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-icon svg {
    width: 100%;
    fill: var(--eduact-white);
    /*max-height: 15px;*/
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-icon {
    max-width: 15px;
    max-height: 15px;
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-icon ,
.cust-top-header .elementor-icon-list-items.elementor-inline-items a {
    display: inline-flex; 
    align-items: center;
} 
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item.elementor-inline-item {
    display: flex;
    flex-wrap: wrap;
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-text {
    line-height: 1;
} 
.cust-top-header .elementor-icon-list-items.elementor-inline-items a {
    gap: 7px;
    font-size: 14px;
    color: var(--eduact-white);
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item.elementor-inline-item:not(:last-child) {
    border-right: 1px solid var(--eduact-white);
    padding-right: 15px;
    margin-right: 15px;
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items a:hover .elementor-icon-list-icon svg {
    fill: var(--eduact-secondary);
}
.cust-top-header .elementor-icon-list-items.elementor-inline-items a:hover {
    color: var(--eduact-secondary);
}
body .header-social-media .elementor-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; } 
body .header-social-media .elementor-social-icon{ background-color: var(--e-global-color-aac67a3); border-radius: 50%; width: 39px; height: 39px; } 
body .header-social-media .elementor-social-icon svg{fill: var(--e-global-color-primary);      width: 1em;  height: 1em; }
body .header-social-media .elementor-social-icon:hover { background-color: var( --e-global-color-secondary ); } 
body .header-social-media .elementor-social-icon:hover svg{ fill: var(--e-social-icon-icon-color); }
/* Header :: END */
/* Form :: START */
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
    border-color: var(--eduact-base);
    border-radius: 6px;
    padding: 13px 20px;
    font-size: var(--e-global-typography-text-font-size);
    border-width: 2px;
    color: var(--educate-text);
}

body .elementor [type=button],
body .elementor [type=submit],
body .elementor button {
    border-radius: 6px;
}

.wpcf7-not-valid-tip {
    font-size: 14px; 
    font-weight: 700;
}

body .elementor [type=submit] {
    width: 100%;
}

body .elementor [type=submit]:hover {
    background: var(--eduact-secondary);
    color: var(--eduact-base);
}

::-webkit-input-placeholder {
    color: var(--educate-placeholder);
}

::-moz-placeholder {
    color: var(--educate-placeholder);
}

:-ms-input-placeholder {
    color: var(--educate-placeholder);
}

:-moz-placeholder {
    color: var(--educate-placeholder);
}

.wpcf7-spinner {
    position: absolute;
    display: none;
}

.cf7-group p {
    margin: 0;
}

.cf7-group:not(.mb-0) {
    margin: 0 0 20px;
}

.mb-0 {
    margin-bottom: 0;
}

textarea {
    height: 130px;
    overflow: hidden;
    resize: none;
    overflow-y: auto;
}
/* Form :: END */
.subheading.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg {
    margin: 0;
}
.subheading .elementor-icon-list-icon + .elementor-icon-list-text {
    margin-right: -5px;
}
.subheading .elementor-icon-list-text {
    margin-right: 5px;
}
.ic-50.elementor-widget .elementor-icon-list-item {
    width: 50%;
    padding: 10px 18px 0 0;
}
.ic-50 .elementor-icon-list-items {
    display: flex;
    flex-wrap: wrap;
}

.svg-br-bg {
    right: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
}
.svg-br-bg svg {
    width: 100%;
    height: 100%;
}
.cmn-img-car-180 .swiper-slide-inner {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmn-img-car-180 .swiper-slide-inner img{
    filter: grayscale(1);
    max-height: 100px;
}
.cmn-img-car-180 .swiper-slide-inner img:hover{
    filter: grayscale(0);
}
.elementor a {
    color: var(--eduact-orange);
}
.cmn-hc span {
    position: relative;
    z-index: 2;
}
.cmn-hc span svg {
    width: 94%;
    height: 142%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    top: 0;
    left: 0;
    margin: auto;
}
.cmn-h-co span{
  color: var(--eduact-orange);  
}