@font-face {
    font-family: EuclidCircularB;
    src: url("../euclid-circular-b/Euclid\ Circular\ B\ Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: EuclidCircularB;
    src: url("../euclid-circular-b/Euclid\ Circular\ B\ Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: EuclidCircularB;
    src: url("../euclid-circular-b/Euclid\ Circular\ B\ Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: EuclidCircularB;
    src: url("../euclid-circular-b/Euclid\ Circular\ B\ SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: EuclidCircularB;
    src: url("../euclid-circular-b/Euclid\ Circular\ B\ Bold.ttf");
    font-weight: 700;
}


:root {
    --primary: #182955;
    --secondary: #171818;
    --defaultColor: #212529;
    --light: #efefef;
    --warning: #f09e10;
    --danger: #f41f1f;
    --text: #666666;
    --dull: #2e2e2e;
    --fs12:12px;
    --fs14:14px;
    --fs16:16px;
    --fs18:18px;
    --fs24:24px;
    --fs45:45px;
}

body {
    overflow-x: hidden;
    font-family: 'EuclidCircularB';
    color: var(--text);
    background-color: white;
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    display:inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}
p{
    line-height: 1.5;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

li {
    list-style: none;
}
::placeholder{
    font-size: 15px;
}
.text-primary{
    color: var(--primary);
}
.text-secondary{
    color: var(--secondary);
}
.text-warning{
    color: var(--warning);
}
.text-danger{
    color: var(--danger);
}
.text-white{
    color: white;
}
.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-capialize{
    text-transform: capitalize;
}
.flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.w-100{
    width: 100%;
}
::-webkit-scrollbar-thumb {
    background-color: var(--danger);
}

::-webkit-scrollbar-truck {
    background-color: #f5f5f5;
}
.shadow{
    box-shadow: 0 3px 6px 0 #a6a8a966;
}
::selection {
    background-color: var(--primary);
    color: white;
}
#topScroll {
    display: none;
    position: fixed;
    bottom: 10%;
    right: 1%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--danger);
    color: white;
    line-height: 36px;
    text-align: center;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

@keyframes flow {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
.whatsapp{
    position: fixed;
    bottom: 5%;
    right: 1%;
    width: 40px;
    height: 40px;
    font-size: var(--fs18);
    border-radius: 50%;
    text-align: center;
    background-color:#0dc143;
    color: white;
    line-height: 40px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    z-index: 4;
    animation: zoom infinite 1s ease;
}
@keyframes zoom {
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}

.top-nav{
    padding:0 24px;
    font-size: var(--fs14);
    border-bottom: 1px solid var(--light);
}
.social-media-list a{
    font-size: var(--fs16);
}
.social-media-list a:not(:last-child){
    margin-right: 24px;
}
.hover:hover{
    color: var(--warning) !important;
}
.top-nav-links{
    flex: 1;
    padding: 12px;
    margin: 0 24px;
    border-left: 1px solid var(--light);
    border-right: 1px solid var(--light);
}
.top-nav-links p{
    flex: 1;
}
.top-nav-links a{
    padding: 0 12px;
}
.navbar{
    position: relative;
    justify-content: flex-end;
    z-index: 3;
    padding: 0 24px;
}
.logo{
    width: 150px;
    position: absolute;
    top:12px;
    left: 2%;
}
.navbar-nav li{
    margin: 0 16px;
}
.navbar-nav li .nav-link{
    display: block;
    padding:24px 0;
    color: var(--secondary);
}
nav{
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid var(--light);
}
.call small{
    margin-bottom: 4px;
    display: block;
}
.toggle-btn-open, .toggle-btn-close{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--light);
    background-color: transparent;
    cursor: pointer;
}
.toggle-btn-open{
    font-size: 0;
    margin-left:24px;
    position: relative;
}
.toggle-btn-open:before, .toggle-btn-open:after{
    content: "";
    position: absolute;
    top:50%;
    right: 8px;
    transform: translateY(-50%);
    border-top: 1px solid var(--secondary);
}
.toggle-btn-open:before{
    width: 24px;
    height: 16px;
    border-bottom: 1px solid var(--secondary);
}
.toggle-btn-open:after{
    width: 16px;
    height: 1px;
}
.toggle-btn-open, .toggle-btn-open:after, .toggle-btn-open:before, .toggle-btn-close{
    transition: all ease .5s;
}
.toggle-btn-open:hover, .toggle-btn-open:hover:after,  .toggle-btn-open:hover:before, .toggle-btn-close:hover{
    border-color:var(--warning);
}
.carousel{
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.carousel-item{
    position: absolute;
    top:0;left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease 1s;
    z-index: 0;
}
.carousel-item.active{
    opacity: 1;
    z-index: 1;
}
.carousel-img{
    width: 100%;
   height: 100%;
}
.carousel-content{
    width: 45%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7%;
    z-index: 2;
}
.carousel-item.active .carousel-content > *{
    animation:translateUp 2s ease;
}
.carousel-content h2{
    font-size: 64px;
    color: var(--secondary);
    line-height: 1;
}
.carousel-content p{
    margin: 32px 0;
    width: 80%;
    font-size: var(--fs18);
    animation-delay:1.5s;
}
.carousel-content .btn{
    animation-delay:2s;
}

@keyframes translateUp {
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0%);
    }
}
.control-btns{
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    z-index:1;
    background-color: white;
}
.control-btns p{
    margin: 0 24px;
}
.current-data-carousel{
    width: 24px;
    font-size: 40px;
    font-weight: 500;
}
.control-btns button{
    font-size: 40px;
}
.btn{
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.btn span{
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}
.btn:hover span{
    width: 400px;
    height: 400px;
    opacity: 1;
}
.btn-warning, .btn-secondary span{
    background-color: var(--warning);
}
.btn-secondary, .btn-warning span{
    background-color: var(--secondary);
}
.lines{
    position: absolute;
    font-size: 0;
    width: 100%;
    height: 100%;
    top:0;left: 0;right: 0;
    border-left:1px solid var(--light) ;
    border-right:1px solid var(--light) ;
    z-index: -1;
}
.lines::before, .lines::after{
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    border-left:1px solid var(--light) ;
}
.lines::before{
    width: 50%;
    border-right:1px solid var(--light) ;
}
.about-section{
    background: url('../images//about-bg.png');
    background-position: right bottom;
    background-repeat: no-repeat;
}
.all-section{
    position: relative;
    padding: 80px 0;
}
.col-6{
    width: 50%;
}
.col-12{
    width: 100%;
}
.about-img{
    transition: all ease 1s;
    height: 90vh;
}
.about-img.animationUp{
    animation: animationUp 1s linear;
}
.about-img.animationDown{
    animation: animationDown 1s linear;
}
@keyframes animationUp{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}
@keyframes animationDown{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(10px);
    }
}
.counter-number{
    font-size:80px;
}
.about-section .counter-number{
    font-size: 60px;
}
.about-section .btn{
    margin-bottom: 24px;
}
.title{
    font-size: var(--fs45);
    line-height: 1;
    margin-top: 8px;
    text-transform: capitalize;
}
.mini-title{
    font-size: var(--fs14);
    padding: 6px 10px;
    display: inline-block;
    background-color: var(--light);
    border-radius: 6px;
}
.about-right{
    padding-left: 100px;
}
.about-right > p{
    margin: 32px 0;
}
.text-justify{
    text-align: justify;
}
.top-sticky{
    position: sticky;
    top:0;
    left: 0;
}
.bg-white{
    background-color: white;
}
.service-col{
    width: 40%;
}
.service-box{
    padding:0 12px;
}
.service-img{
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
}
.service-img img{
    transition: all ease 1s;
}
.service-box:hover .service-img img{
    transform: scale(1.1) rotate(-1deg);
}
.mb-5{
    margin-bottom: 50px;
}
.service-box h4{
    width: 80%;
    margin: -30px auto 8px auto;
    background-color: white;
    padding: 16px 12px;
    text-align: center;
    z-index: 2;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    text-transform: capitalize;
}
.note{
    margin: 32px 0;
    text-align: center;
}
.note-content{
    border: 1px solid var(--light);
    padding: 8px 16px;
    display: inline-block;
    border-radius: 20px;
    background-color:white;
}
.note-content a span{
    transform: rotate(-45deg);
    display: inline-block;
    font-size: var(--fs18);
    transition: all ease .5s;
}
.note-content a:hover span{
    transform: rotate(0);
}
.slider{
    position: relative;
}
.slider-wrapper{
    position: relative;
    overflow: hidden;
    height: 100%;
}
.slider-container{
    position: absolute;
    display: flex;
}
.slider-prev-btn, .slider-next-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: white;
    font-size: var(--fs24);
    border-radius: 50%;
    border: 1px solid var(--light);
    transition: all ease .5s;
    z-index: 2;
}
.slider-prev-btn{
    left: -60px;
}
.slider-next-btn{
    right: -60px;
}
.slider-prev-btn:not(:disabled):hover, .slider-next-btn:not(:disabled):hover{
    color: var(--warning);
    border-color: var(--warning);
}
.slider-prev-btn:disabled, .slider-next-btn:disabled{
    cursor:not-allowed;
}
.col-3{
    width: 25%;
}
.counter-section{
    background-color: #efefef8f;
}
.team-box:hover h4{
    color: var(--warning);
}
.team-img{
    position: relative;
    overflow: hidden;
    height: 375px;
}
.team-img img, .team-img a{
    transition: all ease 1s;
}
.team-box:hover img{
    transform: scale(1.05);
}
.team-img a{
    background-color: var(--warning);
    color: white;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    left: 100%;
    border-top-left-radius: 12px;
    white-space: nowrap;
}
.team-box:hover .team-img a{
    transform: translateX(-100%);
}
.team-detail{
    padding: 16px 8px;
}
.team-detail p{
    margin-top: 8px;
    font-size: var(--fs14);
}
.footer{
    padding-top: 80px ;
    background-color: var(--secondary);
    color: #9e9e9e;
}
.footer .flex{
    align-items: flex-start;
}
.footer h4{
    font-size: var(--fs18);
    font-weight: 400;
    margin-bottom: 24px;
}
.col-4{
    width: calc(100%/3);
}
.footer .col-4{
    padding: 0 8px;
    width: 30%;
}
.footerNav li{
    margin-bottom:12px ;
}
.copyright{
    margin-top: 24px;
    padding:16px 8px;
}
.contact-list li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}
.contact-list li i{
    position: absolute;
    top:4px;
    left: 8px;
}
.testimonial-section .all-section{
    padding: 0;
}
#testimonial .slider-slide{
    padding: 0 8px;
}
.testi-box{
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--light);
    height: 100%;
    background-color: white;
}
.testi-box h4{
    color: var(--primary);
    font-size: var(--fs18);
    margin-bottom: 12px;
}
.contact-section .col-6, .contact-section .col-12{
    padding: 0 12px;
}
.form-control{
    width: 100%;
    border: 1px solid var(--light);
    border-radius: 6px;
    padding: 0 12px;
    margin-bottom: 16px;
}
.form-control:focus{
    border-color: var(--warning);
}
.form-control:focus{
    outline: none;
}
input.form-control, select.form-control{
    height: 50px;
    line-height: 50px;
}
textarea.form-control{
    padding: 12px;
}
.dropdown{
    position: relative;
}
.dropdown-menu{
    border-top: 1px solid var(--light);
    position: absolute;
    top: 107%;
    left: 0;
    width:240px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow:  0 2px 4px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: perspective(300px) rotateX(20deg);
    transition: all ease 1s;
    padding: 20px;
}
.dropdown-item{
    padding:12px 8px;
    font-size: 15px;
    display: block;
    transition: all ease .5s;
}
.dropdown-item:hover{
    background-color: #efefef59;
}
.drop-hover:hover .dropdown-menu{
    top: 100%;
    animation: dropdown .2s linear;
    opacity: 1;
    visibility: visible;
    transform: perspective(300px) rotateX(0);
}
.mobile-nav{
    position: fixed;
    top:0;
    left: -100%;
    width: 100%;height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: all ease .7s;
    opacity: 0;
    visibility: hidden;
    transform-origin: center;
    transform:perspective(100px) rotateY(25deg);
    overflow-y: auto;
}
.mobile-nav.active{
    left: 0%;
    opacity: 1;
    visibility: visible;
    transform:perspective(100px) rotateY(0);
}
.mobile-nav-right{
    width: 65%;
    order: 0;
    height: 100%;
    padding: 64px 0 32px 64px;
}
.mobile-nav-left{
    width: 35%;
    border-left: 1px solid var(--light);
    height: 100%;
    padding: 20px 64px;
    order: 1;
}
.toggle-btn-close{
    text-align: center;
    line-height: 50px;
    font-size: var(--fs24);
    color: var(--defaultColor);
}
.mobile-logo{
    width: 180px;
    margin: 24px auto;
}
.mobile-logo img{
    width: 100%;
}
.mobile-contact-list li{
    font-size: var(--fs18);
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 24px;
}
.mobile-contact-list li span{
    display: block;
    margin-bottom: 8px;
    color: #666666;
}
.mobile-nav-link{
    height: 70px;
    line-height: 70px;
    display: block;
    font-weight: 500;
    color: var(--secondary);
}
.mobile-nav-right .mobile-navbar-nav li:not(:last-child) .mobile-nav-link{
    border-bottom: 1px solid var(--light);
}
.mobile-nav-right .mobile-nav-link.drop-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav-right .mobile-nav-link.drop-btn i{
    width: 100px;
    height: 100%;
    line-height: 70px;
    text-align: center;
    border-left: 1px solid var(--light);
}
.mobile-nav-right .mobile-navbar-nav li {
    margin: 0;
}
.mobile-dropdown-menu{
    display: none;
    padding: 16px;
}
.mobile-dropdown-menu.active{
    display: block;
}
.map{
    border: 0;
}
.course-page p{
    margin-bottom: 12px;
}
.page-title{
    background-color: var(--light);
    font-size: var(--fs45); 
    padding: 50px 16px;
}
.course-img{
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}
.course-page .col-6{
    padding: 0 8px;
}
.training-flex{
    gap: .5rem;
    justify-content: space-between;
}
.training-flex li{
    width: calc(25% - .5rem);
    height: 270px;
}
.list li{
    list-style: decimal;
    list-style-position: inside;
}
.list, .details-box p{
    padding-left: 30px;
}
.details-box p{
    margin-bottom: 0;
}
.details-box h4{
    margin-bottom: 12px;
}
.details-box{
    border: 1px solid #ccc;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    background-color: white;
}
.card{
    width: calc(100%/3 - 0.344rem);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    background-color: white;
}
.card-img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}
.card-detail{
    text-align: center;
}
.card-detail p{
    margin:0;
}
.card-detail h4{
    margin:12px 0;
}
.placement-flex{
    gap: 8px;
}
@media screen and (min-width:1200px) {
    .container {
        margin: 0 100px;
    }
}
@media screen and (max-width:1200px) {
    .container {
        margin: 0 64px;
    }
    .carousel-content h2 {
        font-size: 40px;
    }
    .slider-prev-btn{
        left: 0px;
    }
    .slider-next-btn{
        right: 0px;
    }
    .top-nav-links {
        margin: 0 12px;
    }
    .top-nav-links a {
        padding: 0 8px;
    }
}
@media screen and (max-width:1023px) {
    .container {
        margin: 0 32px;
    }
    nav, .top-nav-address{
        display: none;
    }
    .top-nav-links {
        margin: 0 24px 0 0;
        border-left: none;
        padding-left: 0;
    }
    .toggle-btn-open {
        margin: 12px 0 12px 24px;
    }
    .carousel-content {
        width: 60%;
        left: 5%;
    }
    .carousel-content p {
        margin: 16px 0;
        font-size: var(--fs16);
    }
    .carousel {
        height: 80vh;
    }
    .logo {
        width: 130px;
    }
    .slider-prev-btn, .slider-next-btn {
        margin-bottom: 16px;
        top: auto;
        bottom: 100%;
        transform:none;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: var(--fs14);
        border-radius: 0;
    }
    .slider-prev-btn {
        right: 50px;
        left: auto;
    }
    .mobile-logo {
        margin: 12px auto;
    }
    .mobile-nav-left {
        padding: 24px;
    }
    .footer .col-4 {
        width: 50%;
    }
    .training-flex li{
        width: calc(33.34% - .5rem);
    }
}
@media screen and (max-width:768px) {
    .lines{
        display:none;
    }
    .container {
        margin: 0 16px;
    }
    .col-6, .col-3, .col-4, .service-col,  .mobile-nav-left,  .mobile-nav-right, .footer .col-4 {
        width: 100%;
    }
    .service-col{
        margin-bottom: 12px;
    }
    .my-sm-4{
        margin: 24px 0;
    }
    .about-right {
        padding-left: 0;
    }
    .counter-box.col-3{
        width: 50%;
    }
    .title {
        font-size: var(--fs24);
        line-height: 1;
        margin-top: 8px;
        text-transform: capitalize;
    }
    .mobile-logo, .mobile-contact-list {
        display: none;
    }
    .mobile-nav-left,  .mobile-nav-right  {
        padding: 16px;
        height: auto;
    }
    .mobile-nav-left{
        order: 0;
    }
    .mobile-nav-right {
        order: 1;
    }
    .mobile-nav{
        display: block;
    }
    .mobile-nav-link {
        height: 60px;
        line-height: 60px;
    }
    .top-nav-links{
        display: none;
    }
    .social-media-list {
        width: 100%;
        justify-content: space-between;
    }
    .social-media-list a {
        padding: 12px;
    }
    .logo {
        width: 120px;
        top: 10px;
        left: 5%;
    }
    .control-btns {
        padding: 8px;
    }
    .control-btns button {
        font-size: 14px;
    }
    .current-data-carousel {
        width: 14px;
        font-size: 24px;
    }
    .carousel-content p, .carousel-content a{
        display: none;
    }
    .carousel-content {
        width: 40%;
    }
    .carousel-content h2 {
        font-size: 32px;
    }
    .all-section {
        padding: 32px 0;
    }
    .counter-number {
        font-size: 60px;
    }
    .counter-box p{
        font-size: 14px;
    }
    .carousel {
        height: 50vh;
    }
    .copyright{
        margin-top: 0;
    }
    .training-flex li{
        width: calc(50% - .5rem);
    }
    .card{
        width: calc(100%/2 - 0.344rem);
    }
}
@media screen and (max-width:420px) {
    .carousel {
        height: 40vh;
    }
    .carousel-content h2 {
        font-size: 24px;
    }
    .counter-number {
        font-size: 40px;
    }
    .counter-box p{
        font-size: 14px;
    }
    .call {
        display: none;
    }
    .mb-5 {
        margin-bottom: 70px;
    }
    .training-flex li{
        width:100%;
    }
    .card{
        width: calc(100%);
    }
}



