/*
::Table Of Content
    1.) @FontFace Style
    2.) Global decleration
    3.) Global TypoGraphy
    4.) Global helping class
    5.) header css
    6.) Placement css
    7.) latest_update
    8.) partner css
    9.) footer css
    10.) responsive css


----------------------------------------------------*/


/*
1.) @FontFace Style
-------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Roboto&display=swap');
@font-face {
    font-family: 'Bebas-Regular';
    src: url('../fonts/Bebas-Regular.woff');
    font-weight: 400;
}


/*
2.) Global decleration
-------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

a {
    color: currentColor;
    text-decoration: none !important;
    transition: 0.5s all ease;
}

a:hover {
    color: currentColor;
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    font-size: 62.5%;
}

:root {
    --mainColor: #656363;
    --whiteColor: #fff;
    --bluetextColor: #1815e6;
    --blacktextColor: #171717;
    --offwhiteColor: #f3f3f9;
    --btnborderColor: #2623e7;
    --btnbgColor: #1815e6;
    --dateColor: #4b57ee;
    --testimonialcolor: #5e4bdb;
    --fontpoppins: 'Poppins', sans-serif;
    --fontBabes: 'Bebas-Regular', sans-serif;
    --fontroboto: 'Roboto', sans-serif;
}

ul {
    margin-bottom: 0;
}

body {
    font-size: 1.4rem;
    font-family: var(--fontpoppins);
    color: var(--grayColor);
    font-weight: 400;
    line-height: 1.34;
    overflow-X: hidden;
    /* background: url(../images/bg/bg.jpg) center top no-repeat; */
}


/* 
3.) Global TypoGraphy
------------------------------------- */

p {
    font-weight: 400;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 5px
}

h1 {
    font-size: 4.5rem;
    font-family: var(--fontpoppins);
    color: var(--mainColor);
    line-height: 0.86;
    font-weight: 700;
    margin-bottom: 4rem;
}

h2 {
    font-size: 3rem;
    font-family: var(--fontpoppins);
    font-weight: 700;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.8rem;
    font-family: var(--fontpoppins);
    font-weight: 700;
    margin-bottom: 2rem;
}

h4 {
    font-size: 2.4rem;
    font-family: var(--fontpoppins);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--blacktextColor);
    padding-left: 1.5rem;
    position: relative;
}


/* 
 4.) Global helping class
------------------------------------- */

.container {
    max-width: 1210px;
}

.container_small {
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

#wrapper {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px auto;
}

.after-icon:after,
.before-icon:before,
[class^=icon-] {
    background-image: url("../images/sprite.png");
    background-repeat: no-repeat;
    background-size: 250px 250px;
    display: block
}

.after-icon:after,
.before-icon:before {
    content: '';
    position: absolute
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}


/* 
5.) header css
--------------------------------------- */

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.pre_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.logo_wrap {
    width: 8%;
}

.menu_wrap a {
    font-family: var(--fontBabes);
    color: #fff !important;
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    cursor: pointer;
}

.menu_wrap.m-hide a{
    font-family: var(--fontpoppins);
}

.menu_click {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-left: 1.8rem;
    background-color: #fff;
    display: inline-block;
    position: relative;
}

.menu_click:after,
.menu_click:before {
    content: '';
    height: 2px;
    position: absolute;
    background-color: #2421f4;
    left: 10px;
    transition: 0.5s all ease;
}

.menu_click:before {
    width: 20px;
    top: 15px;
}

.menu_click:after {
    width: 16px;
    top: 25px;
}

.darkHeader {
    background-color:rgb(0 0 0 / 83%);
}

.menu_click.active:after {
    width: 20px;
    top: 20px;
    transform: rotate(-45deg);
}

.menu_click.active:before {
    width: 20px;
    top: 20px;
    transform: rotate(45deg);
}

.navigation li {
    list-style: none;
    padding-bottom: 1rem;
}

.navigation li a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 0.5rem 0rem;
    position: relative;
    color: rgba(20, 18, 109, 0.9) !important;
}

.navi li a{
    position: relative;
    padding-bottom: 1rem;
}

.navigation li a:after, .navi li a:after {
    transition: 0.5s all ease;
    content: "";
    width: 0%;
    height: 2px;
    bottom: 0;
    position: absolute;
    left: 0;
    background-color: #1815e6;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navigation li a:hover::after,  .navi li a:hover::after{
    width: 100%;
}


.menu_wrap {
    position: relative;
}

/* .navigation li a:hover {
    border-color: var(--whiteColor);
} */

.navigation {
    position: absolute;
    background: #fff;
    width: 25rem;
    right: -50%;
    top: 5.5rem;
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    transition: 1s all ease;
    transform: translate(0, -200%);
    border-radius: 1rem;
    padding: 1.5rem;
}


.navi nav ul {
    display: flex;
    list-style: none;
}

.navi nav ul li{
    justify-content: space-around;
}

.navi nav ul li{
    padding: 0 2rem;
}

/* 
6.) Placement css
------------------------------------ */

.Placement_heading {
    text-align: center;
}

.Placement_heading h2 small {
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    display: block;
    color: var(--blacktextColor);
    position: relative;
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.Placement_heading h2 {
    color: var(--bluetextColor);
}

.Placement_heading h2 small:after {
    content: '';
    width: 6%;
    height: .5rem;
    background-color: #1815e6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background-color: var(--whiteColor);
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    padding: 3.4rem 2rem 7rem;
    border: none;
    position: relative;
}

.card-icon {
    margin-bottom: 2rem;
}

.card-icon img {
    display: inline-block;
    width: 93px;
}

.card h4 {
    font-size: 2.3rem;
    font-weight: 400;
}

.card p {
    font-size: 1.6rem;
    color: #8b8b8b;
    margin-bottom: 2rem;
}

.easy_contact_btn {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--grayColor);
    border: 1px solid var(--btnbgColor);
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    border-radius: 30px;
    width: 165px;
    text-align: center;
    padding: 1rem 0;
}

.easy_contact_btn:hover,
.easy_contact_btn.active {
    background-color: var(--btnbgColor);
    color: var(--whiteColor);
}


/* 
7.) latest_update
-------------------------- */

.latest_update,
.Placement {
    background-color: #f3f3f9;
    padding: 3rem 0;
}

.latest_update_heading {
    text-align: center;
}

.latest_update_row{
    width: 100%;
    margin: 0;
}

.latest_update_heading h2,
.testimonials .heading h2 {
    color: var(--blacktextColor);
    position: relative;
    padding-top: 2rem;
}

.latest_update_heading h2::after,
.testimonials .heading h2::after {
    content: '';
    width: 6%;
    height: .5rem;
    background-color: #1815e6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials .heading {
    text-align: center;
}

.latest_update_date {
    position: relative;
    display: block;
    color: var(--btnbgColor);
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.box_calender {
    background-color: var(--whiteColor);
    padding: 2rem;
    /*min-height: 100%;*/
    min-height: 23.5rem;
}

.box_calender h4:before {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--btnbgColor);
    position: absolute;
    left: 0;
    top: 0;
}

.latest_update_date:before {
    width: 18px;
    height: 18px;
    left: 0;
    top: 0;
    background-position: -101px 0;
}


/* 
8.) partner css
------------------------ */

.partner_logo_slide {
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.partner_slide {
    display: inline-block;
    /*width: 15rem;*/
    /*height: 5.8rem;*/
    filter: grayscale(100%);
    margin: 2rem 0;
    padding: 0.5rem;
    background: #fff;
    box-shadow: 2px 3px 23px rgb(0 0 0 / 50%);
}

.partner_slide img {
    width: 100%;
    height: 100%;
}

.partner_slide:hover,
.partner_slide.active {
    filter: grayscale(0%);
}


/*
9.) footer css
-------------------------------------*/

footer {
    background-color: #90919a;
    position: relative;
    color: var(--whiteColor);
    padding-top: 8rem;
}

footer h3 {
    text-transform: uppercase;
}

footer a {
    color: var(--whiteColor);
}

.footer-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.listn {
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5rem;
    display: block;
}

.listn span {
    font-family: 'Stolzl_Display_Bold';
    color: var(--yellowColor)
}

.footer-contact li {
    list-style: none;
}

.footer-contact li a {
    font-size: 1.8rem;
    padding-left: 4rem;
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
    font-family: var(--fontroboto);
}

.footer-contact li a:before {
    width: 18px;
    height: 18px;
    left: 0;
    top: 0.5rem;
}

.love {
    display: inline-block;
}

.footer-contact li .call:before {
    background-position: -21px 0;
}

.footer-contact li .mail:before {
    background-position: -41px 0;
}

.quick-links li {
    padding-bottom: 1.5rem;
}

footer .location {
    font-family: var(--fontpoppins);
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5rem;
}

.location_map {
    position: relative;
    display: block;
    padding-left: 5rem;
}

.location_map:before {
    width: 30.5px;
    height: 30.5px;
    background-position: -61.5px 0;
    position: absolute;
    top: 0;
    left: 0;
}

footer li {
    list-style: none;
}

.main-footer,
.top_footer {
    padding-bottom: 8rem;
    border-bottom: 1px solid #a1a1a8;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.social-icon li {
    float: right;
    margin: 0 1rem;
}

.social-icon li a {
    background: #9a9ba4;
    border: 1px solid transparent;
    border-radius: 100%;
    width: 4rem;
    height: 4rem;
    display: block;
    text-align: center;
}

.social-icon li a i {
    transform: translateY(65%);
}

.social-icon li a:hover {
    border-color: #75767f;
    background: transparent;
    color: var(--yellowColor) !important;
}

.down_footer {
    padding-bottom: 5rem;
    position: relative;
}

.footer_bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.footer_bg img {
    width: 100%;
}

.quick-links li a {
    position: relative;
    font-size:13px;
    text-transform: uppercase;
}

.quick-links li a:hover {
    padding-left: 1.1rem;
    color: var(--yellowColor) !important;
    cursor: pointer;
}

.quick-links li a:hover::before {
    position: absolute;
    left: 0;
    top: -1px;
    content: '\f105 ';
    font-family: 'fontawesome';
    color: var(--yellowColor);
}

.copy_right {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.top_footer .col-lg-6.social-icon ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a6a6a6;
    opacity: 1;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a6a6a6;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a6a6a6;
}

.news_letter_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_letter_form label {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--whiteColor);
    font-weight: 700;
    width: 35%;
}

.news_letter_form input {
    width: 65%;
    height: 4.8rem;
    border-radius: 30px;
    padding: 0px 11rem 0 2rem;
    position: relative;
    outline: none;
    border: none;
    -webkit-appearance: none;
}

.lt_submit {
    font-size: 1.2rem;
    color: var(--whiteColor);
    background-color: var(--bluetextColor);
    border-radius: 0 30px 30px 0;
    position: absolute;
    top: 0%;
    right: 1.5%;
    width: 11rem;
    height: 4.8rem;
    outline: none;
    border: 1px solid transparent;
    transition: 0.5s all ease;
}

.lt_submit:hover {
    border-color: #505054;
    background-color: transparent !important;
    color: #90919a;
}

.d_block {
    /* display: block; */
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.m_show{
        display: none;    
    }
.m-hide{
    display: block;
}

.testimonials, .teams{
    display: none;
}

.box_calender ul {
    list-style: inherit;
    list-style-position: outside;
    padding-left: 10px;
}

.box_calender ul li {
    margin-bottom: 5px;
    list-style-type: decimal;
}

/* .overflow_hidden {
    overflow: hidden;
} */

/*
10.) responsive css
----------------------------------*/


@media screen and (max-width: 1350px) and (min-width: 769px){
    .box_calender{
        min-height: 26rem;
    }
    
    /*.lt_submit{*/
    /*    top: 11%;*/
    /*}*/
}

@media screen and (max-width: 1300px){
     .m_show{
        display: block;    
    }
    
    .m-hide{
        display: none;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: 15px !important;
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: 15px !important;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px){
    
    .lt_submit{
        top: 11%;
    }
}

@media screen and (max-width: 768px){
    .lt_submit {
        top: 1%;
    }
    
    .footer_bg{
        height: 35rem;
    }
}

@media screen and (max-width: 767px){
    .navigation{
        right: -15%;
        top: 6.5rem;
    }
}

@media screen and (max-width:600px) {
    html {
        font-size: 40%;
    }
    
    .lt_submit {
        top: 11%;
        right: 3%;
    }
    
    .logo_wrap {
        width: 20%;
    }
    
}