:root {
    --theme-color: #2e368e;
    --secondary-color: #299cd7;
    --dark-color: #222;
    --white-color: #fff;
    --bg-color: #f3f1f2;
    --light-blue: #eff6fd;
    --optionalColor: #333146;
    --whiteColor: #ffffff;
    --blackColor: #262E2E;
    --postcolor: #6a7a83;
    --fontSize: 16px;
    --transition: .5s
}

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.42857143;
}

a {
    text-decoration: none !important;
    color: #3CF;
}

a:hover {
    color: #FC3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 14px;
    line-height: 25px;
}

img {
    width: 100%;
    overflow: hidden;
}


/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/

html,
body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: var(--theme-color);
    color: #fff;
}

::-moz-selection {
    background: var(--theme-color);
    color: #fff;
}

@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
    }
    .mobile-top-fix {
        margin-top: 30px;
        margin-bottom: 0px;
    }
    .mobile-bottom-fix {
        margin-bottom: 30px;
    }
    .mobile-bottom-fix-big {
        margin-bottom: 60px;
    }
}

.section-heading h2 {
    line-height: 40px;
    margin-top: 0px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.15);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.sub-header {
    background-color: #1f272b;
    position: relative;
    z-index: 1111;
}

.sub-header .left-content p {
    color: #fff;
    padding: 8px 0px;
    font-size: 13px;
}

.sub-header .right-icons {
    text-align: right;
    padding: 8px 0px;
}

.sub-header .right-icons ul li {
    display: inline-block;
    margin-left: 15px;
}

.sub-header .right-icons ul li a {
    color: #fff;
    font-size: 14px;
    transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
    color: var(--theme-color);
}

.sub-header .left-content p em {
    font-style: normal;
    color: var(--theme-color);
}


/**********************/


/*     Navigation     */


/**********************/

.navbar-area {
    background-color: transparent;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0
}

.navbar-light {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent
}

.navbar-light .navbar-brand img {
    float: left;
    padding: 0;
}

.navbar-light .navbar-brand-sticky {
    display: none
}

.main-nav {
    position: inherit;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: inherit;
    padding: 0;
    width: 100%;
    height: auto
}

.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .active {
    color: var(--theme-color)!important
}

.main-nav nav .navbar-nav .nav-item a {
    text-transform: capitalize;
    color: var(--secondary-color);
    font-weight: 600;
    margin-left: 12px;
    margin-right: 12px
}

.main-nav nav .navbar-nav .nav-item a i {
    line-height: 0;
    position: relative;
    top: 3px;
    font-size: 18px
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a :focus {
    color: var(--theme-color)!important
}

.main-nav nav .navbar-nav .nav-item a.active {
    color: var(--theme-color)!important
}

.main-nav nav .navbar-nav .nav-item a .active::before {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    border: none;
    padding: 0;
    border-radius: 0;
    background-color: #fff!important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid #fff
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: none
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    text-transform: capitalize;
    color: var(--secondary-color)!important;
    position: relative;
    -webkit-transition: .7s;
    transition: .7s;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px dashed #ebebeb
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    border-radius: 0;
    color: var(--theme-color)!important;
    background-color: #f3f3f3;
    border-left: 3px solid var(--theme-color)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active {
    color: var(--theme-color)!important;
    border-radius: 0;
    background-color: #f3f3f3;
    border-left: 3px solid var(--theme-color)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active {
    color: var(--theme-color)!important;
    background-color: #f3f3f3;
    border-left: 3px solid var(--theme-color)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: 100%;
    margin-top: 18px!important;
    position: absolute
}

.main-nav .others-options .option-item {
    margin-right: 20px
}

.main-nav .others-options .option-item:last-child {
    margin-right: 0
}

.sticky-nav {
    top: 0;
    position: fixed;
    -webkit-animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    -webkit-transition: .9s;
    transition: .9s;
    width: 100%!important;
    z-index: 999
}

.sticky-nav .navbar-light .navbar-brand img {
    max-width: 13202px
}

.sticky-nav .main-nav {
    top: 0;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .3);
    box-shadow: 0 0 15px rgba(0, 0, 0, .3)
}

img.img-fluid.logo {
    width: 202px;
    object-fit: contain;
    height: 74px;
}

@media(max-width:767px) {
    .mobile-nav .logo img {
        max-width: 120px;
        height: 40px;
        /* margin-top: -5px */
    }
    .others-options {
        display: none!important
    }
    .side-nav-responsive {
        display: block
    }
    .side-nav-responsive .container {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .side-nav-responsive .container .container {
        position: absolute;
        top: 55px;
        right: -20px;
        max-width: 185px;
        margin-left: auto;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .7s;
        transition: .7s;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        z-index: 2;
        padding-left: 15px;
        padding-right: 15px
    }
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #2e368e;
    position: relative;
    height: 4px;
    margin-top: -5px;
    top: 8px;
    border-radius: 3px;
}

.nav li::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.2s;
    /* margin: auto; */
}

.nav li:hover::after {
    width: 38%;
    /* margin: 0 0px 0px 30px; */
}

.nav-link {
    padding: 15px 5px;
    transition: 0.2s;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #212529;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--theme-color);
}

.nav .active::after {
    width: 38%;
    margin: 0 0px 0px 30px;
}

.nav .dropdown ul li::after {
    display: none;
}

.nav .has-sub:after {
    display: none;
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.hero-area {
    position: relative;
    background-color: #f4f7fa;
    overflow: hidden
}

.hero-area .tns-nav {
    text-align: center;
    position: absolute;
    bottom: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    left: 50%;
    z-index: 9
}

.hero-area .tns-nav button {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 30px;
    display: inline-block;
    border: none;
    margin: 0 5px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.hero-area .tns-nav button.tns-nav-active {
    width: 20px
}

.hero-area .hero-inner {
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 3;
    padding-bottom: 150px
}

.hero-area .hero-inner.overlay::before {
    opacity: .9;
    background: #081828
}

.hero-area .hero-image {
    margin-top: 90px
}

.hero-area .hero-image img {
    width: 100%
}

.hero-area .hero-text {
    float: none;
    text-align: center;
    margin-top: 150px!important
}

.hero-area .hero-text h5 {
    color: #fff!important;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    display: inline-block;
    padding: 12px 22px;
    background: var(--secondary-color)!important;
    text-transform: none;
    border-radius: 30px
}

.hero-area .hero-text h1 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    font-size: 40px!important;
    line-height: 50px!important
}

.hero-area .hero-text h1 span {
    color: var(--secondary-color)
}

.hero-area .hero-text p {
    font-size: 14px;
    color: #fff
}

.hero-area .hero-text .btn {
    border: none;
    background: #fff;
    color: #081828
}

.hero-area .hero-text .btn:hover {
    color: #fff
}

.hero-area .hero-text .btn i {
    display: inline-block;
    margin-left: 5px
}

.hero-area .hero-text .btn.alt-btn {
    background: var(--secondary-color);
    color: #fff
}

.hero-area .hero-text .btn.alt-btn::before {
    background: #fff
}

.hero-area .hero-text .btn.alt-btn:hover {
    color: #081828!important
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0
    }
}

@-webkit-keyframes pulse-border-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

.hero-area .hero-text .button {
    margin-top: 35px
}

.hero-area .hero-text .button .btn {
    margin-right: 10px
}

.hero-area .hero-text .button .btn:hover {
    color: #fff
}

.hero-area .hero-text .button .btn:last-child {
    margin-right: 0
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0;
    padding: 12px 30px;
    font-size: 14px;
    line-height: 1.72;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-theme {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.icon-box img {
    width: 72px;
    margin-bottom: 14px;
    height: 72px;
    object-fit: contain;
}

.icon-box:hover a {
    color: #434a99 !important;
}

.icon-box {
    margin-bottom: 40px;
}

.hero-area .hero-inner.overlay::before {
    opacity: .7;
    background: linear-gradient( 127deg, var(--theme-color) 0%, var(--secondary-color) 91%);
}

.overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background: #081828;
    content: "";
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}


/* section title */

.section_title h2 {
    font-size: 35px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 40px;
    text-transform: capitalize;
    position: relative;
    font-weight: 700;
    color: var(--theme-color);
}

.section_title h2::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--theme-color);
    border-radius: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* passion section */

.bg-intern {
    position: relative;
    z-index: 1;
}

.bg-intern {
    background: url(../images/ban2.jpg) 50% 0px / cover no-repeat;
}

.bg-intern::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: var(--theme-color);
    opacity: 0.8;
    z-index: -1;
}

.service_icon_box.s3.service_gradient.text-center {
    background: #fff;
    text-align: center;
    box-shadow: 6px 5px 30px 0px rgb(0 0 0 / 12%);
    border-radius: 7px;
    padding: 52px 20px 35px;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px
}

.service_icon_box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 99%;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transition: .5s;
}

.service_icon_box:hover::before {
    top: 0%;
}

.service_icon_box:hover {
    color: #fff;
}

.content-box h5 {
    font-size: 22px;
    font-weight: 700;
    transition: .5s;
    margin: 10px 0 8px;
    padding-top: 20px;
}

.icon-main span {
    font-size: 55px;
    color: var(--theme-color);
    transition: .5s;
    display: inline-block;
}

.service_icon_box:hover .icon-main span {
    font-size: 55px;
    color: #fff;
}

.service_icon_box:hover p {
    color: #fff;
}

.mt-30 {
    margin-top: 30px;
}

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

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

.aemiexp {
    height: 198px;
    width: 248px;
    background-color: #ffaa17;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    border: 10px solid #fff;
    margin: auto;
}

.aemiexp .big {
    display: block;
    font-size: 84px;
    position: relative;
}

.aemiexp .big::after {
    content: "+";
    font-size: 27px;
}

.aemipara {
    color: #fff;
    font-weight: 600;
    font-size: 57px;
    margin-bottom: 10px;
}


/* testimonial */

.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
}

.testimonial img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    margin-right: 5px;
}

.testimonial .tns-nav {
    text-align: center;
    position: absolute;
    bottom: -10%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    left: 50%;
    z-index: 9
}

.testimonial .tns-nav button {
    height: 10px;
    width: 10px;
    background-color: var(--theme-color);
    border-radius: 30px;
    display: inline-block;
    border: none;
    margin: 0 5px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.testimonial .tns-nav button.tns-nav-active {
    width: 20px
}


/* cta */

.req_img {
    background: url(../images/heading-bg.jpg);
    background-position: bottom;
    color: #fff;
}

.req_img1 {
    background: url(../images/heading-bg.jpg);
    background-position: center;
    color: #fff;
}

.background_overlay {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom right, rgb(46 54 142 / 65%), rgb(41 156 215 / 70%));
    transition: 0.3s;
}

.request-content p {
    line-height: 38px;
}


/* blogs */

.myblog {
    background: #fff;
    box-shadow: 0 1px 2px rgba(43, 59, 93, .3);
    margin-bottom: 2em;
    height: 31.5em;
}

.myblog .post-img {
    position: relative
}

.myblog .over-layer {
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    transition: all .3s ease 0s
}

.myblog:hover .over-layer {
    opacity: 1
}

.myblog .post-img img {
    object-fit: cover;
    width: 100%;
    height: 14em;
}

.myblog .post-title {
    margin: 25px 0 15px 0;
    padding: 0 15px
}

.myblog .post-title:before {
    content: "";
    border: 1px solid var(--theme-color);
    width: 18%;
    display: block;
    margin-bottom: 15px
}

.myblog .post-title a {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: inline-block;
    text-transform: capitalize;
    transition: all .3s ease 0s
}

.myblog .post-title a:hover {
    text-decoration: none;
    color: var(--theme-color)
}

.myblog .post-date {
    text-transform: capitalize;
    padding: 0 15px;
    color: var(--theme-color);
    font-size: 13px
}

.myblog .post-date:before {
    margin-right: 7px;
    color: var(--theme-color)
}

.blog_desc {
    padding: 0 15px;
    padding-bottom: 15px;
}

.service-btn {
    margin-top: 15px;
}

.service-btn a {
    color: var(--theme-color);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
}

.service-btn a:before {
    content: '';
    width: 0;
    height: 0;
    border-width: 5px 0 5px 7px;
    border-style: solid;
    display: block;
    right: -38px;
    border-color: transparent transparent transparent var(--theme-color);
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
}

.service-btn a:after {
    content: "";
    position: absolute;
    right: -32px;
    background: var(--theme-color);
    width: 22px;
    height: 2px;
    top: 55%;
    z-index: 1;
    transform: translateY(-50%);
}


/* footer */


/* footer */

#footer {
    background: #446098;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-newsletter {
    padding: 12px 0;
    background: #299cd7;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px
}

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

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #23c0e9;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #23c0e9
}

#footer .footer-top {
    background: #446098;
    border-top: 1px solid #446098;
    border-bottom: 1px solid #ffffff57;
    padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700
}

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

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

#footer .footer-top .social-links a:hover {
    background: #23c0e9;
    color: #fff;
    text-decoration: none
}

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

#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: #23c0e9;
    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: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1
}

#footer .footer-top .footer-links ul a:hover {
    color: #23c0e9
}

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

#footer .footer-top .footer-contact p {
    line-height: 26px
}

#footer .copyright {
    text-align: center;
    padding-top: 30px
}

.footer-top p {
    color: #fff;
}

.footlogo {
    width: 164px;
}

.footlogo1 {
    width: 100px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff
}


/* breadcrumb */

.aemi_breadcrumb {
    position: relative;
    background-image: url(../images/ban1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

div.aemi_breadcrumb>.ttm-bg-layer {
    background-color: rgba(24, 35, 51, 0.85);
}

.aemi_breadcrumb {
    display: block;
    padding-top: 100px;
    padding-bottom: 85px;
    z-index: 11;
}

.breadcrumb_title .page-title-heading h1 {
    text-transform: capitalize;
    font-size: 43px;
    line-height: 50px;
    margin-bottom: 10px;
    color: #fff;
}

.breadcrumb_title .page-title-heading {
    position: relative;
}

.breadcrumb-wrapper a {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
}

.text-theme {
    color: var(--secondary-color);
}


/* About Us */

.a1 {
    height: 15em;
    object-fit: cover;
}

.abt_title h2:before {
    left: 29px;
}


/* blog */

.latest_news_aemi .latest_single {
    margin-bottom: 60px;
    box-shadow: 0px 0px 81px 0px rgb(47 47 47 / 10%);
}

.latest_news_aemi .latest_single .blog_image {
    overflow: hidden;
}

.latest_news_aemi .latest_single .blog_image img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    height: 22em;
    object-fit: cover;
}

.latest_news_aemi .latest_single .blog_content {
    padding: 40px;
}

.latest_news_aemi .latest_single .blog_content .blog_date p {
    color: var(--postcolor);
    font-size: 13px;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
    margin: 0 0 15px;
    line-height: 15px;
}

.latest_news_aemi .latest_single .blog_content p {
    margin: 20px 0 25px;
}

.latest_news_aemi .latest_single .blog_content .blog_date p span {
    color: var(--optionalColor);
}

.latest_news_aemi .latest_single .blog_content h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 24px;
}

.latest_news_aemi .latest_single .blog_content h3 a {
    transition: all 0.3s ease-in-out;
    color: var(--optionalColor);
}

.latest_news_aemi .latest_single .blog_content .blog_user {
    padding-bottom: 40px;
}

.latest_news_aemi .latest_single .blog_content .post_bloger {
    padding: 30px 0 0px;
    border-top: 1px solid #ebebeb;
    display: flex;
    flex-wrap: wrap;
}

.latest_news_aemi .latest_single .blog_content .post_bloger li {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: var(--postcolor);
    transition: all 0.3s ease-in-out;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    padding-right: 50px;
}

.latest_news_aemi .latest_single .blog_content .post_bloger li i {
    padding-right: 7px;
    font-size: 15px;
}

.latest_news_aemi .latest_single .blog_content .blog_user a {
    color: var(--optionalColor);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 30px;
}

.post-meta {
    display: block;
    padding: 7px 3px 3px 0;
    font-size: 12px;
    margin-top: 15px;
    color: #8d9297;
}

.post-meta span {
    padding-right: 0;
    position: relative;
}

.post-meta span i {
    padding-right: 5px;
}

.post-meta span:not(:last-child):after {
    background-color: #eaeaea;
    display: inline-block;
    content: "";
    width: 1px;
    height: 20px;
    vertical-align: middle;
    margin: 0 15px;
}

.separator .sep-line {
    border-color: #f1f1f1;
}

.separator .sep-line.solid {
    border-top-style: solid;
}

.separator .sep-line {
    height: 1px;
    border-top: 1px #ebebeb;
    display: block;
    position: relative;
    width: 100%;
}

.mb-20 {
    margin-bottom: 20px!important;
}

.mt-10 {
    margin-top: 10px!important;
}

.widget.widget-categories {
    padding: 30px 20px;
    background-color: #fff;
}

.widget-area .widget {
    position: relative;
    margin: 40px 0 40px;
}

.widget .widget-title {
    font-size: 22px;
}

.widget .widget-title {
    position: relative;
    margin-bottom: 35px;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
}

.widget .widget-title:after {
    display: block;
    height: 3px;
    margin-top: 0;
    margin-bottom: -13px;
    content: '';
    position: absolute;
    bottom: 0;
    width: 20px;
}

.sidebar .widget ul>li:last-child {
    padding-bottom: 0 !important;
}

.sidebar .widget-categories ul li:not(:last-child) {
    border-bottom: 2px solid #f5faff;
}

.sidebar .widget-categories ul li {
    padding: 12px 0;
    display: block;
    position: relative;
}

.sidebar .widget a {
    font-weight: 500;
    font-size: 14px;
    color: #000
}

.sidebar .widget-categories ul li span {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #687076;
    background-color: #f5faff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.widget .widget-title:after {
    display: block;
    height: 3px;
    margin-top: 0;
    margin-bottom: -13px;
    content: '';
    position: absolute;
    bottom: 0;
    width: 20px;
    background-color: #f71735;
}

.bl_right {
    background-color: #f5faff;
    position: relative;
    padding: 30px;
}

.tags-items ul li {
    display: inline-flex;
    padding-right: 6px;
    padding-bottom: 10px;
}

.tags-items ul li a {
    padding: 9px 25px;
    font-size: 13px;
    background: #eef2f5;
    transition: all 0.3s ease-in-out;
    color: var(--postcolor);
    font-weight: 500;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
}

.tags-items ul li a:hover {
    background: var(--theme-color);
    color: #fff;
}

ul.ttm-recent-post-list>li {
    padding: 5px 0 15px !important;
    display: inline-block;
    width: 100%;
    line-height: 20px;
}

ul.ttm-recent-post-list>li img {
    display: block;
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 18px;
}

ul.ttm-recent-post-list>li .post-date {
    display: block;
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 5px;
}

ul.widget-post.ttm-recent-post-list a {
    font-weight: 500;
    font-size: 14px;
    display: block;
    color: #000;
}


/* contact us */

.contact1 {
    padding: 15px;
    background: #F0F4F9;
}

.mycontact_info {
    /* float: left; */
    margin: 0;
    padding: 0 0 0 50px;
    clear: both;
    width: 100%;
    line-height: 30px;
    position: relative;
}

.mycontact_info span {
    float: left;
    margin: 3px 10px 0 0;
    font-size: 30px;
    width: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.mycontact_info.a5 h6 {
    margin-bottom: 5px;
}

.line_separator {
    border-top: 1px dashed;
    clear: both;
    display: block;
    float: left;
    margin: 20px 0;
    width: 100%;
}

.contact_left label {
    padding-top: 10px;
    font-size: 15px;
}

.contact_left .form-control {
    font-size: 12px;
    border-radius: 0;
}

.contact_left h2 {
    font-size: 29px;
    color: #2e368e;
}

.contact_left h2 span {
    display: block;
}


/* workprocess */

.process {
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

.process__item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    position: relative;
    padding: 15px 35px;
    transition: 0.4s ease-in-out;
}

.process__item:hover {
    background: #f2f2f2;
}

.process__item:hover .process__number {
    transform: translateY(5px);
    color: var(--theme-color);
}

.process__number {
    font-size: 90px;
    -webkit-text-stroke: 1px var(--theme-color);
    display: block;
    color: transparent;
    font-family: "Roboto Condensed";
    font-weight: 700;
    transition: 0.4s ease-in-out;
}

.process__title {
    display: block;
    font-family: "Roboto Condensed";
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 35px;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-top: 30px;
}

.process__subtitle {
    display: block;
    font-family: "Josefin Slab";
    font-size: 20px;
    color: #8c8c8c;
    margin-top: 30px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .process {
        display: inline-block;
    }
    .process__item {
        width: 49%;
        display: inline-block;
    }
}

@media (min-width: 1200px) {
    .process {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .process__item {
        width: 100%;
    }
    .process__item:not(:last-of-type)::after {
        content: "";
        width: 1px;
        height: 75%;
        background: #8c8c8c;
        position: absolute;
        right: 0;
        top: 50%;
        opacity: 0.2;
        transform: translateY(-50%);
    }
}


/* partners */

.partner_list img {
    /* padding: 10px; */
    height: 70px;
    width: auto;
    display: block;
    margin: auto;
    transition: 0.2s;
    object-fit: contain;
}

.partner_list {
    border: 1px solid #f5f5f5;
    /* height: 70px; */
    /* width: 115px; */
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 1em;
}

.partner_list:hover {
    transform: scale(0.9, 0.9);
    transition: 0.2s;
}

.visa_info li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-right: 5px;
}

.visa_info li {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}


/* faq */

.accordion_two_section {
    background: #f7f7f7
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px
}

.faqaccordins .panel-group {
    margin-bottom: 0
}

.faqaccordins .panel {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 10px solid transparent;
    border-radius: 0;
    margin: 0
}

.faqaccordins .panel-default {
    border: 0
}

.faqaccordins .panel-default>.panel-heading {
    background: #4385f5;
    border-radius: 0px;
    border-color: #4385f5
}

.accordion-wrap .panel-heading {
    padding: 0px;
    border-radius: 0px
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.faqaccordins .panel .panel-heading a.collapsed {
    color: #000;
    background-color: #fff;
    display: block;
    padding: 12px 20px;
    border: 1px solid #eee;
    margin-bottom: 4px;
}

.faqaccordins .panel .panel-heading a {
    display: block;
    padding: 12px 20px;
    color: #fff
}

.accordion-wrap .panel .panel-heading a {
    font-size: 14px
}

.faqaccordins .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0;
    padding-top: 0;
    padding: 20px 20px 20px 30px;
    background: #4385f5;
    color: #fff;
    font-size: 14px;
    line-height: 24px
}

.faqaccordins .panel .panel-heading a:after {
    content: "\2212";
    color: var(--secondary-color);
    background: #fff
}

.faqaccordins .panel .panel-heading a:after,
.faqaccordins .panel .panel-heading a.collapsed:after {
    font-family: 'FontAwesome';
    font-size: 14px;
    float: right;
    width: 21px;
    display: block;
    height: 21px;
    line-height: 21px;
    text-align: center;
    border-radius: 50%;
    color: #FFF
}

.faqaccordins .panel .panel-heading a.collapsed:after {
    content: "\2b";
    color: #fff;
    background-color: #DADADA
}

.faqaccordins .panel .panel-heading a:after {
    content: "\2212";
    color: var(--secondary-color);
    background: #dadada
}

.quote-wrapper {
    background: rgba(130, 139, 178, .1);
    padding: 15px;
    line-height: 1.733;
    color: #888;
    font-style: italic;
    margin-top: 25px;
    margin-bottom: 25px;
}

.blog_details .quotes {
    background: #f5f5f5;
    padding: 15px 15px 15px 20px;
    border-left: 2px solid;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .quotes {
        padding: 25px 25px 25px 30px;
    }
}
@media(max-width:767px){
    .widget_media_image{
        display:flex;
        align-items:center;
        margin:auto;
        justify-content:center;
    }
}
.blog_user a {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 30px;
}

.social-items li a i {
    padding: 0;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 29px;
    border-radius: 50%;
    font-size: 15px;
    margin: 0;
    background: transparent;
    transition: all 0.3s ease-in-out;
}


/* wechat */

.chatpop ul {
    position: absolute;
}

.chatpop p {
    font-size: 14px !important;
}

.chatpop ul li {
    list-style: none;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    height: 307px;
    padding: 14px;
    position: relative;
    z-index: 9;
}

.chatpop ul li a {
    color: #000;
    text-align: left;
    width: 282px;
    height: auto;
    display: block;
    padding: -3px;
}

.chatpop ul:hover {
    visibility: visible!important;
    opacity: 1!important;
}

.chatpop .my-float {
    font-size: 16px;
    /* margin-top: 18px; */
}

a#menu-share+ul {
    visibility: hidden;
}

a#menu-share:hover+ul {
    visibility: visible;
    animation: scale-in 0.5s;
}

a#menu-share i {
    animation: rotate-in 0.5s;
}

a#menu-share:hover>i {
    animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
    0% {
        bottom: -40px
    }
    50% {
        bottom: 40px
    }
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate-in {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-out {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@media(max-width:767px) {
    .chatpop ul {
        position: fixed;
        right: 14px;
    }
}


/*  
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 992px) {
    .main-banner .caption {
        top: 60%;
    }
    .main-banner .caption h2 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 22px;
    }
    .main-banner .caption .main-button-red {
        margin-top: 15px;
    }
    section.our-facts .video {
        margin-left: 0px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .sub-header .left-content p {
        display: none;
    }
    .sub-header .right-icons {
        text-align: center;
    }
    .main-nav .nav .sub-menu {
        display: none;
    }
    .header-area .main-nav .nav li ul.sub-menu li a {
        color: #1f272b;
    }
    #footer .footer-top .footer-links ul a {
        margin: auto;
    }
    .footlogo {
        width: 225px;
        margin-bottom: 2em;
    }
    .request-content p {
        width: 100% !important;
    }
    .abt_title h2:before {
        display: none !important;
    }
    .sub-header .col-lg-4.col-sm-4 {
        padding: 0;
    }
}

.dropdown.ms-2.toplanguage .dropdown-item.active,
.dropdown-item:active {
    font-size: 14px;
    background: transparent;
    color: #fff;
    box-shadow: transparent;
}

.toplanguage button {
    width: 12em;
}

.toplanguage ul {
    width: 170px;
    background: #299cd7;
    text-align: center;
    border-radius: 0;
}

.footchat a {
    font-size: 30px;
    color: #fff;
}

.footchat a i {
    font-size: 40px !important;
    color: #fff;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
    cursor: pointer;
    display: none;
}


/* G-Translate */

#goog-gt-tt {
    display: none!important;
}

.goog-te-banner-frame {
    display: none!important;
}

.goog-te-menu-value:hover {
    text-decoration: none!important;
}

.goog-text-highlight {
    background-color: transparent!important;
    box-shadow: none!important;
}

body {
    top: 0!important;
}

#google_translate_element2 {
    display: none!important;
}
.toplanguage select {
    color: #ffff;
    border: 0;
    font-size: 14px;
    background: #2f8ecc;
}


/* star rating  */

.star-rating {
    display: flex;
}

.star-rating svg {
    width: 15px;
    height: 15px;
    color: #ff9900;
}

.star-rating svg:not(:last-child) {
    margin-right: 3px;
}

.footer-contact a {
    color: #fff;
}
.expander {
    height: 5em;
    overflow: hidden;
    cursor: pointer;
}
.prev-news {
    display: flex;
    justify-content: end;
}

.chatpop a {
	font-size: 12px;
}
.bg-form{
    background:#F0F4F9;
}

#feedback1 {
    height: 0px;
    width: 85px;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1000;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback1 a {
    display: block;
    height: 52px;
    width: 155px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}



#feedback {
    height: 0px;
    width: 85px;
    position: fixed;
    right: 0;
    top: 89%;
    z-index: 1000;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback a {
    display: block;
    background: #bf0000;
    height: 43px;
    padding-top: 7px;
    width: 100px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

a.navbar-brand span {
    line-height: 13px !important;
    color: #000;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    align-items: center;
    top: 37px;
    bottom: 0;
    left: -47px;
    color: var(--theme-color);
    font-weight: 800;
}
.workprocess .card {
    height: 16em !important;
}

