@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --light-color: #f5f5f5;
    --red-color: #106466;
    --grey-color: #6e6e6e
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
    --top-spacing: 100px
}

.pc-none {
    display: none
}

.opensans {
    font-family: 'Open Sans', sans-serif;
}

* {
    font-family: "Open Sans", sans-serif;
    outline: 0 !important
}

p {
    font-size: 16px;
    line-height: 20px;
    color: var(--gray);
    margin: 0 0 15px
}

.navbar .container {
    display: block
}

.mg-bt-20 {
    margin-bottom: 20px
}

.mg-tp-20 {
    margin-top: 20px
}

.justify-center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.side-heading {
    color: var(--gray);
    margin: 0 0 20px;
    font-size: 26px;
    padding: 8px 0 8px 20px;
    border-left: 8px solid var(--red-color)
}

.side-heading-dark {
    color: var(--grey-color);
    margin: 0 0 20px;
    font-size: 26px;
    padding: 8px 0 8px 20px;
    border-left: 8px solid var(--grey-color)
}

.side-heading span {
    color: var(--red-color);
    font-weight: 700
}

.icon-box {
    width: 40px;
    height: 40px
}

.pd-bt-30 {
    padding-bottom: 30px
}

.icon-box-50 {
    width: 50px;
    height: 50px;
    display: -webkit-box
}

.sec-pad-40 {
    padding: 40px 0
}

.sec-pad-60 {
    padding: 60px 0
}

.sec-pad-80 {
    padding: 80px 0
}

.center-heading {
    text-align: center;
    font-size: 25px;
    color: var(--grey-color);
    line-height: 1;
    position: relative;
    margin: 0 0 30px
}

.center-heading span {
    color: var(--red-color);
    font-weight: 800;
    font-size: 35px
}

.mg-none {
    margin: 0 !important
}

.center-heading:after {
    content: "";
    width: 75px;
    height: 9px;
    background: var(--red-color);
    top: 50%;
    left: 0;
    position: absolute
}

.center-heading:before {
    content: "";
    width: 75px;
    height: 9px;
    background: var(--red-color);
    top: 50%;
    right: 0;
    position: absolute
}

.mg-bt-30 {
    margin-bottom: 30px
}

.mg-bt-40 {
    margin-bottom: 40px
}

.color-white {
    color: #fff !important
}

.color-white span {
    color: #fff !important
}

.color-white:after {
    content: "";
    width: 75px;
    height: 9px;
    background: #fff;
    top: 50%;
    left: 0;
    position: absolute
}

.color-white:before {
    content: "";
    width: 75px;
    height: 9px;
    background: #fff;
    top: 50%;
    right: 0;
    position: absolute
}

.white-color {
    color: #fff
}

.side-anim {
    position: relative
}

.side-anim:after {
    content: "";
    position: absolute;
    left: -7px;
    top: 0;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: top-btm 2s infinite linear
}

@keyframes top-btm {
    0% {
        top: 100%
    }

    50% {
        top: 0
    }

    100% {
        top: 100%
    }
}

header {
    width: 100%;
    z-index: 2;
    box-shadow: 0 -4px 25px #9a9a9a;
    top: 0
}

header .navbar {
    background: #fff;
    margin: 0;
    display: block;
    padding: 0
}

.nav>li>a {
    position: relative;
    display: block;
    font-size: 17px;
    padding: 0 20px;
    font-weight: 400;
    color: #6e6e6e;
    transition: .5s
}

.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    padding: 30px 0
}

.nav li:not(:last-child) a {
    border-right: 2px solid #ccc
}

.nav li {
    position: relative
}

.nav li:hover a {
    color: #317276
}

.nav li.active a {
    color: #317276
}

.nav li:after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    right: 0;
    width: 44px;
    height: 6px;
    background: #106466;
    transform: translateX(-50%);
    transition: .5s;
    opacity: 0;
    visibility: hidden
}

.nav li:hover:after {
    bottom: -30px;
    opacity: 1;
    visibility: visible
}

.nav li.active:after {
    bottom: -30px;
    opacity: 1;
    visibility: visible
}

header a button {
    color: #fff;
    background: var(--red-color);
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--red-color);
    border-radius: 5px;
    text-align: center;
    align-self: center;
    align-items: center;
    justify-content: space-around;
    display: flex;
    width: 100%;
    margin: 0
}

header a button i {
    font-size: 10px;
    text-align: center
}

.sm-icon {
    width: 25px;
    margin: 0 2px 0 0
}

.top-bar {
    background: var(--light-color);
    padding: 5px 0
}

.flex-content {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.top-bar h6 {
    margin: 0;
    color: var(--grey-color);
    font-size: 14px
}

a:hover {
    text-decoration: none
}

.banner {
    background: url(../../assets/images/banner2.jpg) no-repeat;
    background-position: center;
    height: 100%;
    position: relative;
    background-size: cover;
    padding: 90px 0;
}

.banner .content {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.content-end {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end
}

.banner .content .flex-first {
    display: flex;
    line-height: 1;
    align-items: center
}

.banner .content .flex-first p {
    font-size: 150px;
    color: #fff;
    margin: 0;
    font-weight: 800
}

.banner .content .flex-first .div p:nth-child(1) {
    margin: 0 0 2px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600
}

.banner .content .flex-first .div p:nth-child(2) {
    margin: 5px 0 0;
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    line-height: .9;
    font-weight: 700
}

.banner .content .flex-first .div p:nth-child(2) span {
    font-size: 24px;
    line-height: 0
}

.banner .container {
    height: 100%
}

.banner .assis {
    color: #fff;
    margin: 14px 0 0;
    font-size: 51px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    line-height: 1
}

.consultancy {
    font-size: 40px;
    color: #2c3532;
    background: #079ca0;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px;
    border-radius: 5px;
    margin: 10px 0 0
}

.content-form {
    width: 100%;
}

.content-form form input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid #fff;
    margin: 0 0 20px;
    background: #fff;
    height: auto;
}

.content-form h6 span {
    color: var(--red-color);
    font-weight: 700
}

.content-form h6 {
    text-transform: capitalize;
    text-align: center;
    background: #fff;
    margin: 0;
    padding: 12px;
    font-size: 30px;
    color: var(--grey-color);
    border-radius: 5px 5px 0 0;
}

.content-form form {
    padding: 20px;
    background: #00000063;
    border-radius: 0 0 5px 5px;
}

.content-form form button {
    width: 100%;
    border: 2px solid #fff;
    background: 0 0;
    color: #fff;
    padding: 7px 0;
    font-size: 22px;
    font-weight: 600;
    border-radius: 5px;
    align-self: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.content-form form button i {
    font-size: 9px;
    margin: 0 10px 0 0;
    transform: translateY(0)
}

.flex-center {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.c-logos {
    padding: 20px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 6px 6px 0 #0b474878
}

.banner .row {
    height: 100%;
    /* margin-bottom: 40px */
}

.client {
    background: url(../images/banner-red.jpg) no-repeat;
    background-size: cover;
    padding: 30px 0
}

.client h1,
.client h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin: 0
}

.client .row {
    padding: 0 0 0 30px
}

.client p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.1
}

.client .content-2 {
    position: relative
}

.client .content-2::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 8px;
    height: 90%;
    background: #fff
}

.first-fold h6 {
    margin: 0 0 0 10px;
    color: var(--grey-color);
    font-weight: 700;
    line-height: 1;
    font-size: 14px
}

.service .content-box {
    position: relative;
    overflow: hidden;
    border-bottom: var(--red-color) 6px solid;
    border-radius: 5px;
    z-index: 9;
    transition: .6s ease-in;
    margin: 0 15px;
    height: 245px
}

.service .content-box .main-content {
    padding: 20px
}

.service .content-box .abs-img {
    position: absolute;
    top: 0;
    right: -30%;
    z-index: -99;
    transition: .5s;
    transform: scale(1.2)
}

.service .content-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #3d3d3d;
    margin: 15px 0
}

.service .content-box p {
    color: #3d3d3d;
    transition: .5s;
    letter-spacing: -1px
}

.service .content-box i {
    background: var(--red-color);
    padding: 3px 4px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px
}

.service .content-box .abs {
    position: absolute;
    bottom: 20px
}

.service .content-box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, #fff, #fff, #ffffff3d);
    top: 0;
    left: 0;
    z-index: -9;
    transition: .5s
}

.service {
    background: url(../images/services-bg.jpg) no-repeat;
    background-size: 100%
}

.service .content-box:hover .abs-img {
    right: 0;
    width: 40%;
    transform: scale(1)
}

.service .content-box:hover::before {
    opacity: 0
}

.service .content-box .content-inner {
    transition: .5s;
    transition-delay: .5s;
    display: flex;
    align-self: center;
    flex-direction: column
}

.service .content-box:hover .content-inner h4 {
    margin-left: 10px;
    font-size: 16px
}

.service .content-box:hover .content-inner {
    flex-direction: row;
    align-items: center
}

.service .content-box .hover {
    background: var(--red-color);
    position: absolute;
    bottom: 0;
    padding: 20px;
    opacity: 0;
    transition: .5s ease-in;
    height: 65%
}

.service .content-box:hover i,
.service .content-box:hover p {
    opacity: 0
}

.service .content-box .hover p {
    color: #fff;
    font-size: 16px;
    letter-spacing: -1px
}

.service .content-box .hover i {
    background: #fff;
    padding: 3px 4px;
    border-radius: 50%;
    color: var(--red-color);
    transform: rotate(45deg);
    transition: .5s;
    transition-delay: .5s;
    font-size: 12px
}

.service .content-box .hover a {
    color: #fff;
    transform: translateX(-40px);
    display: inline-block;
    opacity: 0;
    transition: .5s;
    transition-delay: .8s
}

.service .content-box .hover i,
.service .content-box:hover .hover,
.service .content-box:hover .hover p {
    opacity: 1
}

.service .content-box:hover .hover a {
    transform: translateX(0);
    opacity: 1
}

.service .content-box:hover .hover i {
    transform: rotate(0)
}

.service .content-box:hover {
    border-color: var(--grey-color)
}

.cccc {
    width: 35px
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: url(../images/dot-slider.png) no-repeat;
    background-size: contain;
    filter: grayscale(1)
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    filter: grayscale(0)
}

.slick-dots {
    bottom: -50px
}

.breaker {
    background: url(../images/breaker.jpg) no-repeat;
    background-size: cover;
    padding: 20px 0;
    text-align: center;
    margin: 100px 0 0;
    border-radius: 10px
}

.breaker h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin: 0
}

.breaker h3 span {
    font-weight: 100;
    font-size: 24px
}

.breaker p {
    color: #fff
}

.breaker button {
    font-size: 16px;
    padding: 8px 22px;
    background: var(--light-color);
    color: #3d3d3d;
    font-weight: 700;
    border: 1px solid var(--light-color);
    border-radius: 6px
}

.consult {
    background: url(../images/counsaltancy-bg.jpg) no-repeat;
    background-size: 100% 100%;
    padding-top: 0
}

.consult .content {
    position: relative;
    overflow: hidden;
    margin: 0 0 30px
}

.consult .content-ap {
    position: absolute;
    bottom: 50px;
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 98;
    transition: .5s;
    transition-delay: .2s
}

.consult .content-ap h4 {
    margin: 0;
    font-size: 24px;
    position: relative;
    transition: .5s;
    transition-delay: .3s;
    font-weight: 600;
    letter-spacing: -1px
}

.consult .content-ap h4::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 70px;
    height: 8px;
    background: #daaf89;
    transform: translate(-50%, -50%);
    transition: .5s
}

.consult .content-hvr {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
    border-radius: 6px;
    transition: .5s
}

.consult .content-hvr p {
    position: absolute;
    bottom: -50%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 0 25px;
    margin: 0;
    transition: .4s;
    opacity: 0;
    transition-delay: .5s
}

.consult .content:hover .content-hvr {
    height: 50%;
    border-radius: 0
}

.consult .content:hover .content-ap h4::before {
    bottom: -50%;
    opacity: 0
}

.consult .content:hover .content-ap h4 {
    font-size: 22px
}

.consult .content:hover .content-ap {
    bottom: 70px
}

.consult .content:hover .content-hvr p {
    bottom: 25px;
    opacity: 1
}

.process {
    background: url(../images/jourmal-pub.jpg) no-repeat;
    background-size: cover
}

.process .stp {
    background: url(../images/step-bg.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 165px;
}

.process .stp h4 {
    display: flex;
    height: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--grey-color);
    flex-direction: column;
    line-height: 1;
}

.process .content {
    height: 100%
}

.process .content h6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.process .content h6 span {
    text-transform: uppercase;
    font-size: 14px
}

.lft-line,
.ryt-line {
    position: relative
}

.ryt-line:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -45px;
    background: url(../images/arrow.png) no-repeat;
    background-size: contain;
    width: 32px;
    height: 10px;
    transform: translate(-50%, -50%)
}

.lft-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    background: url(../images/arrow.png) no-repeat;
    background-size: contain;
    width: 35px;
    height: 10px;
    transform: translate(-50%, -50%) rotateY(180deg)
}

.expertise {
    background: url(../images/expertise.jpg) no-repeat;
    background-size: 100% 100%
}

.e-content {
    background: #fff url(../images/e-bg2.jpg) no-repeat;
    background-size: 463px 492px;
    padding: 25px;
    box-shadow: 0 0 10px #0003;
    background-position: right;
    position: relative;
}

.e-content .abs-content {
    position: absolute;
    right: 42.5%;
    top: 50%;
    background: #106466;
    text-align: center;
    width: 160px;
    padding: 25px 0;
    border-radius: 12px;
    transform: translateY(-50%) translateX(50%);
}

.e-content .abs-content .starsArea {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
}

.e-content .abs-content .cc h4 {
    font-size: 95px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.e-content .abs-content .cc p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.e-content .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--light-color);
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 30px;
    transition: .5s;
    cursor: pointer
}

.e-content .content img {
    transition: .5s
}

.e-content .content h6 {
    margin: 10px 0 0;
    font-size: 14px;
    transition: .5s;
    font-weight: 600;
    color: var(--grey-color)
}

.e-content .content:hover img {
    filter: brightness(20)
}

.e-content .content:hover {
    background: #6e6e6e
}

.e-content .content:hover h6 {
    color: #fff
}

.vvvvv {
    width: 32px
}

.e-content .clr {
    background: #6e6e6e
}

.e-content .clr h6 {
    color: #fff
}

.journals {
    padding-top: 0;
    background: url(../images/journals-bg.jpg) no-repeat;
    background-size: 100% 100%
}

.journals .links {
    text-align: center
}

.journals .links button {
    color: #fff;
    padding: 8px 20px;
    border: 1px solid;
    font-size: 15px;
    border-radius: 6px;
    margin: 0 10px 0
}

.journals .links a:nth-child(1) button {
    background: var(--grey-color);
    border-color: var(--grey-color)
}

.journals .links a:nth-child(2) button {
    background: var(--red-color);
    border-color: var(--red-color)
}

.journals .journal-slide {
    padding: 30px 0 45px;
    margin-bottom: 80px
}

.ex-content {
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 245px;
    background: url(../images/ex-bg.png) no-repeat;
    background-size: 100% 100%;
    text-align: center
}

.ex-content p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px
}

.ex-content h6 {
    margin: 10px 0;
    font-weight: 800;
    color: var(--red-color);
    font-size: 22px
}

.journal-slide .slick-dots {
    bottom: 0
}

.testimonial {
    background: url(../images/testimonial.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.testimonial .client-top-bar {
    background: url(../images/jourmal-pub.jpg) no-repeat;
    background-size: cover;
    padding: 35px;
    border-radius: 10px
}

.testimonial .row {
    display: flex !important
}

.swiper-slide {
    filter: grayscale(1)
}

.swiper-slide-active {
    filter: grayscale(0)
}

.text-op .swiper-slide {
    opacity: 0
}

.text-op .swiper-slide-active {
    opacity: 1
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: -250px;
    left: auto
}

.swiper-button-next,
.swiper-button-prev {
    top: 120%
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -250px;
    right: auto
}

.swiper-button-next:after,
.swiper-button-prev:after {
    text-align: center;
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
    font-size: 14px;
    color: #282828;
    background: #fff;
    width: 25px;
    height: 25px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 50px
}

.pd-t-10 {
    padding-top: 25px
}

.slider {
    padding: 80px 0
}

.p-none {
    pointer-events: none
}

.slider {
    color: #e7e7e7;
    text-align: center
}

.slider p {
    margin-bottom: 25px;
    color: #e7e7e7
}

.skew-head {
    transform: skewX(-18deg);
    padding: 3px;
    border: 2px solid #cbcbcb;
    display: inline-block
}

.skew-head .ic {
    background: #cbcbcb;
    padding: 2px 4px 6px;
    color: #1e4fad;
    margin: 0 3px 0 0
}

.skew-head .ic i {
    transform: skewX(18deg) translate(2px, 2px);
    font-size: 14px
}

.skew-head h6 {
    background: #1e4fad;
    color: #fff;
    padding: 5px 6px;
    display: inline-block;
    margin: 0
}

.skew-head h6 span {
    transform: skewX(18deg);
    display: block
}

.slider h5 {
    margin: 0
}

.slider .ins {
    margin-bottom: 25px
}

.get-touch {
    background: url(../images/get-touch.jpg) no-repeat;
    background-size: cover
}

.flex-normal {
    justify-content: flex-start
}

.contact-detail h6 {
    font-size: 14px;
    color: var(--grey-color);
    margin: 0
}

.contact-detail h5 {
    color: var(--grey-color);
    font-weight: 600;
    margin: 0
}

.get-touch form input,
.get-touch form textarea {
    margin-bottom: 25px;
    padding: 22px;
    resize: none
}

.get-touch form button {
    color: #fff;
    background: var(--red-color);
    padding: 7px 30px;
    border: 1px solid var(--red-color);
    border-radius: 10px
}

.fa-play {
    font-size: 9px;
    transform: translateY(-2px)
}

.footer-section {
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    padding: 40px 0 0
}

.footer-section .content-1 p {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    margin: 15px 0 15px
}

.footer-section .content-1 {
    height: 100%
}

.footer-section .content-1 h5 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    padding: 0 0 15px;
    border-bottom: 1px solid #106466
}

.footer-section .content-1.cc {
    padding: 30px 0 0
}

.footer-section .form-wrapper {
    display: flex
}

.footer-section .form-wrapper button {
    width: 25%;
    border-radius: 0 10px 10px 0;
    background: #daaf89;
    color: #2c3532;
    font-size: 20px;
    border: 1px
}

.footer-section .form-wrapper input {
    width: 75%;
    padding: 8px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #ccc
}

.footer-section .social i {
    color: #fff;
    border: 2px solid;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.bdr-bt {
    border-bottom: 4px solid #106466
}

.copyright {
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin: 0
}

footer .social a {
    margin-right: 8px
}

.copyright a {
    color: #fff
}

.stickyyy {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 10px #0003
}

#google_translate_element {
    position: relative;
    padding: 0 0 0 15px;
}

#google_translate_element::before {
    content: "\f0ac";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    top: 50%;
    left: 0;
    font-size: 18px;
    transform: translateY(-50%);
    color: #6e6e6e;
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    height: auto;
    overflow: hidden;
}

.goog-te-gadget .goog-te-combo {
    margin: 0px 0 !important;
    background: #f5f5f5;
    color: #6e6e6e;
    border-radius: 5px;
    border: 0px solid;
    outline: none !important;
    padding: 5px 10px;
}

.goog-te-gadget .goog-te-combo option {
    background: #f5f5f5;
}

.goog-te-gadget .goog-te-combo::-webkit-scrollbar {
    width: 8px;
}

.goog-te-gadget .goog-te-combo::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.goog-te-gadget .goog-te-combo::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 00px;
}

.goog-te-gadget .goog-te-combo::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.goog-te-gadget span {
    white-space: nowrap;
    font-size: 0;
}

.goog-logo-link,
.goog-logo-link:link,
.goog-logo-link:visited,
.goog-logo-link:hover,
.goog-logo-link:active {
    font-size: 0;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    opacity: 0;
}

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

body {
    top: 0 !important;
}


/*google translate link | logo */

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}


/* google translate banner-frame */

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

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.formContent {
    display: flex;
    color: #fff;
    align-items: center;
    position: relative;
    justify-content: center;
}

.formContent:before {
    content: '';
    position: absolute;
    right: 40px;
    bottom: 0;
    background: url(../images/formContentArrow.png) no-repeat;
    background-size: contain;
    width: 12px;
    height: 30px;
}

.formContent .lft {
    display: flex;
    flex-direction: column;
}

.formContent .lft .best {
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.formContent .lft .discount {
    text-transform: uppercase;
    font-size: 20px;
    transform: translateX(3px);
    line-height: 1;
}

.formContent .ryt {
    display: flex;
}

.formContent .ryt .fifup {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    line-height: 1;
    justify-content: center;
    transform: translateY(-5px);
}

.formContent .ryt .fifup .upto {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    transform: translateY(8px) translateX(5px);
}

.formContent .ryt .fifup .fifty {
    color: #fecc9b;
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
}

.formContent .ryt .perOff {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.formContent .ryt .percent {
    font-size: 42px;
    line-height: 1;
}

.formContent .ryt .off {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}


/* ! Responsive */

@media (max-width:1600px) {
    .breaker {
        margin: 100px 0 -132px;
        position: relative
    }

    .consult {
        padding-top: 100px
    }
}

@media (max-width:1440px) {
    .breaker {
        margin: 75px 0 -180px;
        position: relative
    }

    .consult {
        padding-top: 150px
    }
}

@media (max-width:1375px) {
    .breaker {
        margin: 75px 0 -205px;
        position: relative
    }

    .consult {
        padding-top: 180px
    }
}

@media (max-width:1360px) {
    .breaker {
        margin: 75px 0 -212px;
        position: relative
    }

    .consult {
        padding-top: 190px
    }
}

@media (max-width:1336px) {
    .breaker {
        margin: 60px 0 -212px;
        position: relative
    }
}

@media (max-width:1280px) {
    .breaker {
        margin: 75px 0 -250px;
        position: relative
    }

    .consult {
        padding-top: 220px
    }
}

@media (max-width:1199px) {
    .formContent:before {
        right: 30px;
    }

    .formContent .lft .best {
        font-size: 38px;
    }

    .formContent .lft .discount {
        font-size: 17px;
    }

    .formContent .ryt .fifup .upto {
        font-size: 10px;
    }

    .formContent .ryt .fifup .fifty {
        font-size: 65px;
    }

    .formContent .ryt .percent {
        font-size: 35px;
    }

    .formContent .ryt .off {
        font-size: 15px;
    }

    .e-content {
        background-size: 372px 400px;
    }

    .e-content .abs-content .cc h4 {
        font-size: 80px;
    }

    .e-content .abs-content .cc p {
        font-size: 17px;
        line-height: 1.3;
    }

    .e-content .abs-content .starsArea {
        font-size: 18px;
    }

    .e-content .abs-content {
        width: 140px;
        right: 40.5%;
        padding: 20px 0;
    }

    .expertise .icon-box-50 {
        width: 35px;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .consultancy {
        font-size: 34px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 39px
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 18px
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 29px
    }

    .banner .assis {
        font-size: 57px
    }

    .nav>li>a {
        font-size: 14px;
        padding: 0 14px
    }

    .content-form h6 {
        font-size: 18px
    }

    header a button {
        padding: 9px 16px;
        font-size: 14px
    }

    .consult .content:hover .content-hvr {
        height: 65%;
        border-radius: 0
    }

    .consult .content:hover .content-ap {
        bottom: 85px
    }

    .side-heading {
        font-size: 22px
    }

    p {
        font-size: 14px;
        line-height: 18px;
        color: var(--gray);
        margin: 0 0 10px
    }

    .first-fold h6 {
        font-size: 12px
    }

    .center-heading:after,
    .center-heading:before {
        width: 60px
    }

    .service .content-box h4 {
        font-size: 14px;
        margin: 10px 0
    }

    .service .content-box {
        height: 210px
    }

    .process .stp {
        height: 130px
    }

    .process .content h6 {
        font-size: 25px;
    }

    .process .content h6 span {
        font-size: 12px
    }

    .process .stp h4 {
        font-size: 14px
    }

    .e-content .content h6 {
        font-size: 12px
    }

    .e-content .content {
        padding: 7px;
        margin: 0 0 20px;
    }

    .e-content {
        padding: 20px;
    }

    .center-heading {
        font-size: 20px
    }

    .center-heading span {
        font-size: 30px
    }

    .ex-content {
        height: 210px
    }

    .ex-content p {
        font-size: 14px;
        line-height: 16px
    }

    .ex-content h6 {
        margin: 0 0 10px
    }
}

@media (max-width:991px) {
    .formContent:before {
        right: 20px;
    }

    .e-content {
        background-size: 305px 325px;
        background-position: 111% 100%;
    }

    .e-content .abs-content .cc h4 {
        font-size: 60px;
    }

    .e-content .abs-content .cc p {
        font-size: 15px;
        line-height: 1.2;
    }

    .e-content .abs-content .starsArea {
        font-size: 13px;
    }

    .e-content .abs-content .cc p {
        font-size: 14px;
        line-height: 1.2;
    }

    .e-content .abs-content {
        width: 115px;
        right: 40.2%;
        padding: 16px 0;
    }

    .get-touch form input,
    .get-touch form textarea {
        margin-bottom: 15px;
        padding: 9px
    }

    .get-touch form input::placeholder,
    .get-touch form textarea::placeholder {
        font-size: 12px !important
    }

    .consultancy {
        font-size: 24px
    }

    .content-form h6 {
        padding: 11px;
        font-size: 22px;
    }

    .content-form form {
        padding: 15px;
    }

    .banner .content .flex-first p {
        font-size: 110px
    }

    .banner .assis {
        font-size: 38px;
        margin: 6px 0 0
    }

    .content-form form input {
        padding: 8px;
        margin: 0 0 18px;
    }

    .content-form form button {
        padding: 6px 0;
        font-size: 18px;
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 19px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 25px
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 11px
    }

    .banner {
        padding: 40px 0
    }

    .tab-none {
        display: none
    }

    .top-bar h6 {
        font-size: 14px
    }

    .client h1,
    .client h4 {
        font-size: 16px
    }

    .client p {
        font-size: 12px;
        line-height: 1
    }

    .side-heading {
        font-size: 17px;
        margin: 0 0 10px
    }

    p {
        font-size: 12px;
        line-height: 14px;
        color: var(--gray);
        margin: 0 0 10px
    }

    .first-fold .col-sm-4 {
        padding: 0 3px
    }

    .first-fold h6 {
        font-size: 11px;
        margin: 0 0 0 10px
    }

    .icon-box {
        width: 30px;
        height: 30px
    }

    .center-heading {
        font-size: 14px;
        margin: 0 0 21px
    }

    .center-heading span {
        font-size: 25px
    }

    .icon-box-50 {
        width: 35px;
        height: 35px;
        display: -webkit-box
    }

    .service .content-box {
        height: 150px
    }

    .service .content-box .main-content {
        padding: 10px
    }

    .service .content-box p {
        font-size: 12px;
        line-height: 13px;
        margin: 0 0 6px
    }

    .service .content-box h4 {
        font-size: 12px;
        margin: 4px 0 2px
    }

    .service .content-box .abs {
        position: absolute;
        bottom: 7px
    }

    .service .content-box i {
        font-size: 10px
    }

    .service .content-box .hover {
        padding: 5px 10px
    }

    .service .content-box .hover a {
        font-size: 12px
    }

    .service .content-box .hover p {
        color: #fff;
        font-size: 11px;
        line-height: 1
    }

    .breaker h3 {
        font-size: 25px
    }

    .breaker h3 span {
        font-size: 16px
    }

    .breaker button {
        font-size: 12px;
        padding: 6px 14px
    }

    .service {
        background: url(../images/services-bg.jpg) no-repeat;
        background-size: cover
    }

    .consult .content-ap h4 {
        font-size: 15px
    }

    .consult .content:hover .content-ap h4 {
        font-size: 18px
    }

    .consult .content-ap h4::before {
        bottom: -40px;
        width: 50px;
        height: 6px
    }

    .consult .content-ap {
        bottom: 30px
    }

    .consult .content:hover .content-ap {
        bottom: 50px
    }

    .consult .content:hover .content-hvr p {
        bottom: 11px;
        opacity: 1;
        font-size: 11px;
        line-height: 1
    }

    .process .stp {
        height: 90px
    }

    .process .stp h4 {
        font-size: 11px;
    }

    .process .content h6 {
        font-size: 14px;
        line-height: 1
    }

    .process .content h6 span {
        font-size: 8px
    }

    .ryt-line:after {
        width: 28px;
        height: 7px
    }

    .lft-line::before {
        width: 24px;
        height: 7px
    }

    .e-content .content h6 {
        font-size: 8px
    }

    .expertise .icon-box-50 {
        width: 25px;
        height: 20px;
        display: -webkit-box
    }

    .expertise .col-sm-4 {
        padding: 0 5px
    }

    .e-content .content h6 {
        font-size: 11px
    }

    .ex-content {
        height: 160px
    }

    .ex-content {
        height: 160px;
        padding: 0 14px
    }

    .ex-content p {
        font-size: 11px;
        line-height: 12px
    }

    .slider {
        padding: 36px 0
    }

    .nav>li>a {
        font-size: 13px;
        padding: 0 8px
    }

    header a button {
        padding: 10px 2px;
        font-size: 11px
    }

    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: -195px;
        left: auto
    }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: -196px;
        right: auto
    }
}

@media (max-width:767px) {
    .color-white:after {
        left: -25px;
    }

    .formContent:before {
        right: 0 px;
    }

    .color-white:before {
        right: -25px;
    }

    .top-bar h6 {
        font-size: 10px;
    }

    .navbar-nav {
        padding: 10px 0 0;
    }

    header .navbar {
        padding: 12px 0;
    }

    header .navbar .row {
        justify-content: center;
    }

    .client .mg {
        margin-bottom: 20px;
    }

    .first-fold {
        padding: 0;
    }

    .first-fold .container {
        position: relative;
    }

    .first-fold .row .col-md-6:nth-child(1) {
        position: unset;
    }

    .first-fold .row .col-md-6:nth-child(1) .content {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        z-index: 9;
        background: #ffffffcf;
        transform: translateY(-50%);
        padding: 65px 0;
        backdrop-filter: blur(2px);
    }

    .consult .content:hover .content-hvr {
        height: 70%;
        border-radius: 0;
    }

    .consult .content:hover .content-ap {
        bottom: 70px;
    }

    .consult .content:hover .content-hvr p {
        bottom: 22px;
        opacity: 1;
        font-size: 12px;
        line-height: 1;
    }

    .consult .content-ap h4 {
        font-size: 18px;
    }

    .process .stp h4 {
        font-size: 16px;
        line-height: 1.2;
    }

    .process .content h6 {
        font-size: 24px;
        margin: 0;
    }

    .process .content h6 span {
        font-size: 12px;
    }

    .process .stp {
        height: 145px;
        margin: 0 0 10px;
    }

    .e-content {
        background-blend-mode: color;
        background: #ffffffe6 url(../images/e-bg2.jpg) no-repeat;
        background-size: cover;
    }

    .expertise .icon-box-50 {
        width: 25px;
        height: 32px;
        display: flex;
    }

    .ex-content p {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 0.3px;
    }

    .ex-content h6 {
        font-size: 25px;
    }

    .ex-content {
        height: 230px;
        padding: 0 14px;
        margin: 0 0 20px;
    }

    .journals {
        background-position: 0 -180px;
        padding-bottom: 40px;
    }

    .get-touch .col-md-6:nth-child(1) .content {
        margin-bottom: 30px;
    }

    .get-touch {
        background-position: 32% -60px;
    }

    .e-content .abs-content {
        right: 17.5%;
    }

    .e-content .content {
        border-color: #6e6e6e33;
    }
}

@media (max-width:611px) {
    .formContent:before {
        right: 12px;
    }

    .formContent .lft .best {
        font-size: 32px;
    }

    .formContent .lft .discount {
        font-size: 14px;
    }

    .formContent .ryt .fifup .upto {
        font-size: 8px;
    }

    .formContent .ryt .fifup .fifty {
        font-size: 57px;
    }

    .formContent .ryt .percent {
        font-size: 28px;
    }

    .formContent .ryt .off {
        font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 99%
    }

    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 0;
        left: auto
    }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 0;
        right: auto
    }

    .e-content .content h6 {
        font-size: 9px
    }

    .e-content .content {
        padding: 5px
    }

    .expertise .icon-box-50 {
        width: 18px
    }

    .e-content {
        padding: 11px 27px
    }

    .center-heading span {
        font-size: 20px
    }

    .center-heading {
        font-size: 12px;
        margin: 0 0 21px
    }

    .consult .content:hover .content-ap h4 {
        font-size: 13px
    }

    .consult .content:hover .content-hvr p {
        bottom: 11px;
        opacity: 1;
        font-size: 9px;
        line-height: 1;
        padding: 0 12px
    }

    .consult .content:hover .content-ap {
        bottom: 40px
    }

    .consult .content-ap h4::before {
        bottom: -15px;
        width: 40px;
        height: 5px
    }

    .first-fold h6 {
        font-size: 8px;
        margin: 0 0 0 2px
    }

    .side-heading {
        font-size: 12px;
        margin: 0 0 10px;
        padding: 6px 10px 6px 10px
    }

    .content-form form input {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width:575px) {
    .color-white:after {
        left: 0;
    }

    .color-white:before {
        right: 0;
    }

    .e-content .abs-content {
        display: none;
    }

    .service .content-box .hover {
        padding: 14px 15px;
    }

    .first-fold .row .col-md-6:nth-child(1) .content {
        left: 50%;
        width: 90%;
        transform: translateY(-50%) translateX(-50%);
        padding: 51px 0;
    }

    .client h1,
    .client h4 {
        font-size: 18px;
    }

    .client p {
        font-size: 14px;
        line-height: 1.2;
    }

    .first-fold h6 {
        font-size: 12px;
        margin: 0 0 0 2px;
    }

    .e-content {
        padding: 10px 20px
    }

    .e-content .content h6 {
        font-size: 14px
    }

    .btm-mg,
    .e-content .content {
        padding: 15px;
        margin: 0 0 15px !important
    }

    .expertise .icon-box-50 {
        width: 30px;
        height: 40px;
    }

    .ex-content .trans-top {
        transform: translateY(-4px)
    }

    .consult {
        background-size: auto
    }

    header .col-5,
    header a button {
        transition: .5s
    }

    .stickyyy a button {
        opacity: 0;
        visibility: hidden;
        height: 0;
        transition: .5s
    }

    .stickyyy .col-5 {
        height: 0;
        transition: .5s
    }

    .client .content-2 {
        margin-bottom: 30px
    }

    .breaker {
        margin: 50px 0 0
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 49%
    }

    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 40px;
        left: auto
    }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 40px;
        right: auto;
    }

    .mobile-none {
        display: none
    }

    .consultancy {
        font-size: 36px;
        margin: 10px 0 18px
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 30px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 40.3px;
        line-height: .7;
        margin: 10px 0 0
    }

    .content-form h6 {
        font-size: 26px;
        padding: 10px
    }

    .content-form form input {
        padding: 11px;
        font-size: 15px
    }

    .content-form form {
        padding: 18px
    }

    .content-form form button {
        padding: 6px;
        font-size: 20px
    }

    .banner .min {
        padding: 0 30px;
        margin-bottom: 30px
    }

    .side-heading {
        font-size: 20px
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 19px
    }

    .banner .content .flex-first p {
        font-size: 150px;
        line-height: .7
    }

    .banner {
        background: url(../images/m-banner.jpg) no-repeat;
        background-size: cover;
        height: 400px;
    }

    .m-banner {
        background: #074748;
        height: auto;
        padding: 30px 0
    }

    .m-banner .fif50 {
        width: 50%
    }

    .banner .row {
        height: 90%
    }

    .banner .content {
        justify-content: flex-end
    }

    .banner .assis {
        font-size: 58px;
        margin: 6px 0 0
    }

    header a button {
        padding: 9px 10px;
        font-size: 21px;
        transform: translateY(0);
        margin: 15px 0 0
    }

    .mobile-visible {
        display: block
    }

    .banner .content {
        align-items: center
    }

    header .navbar .row {
        justify-content: center;
        text-align: center
    }

    header .navbar .row .justify-center {
        display: unset
    }

    header .navbar .row .col-12 img {
        width: 60% !important
    }

    .sec-pad-60 {
        padding: 30px 0
    }

    .service .content-box {
        height: 260px;
        box-shadow: 0 0 10px #0003
    }

    .service .content-box h4 {
        font-size: 20px;
        margin: 8px 0
    }

    .service .content-box .main-content {
        padding: 18px
    }

    .service .content-box p {
        font-size: 20px;
        line-height: 1.3;
        margin: 0
    }

    .service .content-box i {
        font-size: 18px
    }

    .service .content-box .hover p {
        color: #fff;
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 0px;
        margin: 0 0 20px;
    }

    .service .content-box .hover a {
        font-size: 16px
    }

    p {
        font-size: 16px;
        line-height: 1.2;
        margin: 0 0 10px
    }

    .flex-content {
        justify-content: center;
        padding: 10px 0
    }

    .testimonial .color-white:before {
        top: 59%;
        right: -15px;
        width: 30px
    }

    .testimonial .color-white:after {
        top: 59%;
        left: -15px;
        width: 30px
    }

    .consult .content.active .content-ap h4 {
        font-size: 25px
    }

    .get-touch .flex-content {
        justify-content: start;
        padding: 0 0;
    }

    .get-touch .contact-detail .flex-content:nth-child(3) {
        margin: 0 0 20px
    }

    .consult .content.active .content-ap {
        bottom: 95px
    }

    .consult .content.active .content-hvr p {
        bottom: 32px;
        opacity: 1;
        font-size: 17px;
        line-height: 1.1;
        padding: 0 12px
    }

    .consult .content.active .content-ap h4 {
        font-size: 25px
    }

    header .navbar {
        padding: 15px 0 0
    }

    .consult .content-ap h4::before {
        bottom: -18px;
        width: 60px;
        height: 7px
    }

    .ryt-line:after {
        width: 48px;
        height: 15px
    }

    .lft-line::before {
        display: none
    }

    .process .content h6 {
        font-size: 40px;
        line-height: 1;
    }

    .process .content h6 span {
        font-size: 18px
    }

    .process .stp {
        height: 161.66px;
        margin: 0 0 15px;
    }

    .ryt-line:after {
        display: none;
    }

    .process .stp h4 {
        font-size: 18px;
    }

    .e-content {
        background: #fff url(../images/e-bg.jpg) no-repeat;
        background-size: cover;
        background-position: -100%
    }

    .center-heading:after,
    .center-heading:before {
        width: 45px;
        height: 7px
    }

    .ex-content {
        height: 235px;
        padding: 0 14px;
        margin: 0 0 20px;
    }

    .ex-content p {
        font-size: 14px;
        line-height: 1.3;
        padding: 0 11px;
        letter-spacing: 0.2px;
    }

    .center-heading span {
        font-size: 28px
    }

    .center-heading {
        font-size: 20px
    }

    .testimonial {
        background-size: cover
    }

    .content-form {
        width: 100%;
    }

    .testimonial .slider {
        overflow: hidden;
    }

    .e-content .clr {
        background: #ffffff;
        border: 2px solid #f5f5f5;
    }

    .e-content .clr img {
        filter: brightness(0.4);
    }

    .e-content .clr h6 {
        color: var(--grey-color);
    }
}

@media (max-width:530px) {
    .first-fold .row .col-md-6:nth-child(1) .content {
        padding: 35px 0;
    }

    .process .stp {
        height: 145.66px;
        margin: 0 0 15px;
    }

    .process .stp h4 {
        font-size: 16px;
    }
}

@media (max-width:506px) {
    .first-fold .row .col-md-6:nth-child(1) .content {
        padding: 10px 0;
    }

    .process .stp {
        height: 138.33px;
        margin: 0 0 15px;
    }
}

@media (max-width:460px) {
    header a button {
        padding: 8px 9px;
        font-size: 18px;
    }
}

@media (max-width:440px) {
    .process .stp h4 {
        font-size: 14px;
    }

    .process .stp {
        height: 116.66px;
        margin: 0 0 15px;
    }

    .process .content h6 {
        font-size: 32px;
    }

    .process .content h6 span {
        font-size: 15px;
    }
}

@media (max-width:425px) {
    p {
        font-size: 14px;
        line-height: 1.2;
        margin: 0 0 10px;
    }

    .client p {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .process .stp {
        height: 111.33px;
        margin: 0 0 15px;
    }

    .process .stp h4 {
        font-size: 13px;
    }

    .process .content h6 {
        font-size: 30px;
    }

    .process .content h6 span {
        font-size: 14px;
    }
}

@media (max-width:414px) {
    .process .stp {
        height: 107.33px;
        margin: 0 0 15px;
    }

    .banner {
        background-position: center
    }

    header a button {
        padding: 10px 10px;
        font-size: 16px;
        display: flex;
        align-items: baseline
    }

    .banner .assis {
        font-size: 47px;
        margin: 6px 0 0
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 26px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 35px;
        line-height: .7;
        margin: 10px 0 0
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 16px
    }

    .banner .content .flex-first p {
        font-size: 115px;
        line-height: .7
    }
}

@media (max-width:400px) {
    .first-fold .row .col-md-6:nth-child(1) .content {
        width: 100%;
        padding: 0 0;
        position: unset;
        transform: translate(0, 0);
    }

    .first-fold .row .col-md-6:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
}

@media (max-width:375px) {
    .ex-content h6 {
        margin: 0
    }

    .ex-content .trans-top {
        transform: translateY(-10px)
    }

    .center-heading span {
        font-size: 24px
    }

    .center-heading {
        font-size: 16px
    }

    .banner .assis {
        font-size: 42px;
        margin: 0
    }

    .testimonial .color-white:after,
    .testimonial .color-white:before {
        width: 22px
    }

    .center-heading:after,
    .center-heading:before {
        width: 30px;
        height: 7px
    }

    .ex-content p {
        font-size: 11px;
        line-height: 1.2;
        margin: 0;
        font-weight: 600;
        letter-spacing: -.4px
    }

    .ex-content {
        height: 155px;
        padding: 0 14px
    }

    header a button {
        padding: 10px 6px;
        font-size: 16px
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 21px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 28.3px;
        line-height: .8;
        margin: 0 0 0
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 19px
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 12px
    }

    .consult .content-ap h4::before {
        display: none
    }

    .process .stp {
        height: 94px;
    }

    .process .stp h4 {
        font-size: 11px;
    }

    .process .content h6 {
        font-size: 24px;
    }

    .process .content h6 span {
        font-size: 12px;
    }

    .banner .content .flex-first p {
        font-size: 119px;
        line-height: 1
    }

    .service .content-box p {
        font-size: 16px;
        line-height: 1.3;
        margin: 0
    }

    .breaker h3 {
        font-size: 20px
    }
}

@media (max-width:360px) {
    header a button {
        padding: 8px 3px 10px;
        font-size: 14px;
    }
}

@media (max-width:330px) {
    .process .stp {
        height: 77.33px;
    }

    .process .stp h4 {
        font-size: 10px;
    }

    .process .content h6 {
        font-size: 21px;
    }

    .process .content h6 span {
        font-size: 10px;
    }
}

@media (max-width:320px) {
    .journals .links button {
        margin: 0 0 0
    }

    .center-heading:after,
    .center-heading:before {
        width: 17px;
        height: 6px
    }

    .banner .content .flex-first p {
        font-size: 105px;
        line-height: .8
    }

    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 24px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 32px;
        line-height: .8;
        margin: 0 0 0
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 14px
    }

    header a button {
        padding: 6px 4px;
        font-size: 14px
    }

    .top-bar h6 {
        font-size: 11px
    }

    .c-logos {
        padding: 13px 10px;
        background: #fff;
        border-radius: 12px
    }

    .process .stp h4 {
        font-size: 9px;
    }

    .breaker p {
        font-size: 12px;
        line-height: 20px;
        margin: 0 0 10px
    }

    .process .stp {
        height: 76px;
    }

    .ex-content h6 {
        margin: 0 0 0;
        font-size: 14px
    }

    .ex-content p {
        font-size: 10px;
        line-height: 1
    }

    .ex-content {
        height: 132px;
        padding: 0 7px;
        margin: 0 0 20px
    }

    .testimonial .center-heading:after,
    .testimonial .center-heading:before {
        display: none
    }

    .testimonial .client-top-bar {
        padding: 20px
    }

    .client-top-bar p,
    .slider p {
        font-size: 12px
    }

    .slider h5 {
        font-size: 14px
    }

    .slider .ins {
        font-size: 12px
    }

    .center-heading span {
        font-size: 20px
    }

    .center-heading {
        font-size: 14px;
        margin: 0 0 10px
    }

    p {
        font-size: 12px
    }

    .consult .content.active .content-hvr p {
        font-size: 14px
    }

    .consult .content.active .content-ap h4 {
        font-size: 20px
    }

    .consult .content.active .content-hvr p {
        bottom: 40px
    }

    .breaker h3 {
        font-size: 16px
    }

    .breaker h3 span {
        font-size: 12px
    }

    .banner {
        height: 420px
    }

    .m-banner .fif50 {
        width: 65%;
    }
}

@media (max-width:280px) {
    .banner .content .flex-first .div p:nth-child(2) span {
        font-size: 19.3px
    }

    .banner .content .flex-first .div p:nth-child(2) {
        font-size: 26px;
        line-height: .8;
        margin: 0 0 0
    }

    .banner .content .flex-first .div p:nth-child(1) {
        font-size: 12px
    }

    .banner .assis {
        font-size: 32px;
        margin: 0
    }

    .banner .content .flex-first p {
        font-size: 80px
    }

    header a button {
        padding: 6px 1px;
        font-size: 12px
    }

    .consult .content.active .content-hvr p {
        bottom: 30px;
        opacity: 1;
        font-size: 14px;
        line-height: 1.2;
        padding: 0 12px
    }

    .consult .content.active .content-ap h4 {
        font-size: 20px
    }

    .process .stp {
        height: 66.66px;
    }

    .process .stp h4 {
        font-size: 8px;
    }
    .top-bar h6 {
    font-size: 9px;
}

    .menu-toggle,
    .menu-toggle i {
        font-size: 18px
    }

    .e-content .content {
        padding: 3px;
        margin: 0 0 15px
    }

    .e-content .content h6 {
        font-size: 8px
    }

    .journals .links button {
        padding: 8px 10px
    }

    .journals .row .col-lg-3:nth-child(1),
    .journals .row .col-lg-3:nth-child(3) {
        padding-right: 5px;
        padding-left: 5px
    }

    .journals .row .col-lg-3:nth-child(2),
    .journals .row .col-lg-3:nth-child(4) {
        padding-left: 5px;
        padding-right: 5px
    }
}

form .error {
    border: 1px solid red !important;
}



#recaptcha_callback4,
#recaptcha_callback3,
#recaptcha_callback2,
#recaptcha_callback {
    display: none;
}

.contacterr,
.emailerr {
    color: red;
    font-size: 16px;
    margin: -8px 0 10px;
    display: none;
    font-weight: 600;
}

.grecaptcha-badge {
    display: none;
    opacity: 0;
    visibility: hidden;
}

#footer_form .contacterr {
    color: red;
    font-size: 13px;
    margin: -8px 0 5px;
    display: none;
    line-height: 1;
    font-weight: 600;
}

#footer_form .emailerr {
    color: red;
    font-size: 13px;
    margin: 0;
    display: none;
    font-weight: 600;
}


#mform .contacterr {
    color: red;
    font-size: 14px;
    margin: -10px 0 8px;
    display: none;
    line-height: 1;
}

#mform .emailerr {
    color: red;
    font-size: 14px;
    margin: -20px 0 10px;
    display: none;
    line-height: 1;
}

#header_form .contacterr {
    color: red;
    font-size: 14px;
    margin: -10px 0 6px;
    display: none;
    line-height: 1;
    font-weight: 600;
}

#header_form .emailerr {
    color: red;
    font-size: 14px;
    margin: -12px 0 10px;
    display: none;
    line-height: 1;
    font-weight: 600;
}
