@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 999;
    min-height: 50px;
    padding: 15px 5%;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
    /*background: #2425266e;*/
}

nav .wrapper {
    position: relative;
    padding: 0px 60px;
    height: 45px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-nav {
    margin-top: 25px !important;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 8.6% !important;
    padding-top: 0 !important;
    padding-bottom: 70px !important;
    color: #fff;
    text-align: center;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7% !important;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 7% !important;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
    background: #000;
}

.carousel-caption {
    padding-bottom: 80px;
}

h2 {
    font-size: 60px;
}

p {
    padding: 0px
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    opacity: 0.6;
}

.fill {
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 27, 43, 0.47)), color-stop(70%, rgba(10, 27, 43, 0.98)), to(#0a1b2b)), url(../images/slide1.jpg);
    background-image: linear-gradient(180deg, rgb(10 27 43 / 21%), rgb(88 88 88 / 41%) 70%, #0a1b2b), url(../images/slide1.jpg), url(../images/slide1.jpg), url(../images/slide1.jpg);
    background-position: 0px 0px, 80% 50%;
    background-size: auto, cover;

}

.fill.img2 {
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 27, 43, 0.47)), color-stop(70%, rgba(10, 27, 43, 0.98)), to(#0a1b2b)), url(../images/slide2.jpg);
    background-image: linear-gradient(180deg, rgb(10 27 43 / 21%), rgb(88 88 88 / 41%) 70%, #0a1b2b), url(../images/slide2.jpg);
    background-position: 0, 0, 50% 20%;
    background-size: auto, cover;

}

.fill.img3 {
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 27, 43, 0.47)), color-stop(70%, rgba(10, 27, 43, 0.98)), to(#0a1b2b)), url(../images/slide3.jpg);
    background-image: linear-gradient(180deg, rgb(10 27 43 / 21%), rgb(88 88 88 / 41%) 70%, #0a1b2b00), url(../images/slide3.jpg);
    background-position: 0px 0px, 50% 60%;
    background-size: auto, cover;
}

.carousel-caption h2 {
    color: #fff;
    font-size: 55px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-weight: 600;
}

/**
 * Button
 */
.btn-transparent {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-transparent:hover {
    background-color: #fff;
}

.btn-rounded {
    border-radius: 70px;
}

.btn-large {
    padding: 11px 45px;
    font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 30px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #9bd3ae;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #FFF;
    width: 200px;
    height: 100px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1) !important;
    line-height: 45px;
    margin-top: -25px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    padding: 0px;
}

.drop-menu:after {
    position: absolute;
    top: -7px;
    left: 15px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #FFF transparent;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
    margin-top: -11px;
}

.menu-btn i {
    font-size: 28px;
}

.header.fixed .menu-btn i {
    color: #000;
    font-size: 29px;
}

.drop-menu li a {
    text-transform: capitalize;
    color: #565656;
    text-decoration: none;
    font-weight: 600;
}

.drop-menu li {
    border-bottom: 1px solid #ececec;
    margin-bottom: 0px;
    padding: 10px 0px;

}


.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

.testim {
    position: relative;
    top: 100 px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .header.fixed .mobile-item li a {
        color: #fff;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        margin-top: 0px !important;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 16px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: hidden;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
        border-bottom: none;
        padding: 7px 0px;
    }

    #showDrop:checked~.drop-menu {
        max-height: 100%;
        margin-top: 15px;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 16px;
        font-weight: 400;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        /*background: #3A3B3C;*/
    }

    .header.fixed .nav-links li a {
        color: #fff;
    }

    .drop-menu li {
        padding: 7px 10px;
        margin: 0;
        border-bottom: none;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 16px;
    }

    .menu-btn {
        right: -56px;
        position: relative;
    }

    .menu-btn i {
        color: #000;

    }

    nav {
        background-color: #ffffffba;

    }

    .header.fixed {
        padding: 5px 105px !important;
    }

    .fixed .menu-btn {
        right: -85px;
        position: relative;
    }

    .c-btn {
        margin: 5px auto !important;


    }

    .c-btn .button {

        margin-top: 10px !important;

    }

    .mob-career-sec {
        margin: 0 auto !important;
    }
}

nav input {
    display: none;
}

.carousel-indicators .active {
    background: #fff;
}

.carousel-indicators li {
    background: rgba(255, 255, 255, 0.4);
    border-top: 20px solid;
    z-index: 15;
    margin: 0px 3px !important;
}

@media screen and (orientation: landscape) {
    .carousel-item {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        overflow: hidden;
        min-height: 80vh;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 27, 43, 0.47)), color-stop(70%, rgba(10, 27, 43, 0.98)), to(#0a1b2b)), url(../images/homeWall.jpg);
        background-image: linear-gradient(292deg, rgb(10 27 43 / 42%), rgb(88 88 88 / 41%) 70%, #0a1b2b), url(../images/homeWall.jpg);
        background-position: 0px 0px, 50% 0%;
        background-size: auto, cover;
    }
}

.about-section-two {
    position: relative;
    padding: 70px 0 70px;
}

.auto-container {
    max-width: 1200px;
}

.auto-container,
.large-container {
    position: static;
    padding: 0 15px;
    margin: 0 auto;
}

.about-section-two .content-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.about-section-two .content-column .inner-column {
    position: relative;
}

.about-section-two .content-column .inner-column .sec-title {
    margin-bottom: 40px;
}

.sub-title {
    position: relative;
    top: -5px;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color2);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: #87b898;
}

.sec-title h2 {
    font-size: 46px;
}

.sec-title h1,
.sec-title h2 {
    position: relative;
    line-height: 1.2em;
    color: var(--theme-color1);
    font-weight: 700;
}

.about-section-two .content-column .inner-column .sec-title h4 {
    font-size: 17px;
    line-height: 25px;
    color: #3f8b8a;
    font-weight: 600;
    margin-top: 30px;
}

.about-section-two .content-column .inner-column .sec-title .text {
    font-weight: 500;
}

.sec-title .text {
    font-size: 14px;
    line-height: 30px;
    color: #767676;
    margin-top: 30px;
}

.about-section-two .image-column {
    position: relative;
}


.about-section-two .image-column .inner-column {
    position: relative;
    display: flex;
    padding-bottom: 130px;
    padding-top: 10px;
}

.about-section-two .image-column .icon-box .icon,
.about-section-two .image-column .image-1 {
    position: relative;
}

.about-section-two .image-column .image-1:before {
    position: absolute;
    left: -50px;
    top: 0;
    height: 200px;
    width: 20px;
    background-color: #87b898;
    border-radius: 20px;
    content: "";
}

.about-section-two .image-column .image-1 img {
    min-width: 290px;
    width: 85%;
    border-radius: 10px;
}

.about-section-two .image-column .image-2 {
    position: absolute;
    left: -115px;
    bottom: 0;
}

.about-section-two .image-column .image-2:before {
    position: absolute;
    right: -40px;
    height: 40px;
    width: 40px;
    bottom: 90px;
    background-color: #87b898;
    border-radius: 0 0 10px 0;
    content: "";
}

.about-section-two .image-column .image-2 img {
    min-width: 390px;
    width: 390px;
    border-radius: 10px;
}


.about-section-two .image-column .icon-box {
    position: absolute;
    right: 0;
    top: 0;
    height: 110px;
    width: 110px;
    background-color: #87b898;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about-section-two .image-column .icon-box:before {
    position: absolute;
    left: -20px;
    top: -20px;
    height: 150px;
    width: 150px;
    background-color: rgba(0, 0, 0, .1);
    content: "";
    border-radius: 50%;
}

.feature-block-three .inner {
    position: relative;
    padding: 30px 20px 20px;
    text-align: center;
    background-color: #efeae4;
    min-height: 180px;
    border-radius: 10px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, .07);
    transition: all .3s ease;
}

.feature-block-three .inner:hover {
    background-color: #fff;
}

.feature-block-three .title {
    font-size: 18px;
    color: var(--theme-color1);
    font-weight: 700;
}

.about-section-two .content-box {
    border-bottom: 1px solid #ddd;
}

.about-section-two .tj-icon-box {
    margin-bottom: 25px;
    margin-right: 35px;
    width: 50%;
}

.about-section-two .tj-icon-box .ab-text {
    margin-bottom: 10px;
}

.about-section-two .tj-icon-box .ab-text .ab-icon {
    margin-right: 15px;
}

.about-section-two .tj-icon-box p {
    max-width: 100%;
    font-size: 14px;
    color: #025b74;
}

.sec-title .sub-title {
    position: relative;
    top: -5px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: #87b898;
}

.testim {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #333;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: green;
}


.testim .arrow.left {
    left: 70px;
}

.testim .arrow.right {
    right: 70px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid green;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: green;
    border-color: green;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;
    -moz-animation: testim-scale .5s ease-in-out forwards;
    -ms-animation: testim-scale .5s ease-in-out forwards;
    -o-animation: testim-scale .5s ease-in-out forwards;
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}


.testim .cont>div.active {
    position: relative;
    opacity: 1;
}


.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: green;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #333;
    width: 70%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;
    -moz-animation: testim-show .5s ease-in-out forwards;
    -ms-animation: testim-show .5s ease-in-out forwards;
    -o-animation: testim-show .5s ease-in-out forwards;
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;
    -moz-animation: testim-content-in .4s ease-in-out forwards;
    -ms-animation: testim-content-in .4s ease-in-out forwards;
    -o-animation: testim-content-in .4s ease-in-out forwards;
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;
    -moz-animation: testim-content-in .5s ease-in-out forwards;
    -ms-animation: testim-content-in .5s ease-in-out forwards;
    -o-animation: testim-content-in .5s ease-in-out forwards;
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;
    -moz-animation: testim-hide .5s ease-in-out forwards;
    -ms-animation: testim-hide .5s ease-in-out forwards;
    -o-animation: testim-hide .5s ease-in-out forwards;
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;
    -moz-animation: testim-content-out .4s ease-in-out forwards;
    -ms-animation: testim-content-out .4s ease-in-out forwards;
    -o-animation: testim-content-out .4s ease-in-out forwards;
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }

    .hero-heading {
        font-size: 35px;
    }

    .capital-heading {
        display: none;
    }

    .tj-contact-page {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .tj-contact-page .google-map {
        padding: 24px 0px 0px 0px !important;
    }

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
}

.clent-title {
    text-align: center;
    padding: 50px;
}

.clent-title .sub-title {
    position: relative;
    top: -5px;
    display: inline-block;
    font-size: 40px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}

.clent-title .sub-title:before {
    position: absolute;
    left: 100%;
    top: 50%;
    height: 2px;
    width: 35px;
    margin-left: 10px;
    margin-top: -1px;
    background: var(--bg-theme-color2);
    content: "";
}

.about-txt h4 {
    color: #3f8b8a;
}

.header {
    z-index: 999;
    height: 82px;
    transition: height 0.5s ease-in;
}

.header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    height: 70px;
    left: 0;
    box-shadow: 1px 1px 4px #eeeeee;
    display: flex;
    /* max-width: 1300px; */
    padding: 5px 130px;
    background-color: white;
}

.header.fixed li a {
    color: #000;
}

.header.fixed .nav-links li a:hover {
    color: #025b74;
}

.header.fixed .drop-menu li a {}

.header.fixed .nav-links .drop-menu {
    margin-top: -10px;
}

.header .logo-image.logo {
    display: none;
}

.header .logo-image.logo-white {
    display: block;
}

.header.fixed .logo-image.logo {
    display: block;
}

.header.fixed .logo-image.logo-white {
    display: none;
}

.header.fixed .logo-image {
    display: none;
}


.counter {
    text-align: center;
}

.counter-count {
    font-size: 50px;
    font-weight: bold;
    position: relative;
    color: #000000;
    text-align: center;
    display: inline-block;
}

.counter-card {
    color: #333333;
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 4px solid #428c8c;
    box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.05);
    margin: auto 0;
}

.count-up {
    text-align: center;
    margin: auto 0;
}

.counter-card p {
    text-align: center;
    font-size: 40px;
    color: #000;
}

.counter-card span {
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight: 700;
    color: #87dea5;
}

.counter-card:hover {
    box-shadow: 2px 5px 12px rgb(0 0 0 / 18%);
    transition: 0.4s;
}

.title {
    color: #fff;
    margin: 0;
    text-align: left;
}

.breadcrumb-trail ul {
    display: flex;
    list-style: none;
    text-decoration: none !important;
    padding-left: 0px;
    margin-top: 10px;
}

.trail-item a:not(.btn) {
    color: #a8e0ba;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumbs li:last-child {
    color: #fff;
    font-size: 16px;
}

.breadcrumbs li .tm-breadcrumb-arrow-icon {
    font-size: 12px;
    color: #fff;
}

.bi-arrow-right-short::before {
    color: #eee;
    padding: 0px 10px;
}

.service-sec {
    background-color: #ddd;
    padding: 40px 0px;
}

.service-sec .isotope-item {
    padding: 0 15px;
    margin: 0 0 30px;
}

.service-item-current-style1 {
    overflow: visible;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px !important;
    padding: 0px;
    background: #f0f3f2;
    transition: all .5s ease;
    border-radius: 5px;
}

.service-item-current-style1 .details {
    padding: 20px 20px 33px;
    position: relative;
    text-align: center;
    transition: all .4s linear;
    position: relative;
    border-radius: 3px;
}

.service-item-current-style1 .details .overlay-inner {
    left: 50%;
    position: absolute;
    top: -80px;
    transform: translateX(-50%);
    transition: all .3s linear;
}

.service-item-current-style1 .details .overlay-inner .icon {
    background-color: #ff6d2e;
    border-radius: 50%;
    height: 110px;
    line-height: 110px;
    text-align: center;
    width: 110px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .1411764706);
    transition: all .5s ease;
}

.service-item-current-style1 .details .overlay-inner .icon i {
    font-size: 40px;
    line-height: 110px;
    color: #fff;
}

.service-item-current-style1 .service-header .thumb img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .4s linear;
    height: 266px;
}

.service-item-current-style1 .service-header .thumb {
    overflow: hidden;
    position: relative;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.isotope-layout.gutter-15 .isotope-item {
    padding: 0 5px;
    margin: 0 0 30px;
}

.details h4 a {
    color: #0b3b5e;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.service-item-current-style1:hover .service-header .thumb img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.service-item-current-style1:hover {
    transform: translateY(-15px);
}

.details h4 a:hover,
a:focus {
    color: #ff6d2e;
    text-decoration: none;
}

.service-details {
    color: #7c858c;
    font-size: 13px;
    text-align: left;
    line-height: 26px;
    height: auto;
    width: auto;
}

.cus-p-50 {
    margin-bottom: 80px;
}

.elementor-2034 .elementor-element.elementor-element-044ad44 {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 15px 30px 25px;
}

.tj-contact-box {
    margin-bottom: 55px;
}

.tj-contact-page .tj-contact-list {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    background: var(--tj-white-color);
    padding: 30px 25px;
    position: relative;
    margin-bottom: 25px;
}

.tj-contact-page .tj-contact-list .contact-icon i {
    width: 75px;
    height: 75px;
    line-height: 82px;
    font-size: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: #025b74;
    color: #ffffff;
    transition: 0.4s;
    margin-right: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.tj-contact-page .tj-contact-list:hover .contact-icon i {
    background-color: #9bd3ae;
    color: #ffffff;
}

.tj-contact-page .tj-contact-list .contact-header {
    padding-left: 85px;
}

.tj-contact-page .tj-contact-list .contact-header a {
    color: #062e39;
    font-size: 15px;
    font-weight: 500;
    transition: 0.4s;
    text-decoration: none;
}

.tj-contact-page .contact-header span {
    display: block;
}

.tj-contact-page .contact-header span {
    font-size: 16px;
    color: #7c858c;
    font-family: var(--tj-ff-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

.tj-contact-page .tj-contact-list .contact-header a:hover {
    color: #fd5523;
}

.tj-contact-page {
    padding-top: 120px;
    padding-bottom: 120px;
}

.tj-contact-page .tj-section-heading {
    margin-bottom: 30px;
}

.contact-no {
    padding: 49px 25px !important;
}

.tj-section-heading .title {
    margin-top: 20px;
    font-size: 55px;
    color: #062e39;
}

.tj-animate-form .animate-form {
    width: 100%;
}

.tj-animate-form .form__div {
    position: relative;
    height: 48px;
    margin-bottom: 1.5rem;
}

.tj-animate-form .form__input:focus {
    border: 1.5px solid #fd5523;
}

input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.tj-animate-form .form__input:focus+.form__label {
    top: -0.5rem;
    left: 0.8rem;
    color: #7c858c;
    font-size: 15px;
    font-weight: 500;
    z-index: 10;
}

.tj-animate-form .form__input {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: 1px solid #dbdbdb;
    outline: none;
    padding: 25px 15px;
    font-size: 15px;
    background: none;
    z-index: 1;
}

.tj-animate-form .form__label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.25rem;
    background-color: #ffffff;
    color: #7c858c;
    font-size: 15px;
    transition: 0.2s;
    font-weight: 400;
    display: none;
}

.tj-animate-form .form__input.textarea {
    min-height: 165px;
}

.tj-theme-button .tj-primary-btn.contact-btn {
    border: none;
    margin-top: 130px;
}

.tj-primary-btn {
    display: inline-block;
    padding: 17px 26px;
    border-radius: 3px;
    font-family: var(--tj-ff-title);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s;
    position: relative;
    background-color: #358387;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    border: none;
}

.tj-primary-btn:hover:before {
    width: 100%;
}

.tj-primary-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #025870;
    transition: all 0.3s;
    border-radius: 3px;
    z-index: -1;
}

.tj-primary-btn:hover i {
    transform: rotate(0deg);
}

.tj-primary-btn i {
    font-size: 17px;
    color: var(--tj-white-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-primary-btn::after {
    position: absolute;
    left: 8px;
    bottom: 8px;
    border-right: 24px solid transparent;
    border-bottom: 24px solid #4a9296;
    content: "";
    z-index: 2;
}

.tj-primary-btn:hover::after {
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
}

.tj-contact-page .google-map {
    padding-left: 20px;
}

.tj-contact-page .google-map iframe {
    height: 650px;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-contact-page .google-map {
        padding-left: 0;
        margin-top: 50px;
    }

    .tj-contact-page .google-map iframe {
        height: 450px;
    }
}

.block {
    float: left;
    padding: 60px 0;
    position: relative;
    width: 100%;
    z-index: 1;
    background-color: white;
}

.heading {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.heading>h2 {
    float: left;
    width: 100%;
    margin: 0;
    font-weight: bold;
    font-size: 30px;
    color: #202020;
    line-height: 23px;
}

.heading span {
    float: left;
    width: 100%;
    font-family: Open Sans;
    font-size: 15px;
    color: #888888;
    margin-top: 8px;
    line-height: 29px;
}

.cat-sec {
    float: left;
    width: 100%;
}

.row.no-gape {
    margin: 0;
    justify-content: center;
}

.p-category {
    float: left;
    width: 100%;
    z-index: 1;
    position: relative;

}

.p-category-addon {
    border: 1px solid #eceaea !important;
    border-radius: 5px !important;
    padding: 15px;
}

.p-category>a {
    float: left;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8ecec;
    border-right: 1px solid #e8ecec;

}

.p-category:hover {
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    width: 104%;
    /* margin-left: -2%; */
    z-index: 10;
    transition-duration: 500ms;
}

.p-category:hover a {
    border-color: #ffffff;
}

.p-category:hover .h-icon {
    color: #ff6d2e;
}

.p-category>a i {
    float: left;
    width: 100%;
    color: #184f79;
    font-size: 70px;
    margin-top: 30px;
}

.p-category>a span {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #232323;
    margin-top: 18px;
}

.p-category>a p {
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0;
    margin-top: 0px;
    margin-top: 3px;
    color: #ff6d2e;
    text-align: center;
    line-height: 35px;
}

.browse-all-cat a:hover {
    background: #ef4139;
    color: #ffffff !important;
    transition: all 0.4s ease 0s;
}

.browse-all-cat a {
    border-color: #ef4139 !important;
    color: #000 !important;
    text-decoration: none;
    float: none;
    display: inline-block;
    border: 2px solid;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding: 13px 30px;
    font-size: 13px;
}

.browse-all-cat {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.inner-content {
    padding: 40px 0px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    background-color: #e3ded4;
    padding: 8px;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 24%);
}

.inner-content p {
    font-size: 14px;
    line-height: 30px;
}

.inner-content h3 {
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gray {
    color: #a5a5a5;
}

.team {
    margin: 100px 10px;
}

.team-member {
    margin: 15px 0;
    padding: 0;
}

.team-member figure {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.team-member figure img {
    min-width: 96%;
}

.team-member figcaption p {
    font-size: 13px;
    line-height: 24px;
}

.team-member figcaption ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member figcaption ul {
    visibility: visible;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.team-member figcaption ul li {
    display: inline-block;
    padding: 10px;
}

.team-member h4 {
    margin: 10px 0 0;
    padding: 0;
}

.team-member figcaption {
    padding: 30px;
    color: transparent;
    background-color: transparent;
    position: absolute;
    z-index: 996;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-member figure:hover figcaption {
    visibility: visible;
    color: #000000 !important;
    background: rgb(142 188 158 / 89%);
    /* Primary color, can be changed via colors.css */

    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member figure:hover figcaption ul li a:hover {
    color: rgba(49, 49, 49, .97);
}

.team-member figure img {
    -webkit-transform: scale(1) rotate(0) translateY(0);
    -moz-transform: scale(1) rotate(0) translateY(0);
    -o-transform: scale(1) rotate(0) translateY(0);
    -ms-transform: scale(1) rotate(0) translateY(0);
    transform: scale(1) rotate(0) translateY(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team-member figure:hover img {
    -webkit-transform: scale(1.1) rotate(1deg) translateY(12px);
    -moz-transform: scale(1.1) rotate(1deg) translateY(12px);
    -o-transform: scale(1.1) rotate(1deg) translateY(12px);
    -ms-transform: scale(1.1) rotate(1deg) translateY(12px);
    transform: scale(1.1) rotate(1deg) translateY(12px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team h3,
h4 {
    margin: 0 0 20px 0;
    text-transform: none;
    color: rgb(2 91 116);
    font-weight: 600;
}

.team h4 {
    font-size: 25px;
}

.ab-title h5 {
    color: black;
    font-size: 18px;
    font-weight: 500;
}

.team-member i {
    font-size: 25px;
    color: #fff;
}

a:hover {
    color: rgb(24 79 121);
    text-decoration: none !important;
}

.team-member p {
    text-align: center;
    font-size: 17px;
    color: #999;
}

.team-member figure:hover figcaption p {
    color: #fff;
}


/*service box*/

.services-block-three {
    display: flex;
    height: 100%;

}

.services-block-three i {
    font-size: 32px;
    color: #36668a;
}

.services-block-three>a {
    display: block;
    border: 2px solid #eaeaea;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 3px 2px 8px 1px rgb(24 20 20 / 16%);

}

.services-block-three>a:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid #6de394;
    border-right: 2px solid #6de394;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.services-block-three>a:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 2px solid #6de394;
    border-left: 2px solid #6de394;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.services-block-three p {
    padding: 10px;
    text-align: justify;
}

.padding-15px-bottom {
    padding-bottom: 15px;
}

.services-block-three h4 {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-block-three p {
    margin-bottom: 0;
    color: #757575;
}

.services-block-three>a:hover {
    opacity: 1;
    border-color: #d5d5d5;
}

.services-block-three a:hover,
.services-block-three a:active {
    color: #36668a;
    text-decoration: none;
}

.services-block-three a {
    text-decoration: none;
}

.services-block-three>a:hover:before,
.services-block-three>a:hover:after {
    width: 95%;
    height: 90%;
}

.bg-container {
    background-color: #f2f2f2;
}

.track-item-br {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.track-item-br figure {
    border-radius: 3px;
}

.track-item-br figure:hover figcaption {
    background: rgba(226, 225, 225, 0.9);
}

.track-item-br i {
    font-size: 34px;
    color: #3F51B5;
    background-color: #fff;
    border-radius: 50px;
    padding: 0px 10px;
}

.track-item-br figure:hover img {
    transform: scale(1.2) rotate(0deg) translateY(12px);
}

.track-sec {
    padding: 100px 30px;
    background-color: #fafafa;
}

.tracker-icon {
    margin-top: -38px;
    width: 75px;
}

/*service box*/