/*
  1. Base CSS
*/

@import url('https://fonts.googleapis.com/css2?family=BenchNine:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'GT Walsheim Pro';
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

body {
    font-family: 'GT Walsheim Pro';
    background: #F3F3F3;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

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

a {
    text-decoration: none;
}

/* ========================================= INDEX.HTML PAGE CSS ========================================= */

/*
  2. Header CSS
*/

.header .header_top_bar {
    background-color: #0A1828;
    padding: 11px 100px;
}

.header .header_top_bar .top_bar_area {
    display: flex;
    justify-content: space-between;
}

.header .header_top_bar .top_bar_area .text {
    flex: 1;
    text-align: center;
}

.header .header_top_bar .top_bar_area .icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .header_top_bar .top_bar_area .icons i,
.header .header_top_bar .top_bar_area .icons .social_icon {
    color: #178582;
    transition: all 0.5s ease;
}

.header .header_top_bar .top_bar_area .icons i:hover,
.header .header_top_bar .top_bar_area .icons .social_icon:hover {
    color: #FFFFFF;
}

.header .header_top_bar .top_bar_area .icons a {
    padding: 0 10px 0 10px;
}

.header .header_top_bar .top_bar_area .icons a:first-child {
    padding: 0 10px 0 0;
}

.header .header_top_bar .top_bar_area .icons a:last-child {
    padding: 0 0 0 10px;
}

.header .header_top_bar .top_bar_area .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
    color: #178582;
}

.header .header_area {
    position: relative;
    background-color: white;
    padding: 0 100px;
}

.header .header_area .navbar .navbar-brand img {
    margin-top: 20px;
}

.header .header_area .offcanvas .close_btn {
    background: transparent;
    border: none;
    outline: none;
    display: none;
}

.header .header_area .offcanvas .close_btn i {
    font-size: 20px;
    color: 000000;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu {
    width: 250px;
    top: 100%;
    left: -50%;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
}

.header .header_area .offcanvas .offcanvas-body ul li a.active::after,
.header .header_area .offcanvas .offcanvas-body ul .dropdown.active .dropdown-toggle::before {
  width: 85%;
  transition: all 0.5s ease;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown.active .dropdown-toggle::before {
  width: 85%;
  transition: all 0.5s ease;
}

.header .header_area .offcanvas .navbar-nav .dropdown-menu {
    display: none;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-toggle::after {
    display: none;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-toggle {
    cursor: auto;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown:hover .dropdown-menu {
    display: block;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu {
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu li {
    padding: 10px 15px;
    transition: all 0.3s linear;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu li a::after {
    display: none;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu li:hover {
    background: #F5F4FB;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-item:hover {
    background-color: transparent;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-toggle {
    position: relative;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-toggle::before {
    position: absolute;
    content: "";
    background-color: #178582;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -10px;
    transition: all 0.3s linear;
}

.header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-toggle:hover::before {
    width: 85%;
    transition: all 0.5s ease;
}


.header .header_area .offcanvas .offcanvas-body ul a {
    padding: 30px 15px;
}

.header .header_area .offcanvas .offcanvas-body ul .last-child {
    padding: 30px 0 30px 15px;
}

.header .header_area .offcanvas .offcanvas-body ul li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
    padding: 0;
    position: relative;
}

.header .header_area .offcanvas .offcanvas-body ul li a:focus-visible {
    box-shadow: none;
}

.header .header_area .offcanvas .offcanvas-body ul li a.active::after{
    position: absolute;
    content: "";
    background-color: #178582;
    width: 85%;
    height: 2px;
    left: 0;
    bottom: -10px;
}

.header .header_area .offcanvas .offcanvas-body ul li a::after {
    position: absolute;
    content: "";
    background-color: #178582;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -10px;
    transition: all 0.3s linear;
}

.header .header_area .offcanvas .offcanvas-body ul li a:hover::after {
    width: 85%;
    transition: all 0.5s ease;
}

.header .header_area .offcanvas .offcanvas-body ul li a.active::after,
.header .header_area .offcanvas .offcanvas-body ul li a.active .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 85%;
  height: 2px;
  background-color: #178582;
  left: 0;
  bottom: -10px;
  transition: width 0.5s ease;
}

.header .header_area .offcanvas .offcanvas-body ul li a.active::before {
  position: absolute;
  content: "";
  background-color: #178582;
  width: 85%;
  height: 2px;
  left: 0;
  bottom: -10px;
  transition: width 0.3s linear;
}

.header .header_area .offcanvas .offcanvas-body ul .nav-item.active .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 85%;
  height: 2px;
  background-color: #178582;
  left: 0;
  bottom: -10px;
  transition: width 0.5s ease;
}

.header .header_area .shape {
    position: absolute;
    top: 98%;
    left: 0;
    clip-path: polygon(0% 0%, 75% 0%, 100% 0, 90% 100%, 0 100%);
    background-color: white;
    width: 400px;
    height: 22px;
    z-index: 9;
}

.navbar-toggler {
    padding: 0;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.sticky-header.sticky {
    position: sticky;
    z-index: 9999;
    width: 100%;
    top: 0;
    animation-name: fadeInDown;
    animation-duration: 900ms;
    animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
}

/* Media query */

@media (max-width: 1399px) {
    .header .header_top_bar {
        padding: 11px 50px;
    }

    .header .header_area {
        padding: 0 50px;
    }

    .header .header_area .shape {
        width: 350px;
    }
}

@media (max-width: 1199px) {
    .header .header_top_bar {
        padding: 11px 30px;
    }

    .header .header_area {
        padding: 0 30px;
    }

    .header .header_area .shape {
        width: 290px;
    }
}

@media (max-width: 991px) {
    .header .header_area .navbar .navbar-brand img {
        margin-top: 8px;
    }

    .header .header_area .offcanvas-header {
        border-bottom: 2px solid #178582;
    }

    .header .header_area .offcanvas .offcanvas-body ul a {
        padding: 10px 0;
    }

    .header .header_area .offcanvas .offcanvas-body ul .last-child {
        padding: 10px 0;
    }

    .offcanvas.offcanvas-start {
        border-right: none;
        width: 45%;
    }

    .header .header_area .offcanvas .offcanvas-body ul li a {
        display: inline-block;
    }

    .header .header_area .shape {
        height: 13px;
        width: 37%;
    }

    .header .header_area .offcanvas .offcanvas-body ul .dropdown .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(10, 24, 40, 0.20);
        border-radius: 0;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .header .header_area {
        padding: 0 20px;
    }

    .header .header_top_bar {
        padding: 11px 20px;
    }

    .header .header_top_bar .top_bar_area .text {
        flex: inherit;
    }

    .header .header_top_bar .top_bar_area .text p {
        font-size: 15px;
        line-height: 17px;
    }

    .header .header_top_bar .top_bar_area .icons a {
        padding: 0px 5px 0 5px;
    }

    .header .header_top_bar .top_bar_area .icons a:first-child {
        padding: 0 5px 0 0;
    }

    .header .header_top_bar .top_bar_area .icons a:last-child {
        padding: 0 0 0 5px;
    }

    .header .header_area .shape {
        height: 15px;
        width: 50%;
    }
}

@media (max-width: 575px) {

    .header .header_top_bar {
        padding: 11px 0px;
    }

    .header .header_area {
        padding: 0 0px;
    }

    .header .header_area .navbar .navbar-brand img {
        width: 180px;
    }

    .header .header_top_bar .top_bar_area .text p {
        margin-right: 15px;
        text-align: left;
    }

    .header .header_top_bar .top_bar_area .text {
        display: none;
    }

    .header .header_top_bar .top_bar_area {
        justify-content: center;
    }

    .header .header_top_bar .top_bar_area .icons a {
        padding: 0px 8px 0 8px;
    }

    .header .header_area .shape {
        height: 15px;
        width: 50%;
    }

    .offcanvas.offcanvas-start {
        width: 74%;
    }
}

@media (max-width: 480px) {
    .header .header_top_bar .top_bar_area {
        display: block;
        text-align: center;
    }

    .header .header_top_bar .top_bar_area .text p {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        margin: 0 0 10px 0;
    }

    .header .header_top_bar .top_bar_area .icons {
        justify-content: center;
    }

    .header .header_area .navbar .navbar-brand img {
        width: 162px;
    }

    .header .header_area .shape {
        width: 56%;
    }
}

@media (max-width: 375px) {
    .header .header_area .shape {
        width: 66%;
    }
}

/*
  3. Hero Section CSS
*/

.hero_section .hero_section_carousel {
    position: relative;
}

.hero_section .hero_section_carousel .swiper_area img {
    height: 750px;
    object-fit: cover;
}

.hero_section .hero_section_carousel .swiper_area .swiper_caption .text_area {
    position: absolute;
    top: 40%;
    left: 10%;
    right: 10%;
    transform: translate(-0%, -50%);
}

.hero_section .hero_section_carousel .text_area .top_text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_section .hero_section_carousel .text_area .top_text big{
    font-family: 'BenchNine', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 160px;
    letter-spacing: 1px;
    color: #F3F3F3;
    text-transform: uppercase;
    display: inline-block;

}

.hero_section .hero_section_carousel .text_area .top_text span {
    font-family: 'BenchNine', sans-serif;
    /* font-size: 120px; */
    font-size: 48px;
    font-weight: 700;
    line-height: 160px;
    letter-spacing: 1px;
    color: #F3F3F3;
    text-transform: uppercase;
    display: inline-block;
}

.hero_section .hero_section_carousel .text_area .top_text p {
    font-family: 'BenchNine', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 4px;
    color: #F3F3F3;
    text-transform: uppercase;
    padding-left: 10px;
    margin: 0;
    display: inline-block;
}

.hero_section .hero_section_carousel .text_area .bottom_text p {
    font-size: 22px;
    font-weight: 400;
    color: #F3F3F3;
    text-align: center;
}

/* .hero_section .swiper_button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
} */

.hero_section .swiper_button{
    position: absolute;
    left: 44.4%;
    top: 9.1%;
}

.hero_section .swiper-button-prev,
.hero_section .swiper-button-next {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(24px) !important;
}

.hero_section .swiper-button-prev {
    right: 50px;
    bottom: 130px;
    top: auto;
    left: auto;
}

.hero_section .swiper-button-prev:hover::after {
    margin-left: -45px;
}

.hero_section .swiper-button-prev::after {
    content: "";
    width: 30px;
    height: 10px;
    margin-left: -35px;
    background-image: url("../img/icons/left-arrow.svg");
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.hero_section .swiper-button-next {
    right: 60px;
    bottom: 70px;
    top: auto;
    left: auto;
}

.hero_section .swiper-button-next:hover::after {
    margin-right: -50px;
}

.hero_section .swiper-button-next::after {
    content: "";
    width: 30px;
    height: 10px;
    margin-right: -40px;
    background-image: url("../img/icons/right-arrow.svg");
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

/* Media query */

@media (max-width: 1399px) {
    .hero_section .hero_section_carousel .swiper_area img {
        height: 700px;
    }
}

@media (max-width: 1299px) {
    .hero_section .swiper_button{
        left: 44.4%;
        top: 8.8%;
    }

    .hero_section .swiper-button-prev{
        right: 65px;
        bottom: 195px;
    }
    .hero_section .swiper-button-next {
        right: 75px;
        bottom: 145px;
    }
}

@media (max-width: 1199px) {
    .hero_section .hero_section_carousel .swiper_area img {
        height: 600px;
    }

    .hero_section .hero_section_carousel .text_area .top_text span {
        font-size: 100px;
        line-height: 110px;
    }

    .hero_section .hero_section_carousel .text_area .top_text p {
        font-size: 38px;
        line-height: 42px;
    }

    .hero_section .hero_section_carousel .text_area .bottom_text p {
        font-size: 20px;
    }

    .hero_section .hero_section_carousel .text_area .top_text {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .hero_section .hero_section_carousel .text_area .top_text span {
        font-size: 85px;
        line-height: 75px;
    }

    .hero_section .hero_section_carousel .text_area .top_text p {
        font-size: 31px;
        line-height: 34px;
        letter-spacing: 3px;
    }
    .hero_section .swiper_button{
        left: 40.4%;
        top: 8%;
    }
}

@media (max-width: 767px) {
    .hero_section .hero_section_carousel .swiper_area img {
        height: 445px;
    }

    .hero_section .hero_section_carousel .text_area .top_text big{
        font-size: 53px;
        margin-top: -50px;
        margin-bottom: -50px;
    }

    .hero_section .hero_section_carousel .text_area .top_text span {
        font-size: 55px;
        line-height: 60px;
    }

    .hero_section .hero_section_carousel .text_area .top_text p {
        font-size: 23px;
        line-height: 27px;
        letter-spacing: 2px;
        padding-left: 15px;
    }

    .hero_section .hero_section_carousel .text_area .bottom_text p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero_section .hero_section_carousel .text_area .top_text {
        display: block;
        text-align: center;
    }

    .hero_section .hero_section_carousel .text_area .top_text p br {
        display: none;
    }

    .hero_section .hero_section_carousel .text_area .top_text p {
        display: block;
    }

    .hero_section .hero_section_carousel .swiper_area img {
        height: 330px;
    }

    .hero_section .hero_section_carousel .text_area .top_text span {
        display: block;
    }

    .hero_section .hero_section_carousel .swiper_area .swiper_caption .text_area {
        top: 20%;
        left: 10%;
        right: 10%;
        transform: translate(0, 0);
    }

    .hero_section .hero_section_carousel .swiper_button {
        bottom: 20px;
    }

    .hero_section .swiper-button-prev{
        right: 21.5px;
        bottom: 96px;
    }
    .hero_section .swiper-button-next {
        right: 31px;
        bottom: 50px;
    }

    .hero_section .hero_section_carousel .typed-cursor.typed-cursor--blink,
    .hero_section .hero_section_carousel .typed-cursor {
        display: none !important;
    }

    .hero_section .swiper_button{
        left: 33.4%;
        top: 4.1%;
    }

}

@media (max-width: 365px) {
    .hero_section .hero_section_carousel .text_area .top_text big {
        font-size: 40px;
        margin-bottom: -55px;
    }

    .hero_section .swiper-button-prev, .hero_section .swiper-button-next {
        width: 26px;
        height: 26px;
    }

    .hero_section .swiper-button-prev {
        right: 18.5px;
        bottom: 78px;
    }

    .hero_section .swiper-button-prev:hover::after {
        margin-left: -34px;
    }

    .hero_section .swiper_button {
        left: 32.4%;
    }
}

/*
  4. About Us CSS
*/

.about_us_section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about_us_section .about_us_left_side {
    position: relative;
}

.about_us_section .about_us_left_side .text h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.about_us_section .about_us_left_side .text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #0A1828;
    margin-bottom: 20px;
}

.about_us_section .about_us_left_side .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
    margin: 0 0 10px 0;
}

.about_us_section .about_us_left_side .text button {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #F3F3F3;
    background: #0A1828;
    border: none;
    outline: none;
    padding: 15px 40px;
    border-radius: 30px;
    margin-top: 25px;
}

.about_us_section .about_us_left_side .about_us_line_animation {
    position: absolute;
    top: 13px;
    left: 35%;
}

.about_us_section .about_us_right_side {
    text-align: end;
}

.about_us_section .about_us_right_side .image {
    text-align: right;
    border-radius: 0 30px;
    display: inline-block;
    position: relative;
}

.about_us_section .about_us_right_side .image::before {
    position: absolute;
    content: "";
    width: 318px;
    height: 118px;
    background-image: url("../img/about/about-img-label.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
}

.about_us_section .about_us_right_side .image .effect {
    border-radius: 0 30px 0 30px;
    position: relative;
    overflow: hidden;
}

.about_us_section .about_us_right_side .image .effect svg {
    transition: all 0.5s ease;
    position: relative;
    z-index: 9;
}

.about_us_section .about_us_right_side .image .effect:hover svg {
    transform: scale(1.2);
}

#stroke3 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1800;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke4 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1420;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media (max-width: 1199px) {
    .about_us_section {
        padding: 70px 0px;
    }

    .about_us_section .about_us_left_side .about_us_line_animation {
        display: none;
    }
}

@media (max-width: 991px) {
    .about_us_section {
        padding: 50px 0px;
    }

    .about_us_section .about_us_right_side {
        margin-bottom: 50px;
        text-align: center;
    }

    .about_us_section .about_us_right_side .image {
        text-align: center;
    }

    .about_us_section .about_us_left_side .text {
        text-align: center;
    }

    .about_us_section .about_us_left_side .text h5 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .about_us_section .about_us_left_side .text h3 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .about_us_section .about_us_left_side .text p {
        font-size: 17px;
        line-height: 20px;
        margin: 0 0 15px 0;
    }

    .about_us_section .about_us_left_side .dot_btn_area .btn {
        margin: 0 auto;
    }

    .about_us_section .about_us_left_side .text button {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .about_us_section {
        padding: 30px 0px;
    }

    .about_us_section .about_us_left_side .text button {
        margin-top: 15px;
    }

    .about_us_section .about_us_left_side .about_us_line_animation {
        top: -100%;
        left: -4%;
    }
}

@media (max-width: 575px) {
    .about_us_section {
        padding: 30px 0px;
    }

    .about_us_section .about_us_right_side .image .effect {
        width: 300px;
    }

    .about_us_section .about_us_right_side .image .effect svg {
        max-height: 300px;
        min-height: 300px;
    }

    .about_us_section .about_us_right_side .image::before {
        width: 200px;
        height: 74px;
        top: -9px;
    }

    .about_us_section .about_us_right_side {
        margin-bottom: 30px;
    }

    .about_us_section .about_us_left_side .text h5 {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 5px;
    }

    .about_us_section .about_us_left_side .text h3 {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 12px 0;
    }

    .about_us_section .about_us_left_side .text button {
        font-size: 16px;
        line-height: 18px;
        padding: 13px 38px;
        margin-top: 15px;
    }

    .about_us_section .about_us_left_side .text p {
        margin: 0 0 5px 0;
    }

    .about_us_section .about_us_left_side .text {
        text-align: center;
    }

    .about_us_section .about_us_left_side .dot_btn_area {
        display: flex;
        justify-content: center;
    }

    .about_us_section .about_us_left_side .dot_btn_area .btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about_us_section .about_us_left_side .text h5 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 3px;
    }

    .about_us_section .about_us_left_side .text h3 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 12px;
    }

    .about_us_section .about_us_left_side .text button {
        margin-top: 15px;
    }

    .about_us_section .about_us_left_side .text p {
        margin: 0px 0 12px 0;
    }
}

/*
  5. New Brand ideas CSS
*/

.new_brand_ideas_section {
    padding: 80px 0px 130px 0px;
    background-image: url("../img/extra/bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.new_brand_ideas_section .box {
    padding: 10px;
}

.new_brand_ideas_section .image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease-in;
}

.new_brand_ideas_section .image img {
    transition: all 0.5s ease-in;
}

.new_brand_ideas_section .image:hover {
    transform: scale(0.95);
}

.new_brand_ideas_section .image:hover img {
    transform: scale(1.1);
}

.new_brand_ideas_section .image.center_image {
    margin-top: 80px;
}

.new_brand_ideas_section .image .text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 10px;
}

.new_brand_ideas_section .image .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
}

.new_brand_ideas_section .main_text {
    margin-top: 50px;
}

.new_brand_ideas_section .main_text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
    margin-bottom: 30px;
}

.new_brand_ideas_section .main_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #F3F3F3;
    width: 67%;
    margin: 0 auto;
}

.new_brand_ideas_section .new_brand_ideas_line_animation {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

.new_brand_ideas_section .new_brand_ideas_line_animation2 {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

.new_brand_ideas_section .new_brand_ideas_line_animation3 {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

.new_brand_ideas_section .new_brand_ideas_line_animation4 {
    position: absolute;
    bottom: 0;
    left: 0;
}

#stroke5 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1020;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke16 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1440;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke18 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1630;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke19 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2030;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media (max-width: 3008px) {
    .new_brand_ideas_section .new_brand_ideas_line_animation4 {
        display: none;
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation3 {
        display: block;
    }
}

@media (max-width: 2560px) {
    .new_brand_ideas_section .new_brand_ideas_line_animation3 {
        display: none;
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation2 {
        display: block;
    }
}


@media (max-width: 2000px) {

    .new_brand_ideas_section .new_brand_ideas_line_animation {
        display: block;
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation2 {
        display: none;
    }

}

@media (max-width: 1600px) {
    .new_brand_ideas_section .new_brand_ideas_line_animation svg {
        width: calc(100% - 20%);
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation {
        bottom: -6px;
    }
}

@media (max-width: 1500px) {
    .new_brand_ideas_section .new_brand_ideas_line_animation svg {
        width: calc(100% - 25%);
    }
}

@media (max-width: 1399px) {
    .new_brand_ideas_section {
        padding: 80px 0px 100px 0px;
    }

    .new_brand_ideas_section .box {
        padding: 10px;
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation {
        left: -8%;
    }
}

@media (max-width: 1199px) {
    .new_brand_ideas_section {
        padding: 70px 0px 70px 0px;
    }

    .new_brand_ideas_section .box {
        padding: 0;
    }

    .new_brand_ideas_section .image .text p {
        font-size: 16px;
        line-height: 19px;
    }

    .new_brand_ideas_section .main_text p {
        width: 100%;
    }

    .new_brand_ideas_section .new_brand_ideas_line_animation {
        display: none;
    }
}

@media (max-width: 991px) {
    .new_brand_ideas_section {
        padding: 50px 0px 50px 0px;
    }

    .new_brand_ideas_section .image .text p {
        font-size: 14px;
        line-height: 19px;
    }

    .new_brand_ideas_section .main_text {
        margin-top: 40px;
    }

    .new_brand_ideas_section .main_text h3 {
        font-size: 37px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .new_brand_ideas_section .main_text p {
        font-size: 16px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .new_brand_ideas_section .image.center_image {
        margin-top: 0;
    }

    .new_brand_ideas_section .row {
        justify-content: center !important;
    }

    .new_brand_ideas_section {
        padding: 30px 0px 30px 0px;
    }

    .new_brand_ideas_section .box {
        margin-bottom: 30px;
    }

    .new_brand_ideas_section .main_text {
        margin-top: 10px;
    }

    .new_brand_ideas_section .main_text h3 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .new_brand_ideas_section {
        padding: 30px 0px 30px 0px;
    }

    .new_brand_ideas_section .main_text {
        margin-top: 0;
    }

    .new_brand_ideas_section .main_text h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .new_brand_ideas_section .main_text p {
        font-size: 15px;
        line-height: 17px;
    }

    .new_brand_ideas_section .image .text p {
        font-size: 17px;
        line-height: 19px;
    }

    .new_brand_ideas_section .box {
        margin-bottom: 15px;
    }
}

/*
  6. Development section CSS
*/

.development_section {
    padding: 100px 0px 50px 0px;
    background-image: url("../img/extra/bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.development_section .development_area {
    margin-bottom: 50px;
}

.development_section .development_area:hover .top_text h5 span {
    color: #F3F3F3;
}

.development_section .development_area .top_text h5 {
    font-size: 22px;
    font-weight: 500;
}

.development_section .development_area .top_text h5 span {
    font-size: 144px;
    font-weight: 700;
    line-height: 164px;
    color: #939498;
    transition: all 0.5s ease-in-out;
}

.development_section .development_area .top_text text{
    color: #F3F3F3;
}

.development_section .development_area .bottom_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #F3F3F3;
}

.development_section .development_section_line_animation {
    position: absolute;
    right: 0;
    bottom: 100px;
    display: none;
}

.development_section .development_section_line_animation2 {
    position: absolute;
    right: 0;
    bottom: 100px;
    display: none;
}

.development_section .development_section_line_animation3 {
    position: absolute;
    right: 0;
    bottom: 100px;
    display: none;
}

.development_section .development_section_line_animation4 {
    position: absolute;
    right: 0;
    bottom: 100px;
}

#stroke6 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1050;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke17 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1370;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke20 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1530;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke21 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1970;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media screen and (min-width: 2500px) {
    .development_section .development_section_line_animation4 {
        right: 10%;
    }
}

@media screen and (min-width: 3840px) {
    .development_section .development_section_line_animation4 {
        right: 2%;
    }
}

@media screen and (min-width: 5120px) {
    .development_section .development_section_line_animation4 {
        right: 14%;
    }
}

@media (max-width: 3008px) {
    .development_section .development_section_line_animation4 {
        display: none;
    }

    .development_section .development_section_line_animation3 {
        display: block;
    }
}

@media (max-width: 2560px) {
    .development_section .development_section_line_animation3 {
        display: none;
    }

    .development_section .development_section_line_animation2 {
        display: block;
    }

}

@media (max-width: 2000px) {
    .development_section .development_section_line_animation {
        display: block;
    }

    .development_section .development_section_line_animation2 {
        display: none;
    }
}

@media (max-width: 1600px) {
    .development_section .development_section_line_animation {
        right: -18%;
    }
}

@media (max-width: 1399px) {
    .development_section {
        padding: 80px 0px 50px 0px;
    }

    .development_section .development_section_line_animation {
        right: -32%;
        bottom: 140px;
    }
}

@media (max-width: 1199px) {
    .development_section {
        padding: 60px 0px 20px 0px;
    }

    .development_section .development_section_line_animation {
        display: none;
    }
}

@media (max-width: 991px) {
    .development_section {
        padding: 40px 0px 20px 0px;
    }

    .development_section .development_area .top_text h5 span {
        font-size: 80px;
        line-height: 94px;
    }

    .development_section .development_area .bottom_text p {
        font-size: 17px;
        line-height: 20px;
    }

    .development_section .development_area .top_text h5 {
        font-size: 17px;
        font-weight: 500;
    }

    .development_section .development_area {
        margin-bottom: 30px;
    }

    .development_section .development_section_line_animation {
        right: -72%;
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    .development_section {
        padding: 30px 0px 15px 0px;
    }

    .development_section .development_section_line_animation {
        display: none;
    }
}

@media (max-width: 575px) {
    .development_section {
        padding: 30px 12px 10px 12px;
    }

    .development_section .development_area .top_text h5 span {
        font-size: 55px;
        line-height: 70px;
    }

    .development_section .development_area .top_text h5 {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
    }

    .development_section .development_area .bottom_text p {
        font-size: 15px;
        line-height: 18px;
    }
}

/*
  7. Solution Provider section CSS
*/

.solution_provider_section {
    background-image: url("../img/solution-provider/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 100px;
    position: relative;
    overflow: hidden;
}

.solution_provider_section .left_side .text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
}

.solution_provider_section .center_side .image .effect {
    display: inline-block;
    border-radius: 0px 30px;
    overflow: hidden;
}

.solution_provider_section .center_side .image .effect img {
    transition: all 0.5s ease;
}

.solution_provider_section .center_side .image .effect:hover img {
    transform: scale(1.1);
}

.solution_provider_section .center_side .image {
    text-align: center;
    position: relative;
    z-index: 9;
}

.solution_provider_section .right_side {
    position: relative;
    z-index: 9;
}

.solution_provider_section .right_side .top_area ul li .area {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.solution_provider_section .right_side .top_area ul li .area .icon {
    margin-right: 15px;
}

.solution_provider_section .right_side .top_area ul li .area .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
    margin: 0;
}

.solution_provider_section .right_side .explore_btn button {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #0A1828;
    background: #F3F3F3;
    border: none;
    outline: none;
    padding: 15px 40px;
    border-radius: 30px;
    position: relative;
    margin-top: 10px;
}

.solution_provider_section .solution_provider_animation {
    position: absolute;
    top: 65px;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.solution_provider_section .solution_provider_animation2 {
    position: absolute;
    right: 0;
    bottom: 65px;
}

.solution_provider_section .solution_provider_animation3 {
    position: absolute;
    top: 65px;
    left: 0;
}

.solution_provider_section .solution_provider_animation4 {
    position: absolute;
    right: 0;
    bottom: 65px;
}

.solution_provider_section .solution_provider_animation5 {
    position: absolute;
    top: 65px;
    left: 0;
}

.solution_provider_section .solution_provider_animation6 {
    position: absolute;
    top: 65px;
    left: 0;
}

.solution_provider_section .solution_provider_animation7 {
    position: absolute;
    right: 0;
    bottom: 65px;
    display: none;
}

.solution_provider_section .solution_provider_animation8 {
    position: absolute;
    right: 0;
    bottom: 65px;
}

.solution_provider_section .solution_provider_animation,
.solution_provider_section .solution_provider_animation2,
.solution_provider_section .solution_provider_animation3,
.solution_provider_section .solution_provider_animation4,
.solution_provider_section .solution_provider_animation5,
.solution_provider_section .solution_provider_animation7 {
    display: none;
}

#stroke7 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1540;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke8 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 610;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke14 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2080;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke22 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2080;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke15 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke23 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2380;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke24 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1230;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke25 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1700;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media (max-width: 3008px) {

    .solution_provider_section .solution_provider_animation6,
    .solution_provider_section .solution_provider_animation8 {
        display: none;
    }

    .solution_provider_section .solution_provider_animation5,
    .solution_provider_section .solution_provider_animation7 {
        display: block;
    }
}

@media (max-width: 2560px) {

    .solution_provider_section .solution_provider_animation5,
    .solution_provider_section .solution_provider_animation7 {
        display: none;
    }

    .solution_provider_section .solution_provider_animation3,
    .solution_provider_section .solution_provider_animation4 {
        display: block;
    }
}

@media (max-width: 2000px) {

    .solution_provider_section .solution_provider_animation,
    .solution_provider_section .solution_provider_animation2 {
        display: block;
    }


    .solution_provider_section .solution_provider_animation3,
    .solution_provider_section .solution_provider_animation4 {
        display: none;
    }

}

@media (max-width: 1600px) {
    .solution_provider_section .solution_provider_animation {
        left: -25%;
        top: 64px;
    }
}

@media (max-width: 1399px) {
    .solution_provider_section {
        padding: 160px 50px;
    }

    .solution_provider_section .solution_provider_animation {
        left: -39%;
        top: 64px;
    }

    .solution_provider_section .solution_provider_animation2 {
        right: -25%;
    }
}

@media (max-width: 1199px) {
    .solution_provider_section {
        padding: 70px 20px;
    }

    .solution_provider_section .solution_provider_animation {
        display: none;
    }

    .solution_provider_section .solution_provider_animation2 {
        display: none;
    }

    .solution_provider_section .left_side .text h3 {
        font-size: 34px;
        line-height: 42px;
    }

    .solution_provider_section .right_side .top_area ul li .area .text p {
        font-size: 16px;
        line-height: 18px;
    }

    .solution_provider_section .right_side .explore_btn button {
        font-size: 16px;
        line-height: 20px;
        padding: 12px 30px;
        margin-top: 5px;
    }
}

@media (max-width: 991px) {
    .solution_provider_section {
        padding: 40px 20px;
    }

    .solution_provider_section .left_side .text h3 {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .solution_provider_section {
        padding: 30px 15px;
    }

    .solution_provider_section .right_side {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .solution_provider_section .right_side .explore_btn button {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .solution_provider_section {
        padding: 30px 35px;
    }

    .solution_provider_section .right_side {
        margin-top: 30px;
        align-items: start;
    }

    .solution_provider_section .left_side .text h3 {
        font-size: 20px;
        line-height: 23px;
    }

    .solution_provider_section .right_side .top_area ul li .area .icon {
        margin-right: 10px;
    }

    .solution_provider_section .right_side .top_area ul li .area .text p {
        font-size: 15px;
        line-height: 17px;
    }

    .solution_provider_section .right_side .explore_btn button {
        font-size: 15px;
        line-height: 18px;
        padding: 11px 26px;
    }
}

@media (max-width: 375px) {
    .solution_provider_section {
        padding: 30px 5px;
    }
}

/*
  8. Our Completed Projects section CSS
*/

.our_completed_projects {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our_completed_projects .top_text {
    padding: 0 100px;
    text-align: left;
}

.our_completed_projects .top_text h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.our_completed_projects .top_text h4 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #0A1828;
}

.our_completed_projects .project-slider {
    position: relative;
    padding: 100px 150px;/*=== Previous - 100px 0 ===*/
}

.our_completed_projects .project-slider .sticky_device_image {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-49%, -50%);
    width: 400px;
    height: 324px;
    z-index: 9;
}

.our_completed_projects .swiper-slide img {
    margin: 0 auto;
    display: flex;
    width: 366px;
}

.our_completed_projects .project-slide {
    width: 37rem;
    height: auto;
    position: relative;
}

.our_completed_projects .swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    display: none;
}

.our_completed_projects .bottom_text {
    margin-top: 20px;
}

.our_completed_projects .bottom_text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    color: #0A1828;
    margin: 0;
    padding: 5px 0;
}

.our_completed_projects .our_completed_projects_animation {
    position: absolute;
    top: 23%; /*=== Previous - 22% ===*/
    right: 380px; /*=== Previous - 600px ===*/
    display: none;
}

.our_completed_projects .our_completed_projects_animation2 {
    position: absolute;
    top: 22%;
    right: 600px;
    display: none;
}

.our_completed_projects .our_completed_projects_animation3 {
    position: absolute;
    top: 22%;
    right: 600px;
    display: none;
}

.our_completed_projects .our_completed_projects_animation4 {
    position: absolute;
    top: 22%;
    right: 600px;
}

#stroke32 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 930;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke34 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1530;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke35 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2000;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke36 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 3009;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media screen and (min-width: 5120px) {
    .our_completed_projects .our_completed_projects_animation4 {
        right: 830px;
    }
}

@media (max-width: 3008px) {
    .our_completed_projects .our_completed_projects_animation2 {
        display: block;
        /* right: 650px; */
    }

    .our_completed_projects .our_completed_projects_animation3 {
        display: none;
    }

    .our_completed_projects .our_completed_projects_animation4 {
        display: none;
    }
}


@media (max-width: 2560px) {
    .our_completed_projects .our_completed_projects_animation2 {
        display: block;
        right: 650px;
    }

    .our_completed_projects .our_completed_projects_animation3 {
        display: none;
    }

    .our_completed_projects .our_completed_projects_animation {
        display: none;
    }

}

@media (max-width: 1920px) {
    .our_completed_projects .our_completed_projects_animation2 {
        display: none;
    }

    .our_completed_projects .our_completed_projects_animation {
        display: block;
    }
}


@media (max-width: 1399px) {
    .our_completed_projects .top_text {
        padding: 0 50px;
        text-align: left;
    }

    .our_completed_projects .our_completed_projects_animation {
        position: absolute;
        top: 23%;
        right: 175px;
    }

}

@media (max-width: 1199px) {
    .our_completed_projects {
        padding: 70px 0;
    }

    .our_completed_projects .top_text {
        padding: 0 20px;
    }

    .our_completed_projects .project-slider {
        position: relative;
        padding: 100px 85px;
    }

    .our_completed_projects .our_completed_projects_animation {
        display: none;
    }
}

@media (max-width: 991px) {
    .our_completed_projects {
        padding: 40px 0;
    }

    .our_completed_projects .project-slider {
        padding: 90px 0;
    }

    .our_completed_projects .project-slider .sticky_device_image {
        top: 60%;
        height: 326px;
    }

    .our_completed_projects .top_text h5 {
        font-size: 23px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .our_completed_projects .top_text h4 {
        font-size: 35px;
        line-height: 42px;
    }

    .our_completed_projects .our_completed_projects_animation {
        display: none;
    }
}

@media (max-width: 767px) {
    .our_completed_projects {
        padding: 30px 0;
    }

    .our_completed_projects .top_text {
        padding: 0 15px;
    }

    .our_completed_projects .top_text h4 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media (max-width: 575px) {
    .our_completed_projects .top_text {
        padding: 0 5px;
        text-align: center;
    }

    .our_completed_projects .our_completed_projects_animation {
        display: none;
    }
}

@media (max-width: 480px) {
    .our_completed_projects .top_text h5 {
        font-size: 20px;
        line-height: 23px;
    }

    .our_completed_projects .top_text h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .our_completed_projects .project-slider {
        padding: 65px 64px;
    }

    .sticky_device_image .img-fluid{
        max-width: 91%;
    }

    .our_completed_projects .project-slide .project-slide-img img {
        width: 250px;
    }

    .our_completed_projects .project-slider .sticky_device_image {
        top: 59%;
        left: 52.5%;
        transform: translate(-49%, -50%);
        width: 296px;
        height: auto;
    }
}

@media (max-width: 394px) {

    .our_completed_projects .project-slider {
        padding: 65px 52px;
    }

    .our_completed_projects .project-slider .sticky_device_image {
        left: 53%;
        width: 296px;   
    }

    .our_completed_projects .project-slide .project-slide-img img {
        width: 251px;
    }
}

@media (max-width: 378px) {
    .our_completed_projects .project-slider {
        padding: 65px 60px;
    }

    .our_completed_projects .project-slider .sticky_device_image {
        top: 59%;
        left: 58%;
        transform: translate(-49%, -50%);
        width: 296px;
        height: auto;
    }

    .sticky_device_image .img-fluid {
        max-width: 80%;
    }

    .our_completed_projects .project-slide .project-slide-img img {
        width: 216px;
    }
}

@media (max-width: 365px) {

    .our_completed_projects .project-slider {
        padding: 65px 52px;
    }
}

@media (max-width: 350px) {
    .our_completed_projects .project-slider {
        padding: 65px 48px;
    }

    .our_completed_projects .project-slider .sticky_device_image {
        top: 59%;
        left: 58%;
        transform: translate(-49%, -50%);
        width: 296px;
        height: auto;
    }

    .sticky_device_image .img-fluid {
        max-width: 80%;
    }

    .our_completed_projects .project-slide .project-slide-img img {
        width: 215px;
    }
}

/*
  9. Testimonial section CSS
*/

.testimonial_section {
    padding: 90px 0px;
    background-image: url("../img/testimonial/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testimonial_section .top_text h5 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
}

.testimonial_section .testimonial .swiper {
    padding: 100px 0 50px 0;
}

.testimonial_section .testimonial .left_side {
    text-align: right;
}

.testimonial_section .testimonial .left_side .card_box {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.testimonial_section .testimonial .left_side .card_box::before {
    position: absolute;
    content: "";
    width: 115%;
    height: 115%;
    border-radius: 0px 30px;
    background: rgba(243, 243, 243, 0.10);
    backdrop-filter: blur(10px);
    left: -36%;
    z-index: -1;
    top: -8%;
}

.testimonial_section .testimonial .left_side .card_box .image {
    text-align: right;
    overflow: hidden;
    border-radius: 0 30px 0 30px;
    width: 87%;
}

.testimonial_section .testimonial .left_side .card_box .image img {
    transition: all 0.5s ease;
}

.testimonial_section .testimonial .left_side .card_box .image:hover img {
    transform: scale(1.1);
}

.testimonial_section .testimonial .testimonial-h5-text {
    margin-bottom: 0px;
}

.testimonial_section .testimonial .left_side .card_box .text {
    margin-top: 20px;
    text-align: left;
}

.testimonial_section .testimonial .left_side .card_box .text h5 {
    font-size: 25px;
    font-weight: 500;
    line-height: 32px;
    color: #F3F3F3;
}

.testimonial_section .testimonial .left_side .card_box .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
    margin: 0;
}

.testimonial_section .testimonial .right_side .quate_img {
    height: 60px;
}

.testimonial_section .testimonial .right_side .quate_img .img-fluid {
    width: 60px;
    height: 60px;
}

.testimonial_section .testimonial .right_side .main_text h5 {
    font-size: 50px;
    font-weight: 500;
    line-height: 56px;
    color: #F3F3F3;
}

.testimonial_section .testimonial .right_side .main_text p {
    font-size: 25px;
    font-weight: 400;
    line-height: 46px;
    color: #F3F3F3;
}

.testimonial_section .testimonial .swiper-pagination {
    top: 88%;
    text-align: right;
}

.testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    font-size: 22px;
    font-weight: 800;
    color: #178582;
    width: auto;
    height: auto;
    position: relative;
}

.testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 3px;
    background: #178582;
    top: 0;
    bottom: 0;
    /* left: 20px; */
    left: 35px;
    right: auto;
    margin: auto;
    transition: all 0.5s linear;
}

.testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet-active {
    margin-right: 100px;
}

.testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet-active::before {
    width: 80px;
}

.testimonial_section .testimonial_animation {
    position: absolute;
    top: 0%;
    right: -197px;/*=== Previous - 25px ===*/
}

#stroke33 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 680;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media screen and (min-width: 2560px) {
    .testimonial_section .testimonial_animation {
        right: 75px;
    }
}

@media screen and (min-width: 2880px) {
    .testimonial_section .testimonial_animation {
        right: 27px;
    }
}

@media screen and (min-width: 5120px) {
    .testimonial_section .testimonial_animation {
        right: 256px;
    }
}

@media (max-width: 1399px) {
    .testimonial_section {
        padding: 90px 0px;
    }

    .testimonial_section .testimonial .left_side {
        text-align: center;
    }

    .testimonial_section .testimonial .left_side .card_box::before {
        width: 100%;
        height: 115%;
        left: -18%;
    }

    .testimonial_section .testimonial_animation {
        position: absolute;
        top: 0%;
        right: -400px;
    }

    .testimonial_section .testimonial .left_side .card_box .image {
        width: auto;
    }
}

@media (max-width: 1199px) {
    .testimonial_section {
        padding: 70px 0px;
    }

    .testimonial_section .top_text h5 {
        font-size: 40px;
        line-height: 50px;
    }

    .testimonial_section .testimonial .left_side .card_box::before {
        left: -8%;
    }

    .testimonial_section .testimonial .right_side .main_text h5 {
        font-size: 40px;
        line-height: 50px;
    }

    .testimonial_section .testimonial .right_side .main_text p {
        font-size: 21px;
        line-height: 30px;
    }

    .testimonial_section .testimonial .left_side .card_box .text h5 {
        font-size: 23px;
        line-height: 29px;
    }

    .testimonial_section .testimonial .left_side .card_box .text p {
        font-size: 17px;
    }

    .testimonial_section .testimonial .swiper {
        padding: 65px 0 30px 0;
    }

    .testimonial_section .testimonial_animation {
        display: none;
    }
}

@media (max-width: 991px) {
    .testimonial_section {
        padding: 40px 0px;
    }

    .testimonial_section .testimonial .left_side .card_box::before {
        width: 115%;
        left: -23%;
    }

    .testimonial_section .testimonial .swiper-pagination {
        top: inherit;
        bottom: 0;
        text-align: center;
    }

    .testimonial_section .top_text h5 {
        text-align: center;
    }

    .testimonial_section .testimonial_animation {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial_section {
        padding: 30px 0px;
    }

    .testimonial_section .testimonial .testimonial-slider .left_side {
        margin-bottom: 50px;
    }

    .testimonial_section .top_text h5 {
        font-size: 30px;
        line-height: 40px;
    }

    .testimonial_section .testimonial .right_side .main_text h5 {
        font-size: 33px;
        line-height: 40px;
    }

    .testimonial_section .testimonial .right_side .main_text p {
        font-size: 19px;
        line-height: 28px;
    }
}

@media (max-width: 575px) {
    .testimonial_section {
        padding: 30px 0px;
    }

    /* .testimonial_section .testimonial .left_side .card_box::before {
        width: 100%;
        height: 107%;
        left: 0;
        top: 0;
        border-radius: 30px;
    } */

    .testimonial_section .testimonial .left_side .card_box::before {
        width: 73.8%;
        height: 98%;
        left: 30px;
        top: 0;
        border-radius: 0px 30px;
    }

    .testimonial_section .testimonial .left_side .card_box .image {
        position: relative;
        left: 55px;
        top: 14px;
        width: 71%;
    }

    .testimonial_section .testimonial .swiper {
        padding: 30px 0 0px 0;
    }

    .testimonial_section .testimonial .left_side .card_box .text {
        text-align: center;
    }

    .testimonial_section .testimonial .right_side {
        margin-top: -30px;
        padding: 0px 64px ;
    }

    .testimonial_section .testimonial .right_side .quate_img {
        height: 25px;
    }

    .testimonial_section .testimonial .right_side .quate_img .img-fluid {
        width: 40px;
        height: 25px;
    }
    
    /* .testimonial_section .testimonial .swiper-pagination {
        top: 90%;
    } */

    .testimonial_section .testimonial .swiper-pagination {
        bottom: -7px;
    }

    .testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet {
        font-size: 14px;
        text-decoration: none;
    }

    .testimonial_section .testimonial .swiper-pagination .swiper-pagination-bullet::before {
        left: 28px;
    }

    .testimonial_section .testimonial .left_side .card_box .text h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .testimonial_section .testimonial .right_side .main_text h5 {
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }

    .testimonial_section .testimonial .right_side .main_text p {
        font-size: 12px;
        line-height: 23px;
        text-align: center;
        margin-bottom: 0px;
    }

    .testimonial_section .testimonial_animation {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial_section .top_text h5 {
        font-size: 18px;
        line-height: 30px;
    }

    .testimonial_section .testimonial .swiper {
        padding: 20px 0 0px 0;
    }

    /* .testimonial_section .testimonial .left_side .card_box .text {
        margin-top: 10px;

    } */
}

/*
  10. Hire team section CSS
*/

.hire_team_section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.hire_team_section .main_text h4 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #0A1828;
    text-align: center;
    margin-bottom: 20px;
}

.hire_team_section .main_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #0A1828;
    width: 70%;
    margin: 0 auto 20px;
    text-align: center;
}

.hire_team_section .main_text {
    margin-bottom: 70px;
}

.hire_team_section .counter_area .counter_box {
    position: relative;
}

.hire_team_section .counter_area .counter_box::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(349deg, rgba(10, 24, 40, 0.00) 0%, #0A1828 48.44%, rgba(10, 24, 40, 0.00) 100%);
    right: 0;
    top: 0;
}

.hire_team_section .counter_area .row .col-lg-3:last-child .counter_box::after {
    background: none;
}

.hire_team_section .counter_area .counter_box .top_text h2 {
    font-size: 80px;
    font-weight: 300;
    line-height: 57px;
    letter-spacing: 0.2px;
    color: #178582;
    margin-bottom: 40px;
    text-align: center;
}

.hire_team_section .counter_area .counter_box .bottm_text p {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 28px;
    color: #0A1828;
    text-align: center;
}

.hire_team_section .hire_team_line_animation {
    position: absolute;
    left: -6%; /*=== Previous - 0 ===*/
    top: 15%; /*=== Previous - 16% ===*/
    /* display: none; */
}

.hire_team_section .hire_team_line_animation3 {
    position: absolute;
    left: 0;
    top: 16%;
    display: none;
}

.hire_team_section .hire_team_line_animation5 {
    position: absolute;
    left: 0;
    top: 16%;
}

.hire_team_section .hire_team_line_animation7 {
    position: absolute;
    left: 0;
    top: 16%;
    display: none;
}

.hire_team_section .hire_team_line_animation2 {
    position: absolute;
    right: 0;
    bottom: 23.8%;
    /* display: none; */
}

.hire_team_section .hire_team_line_animation4 {
    position: absolute;
    right: 0;
    bottom: 25%;
    display: none;
}

.hire_team_section .hire_team_line_animation6 {
    position: absolute;
    right: 0;
    bottom: 25%;
}

.hire_team_section .hire_team_line_animation8 {
    position: absolute;
    right: 0;
    bottom: 25%;
}


#stroke11 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 720;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke26 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1080;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke28 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1630;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke30 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1630;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke12 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 355;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke27 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 645;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke29 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1630;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke31 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 1630;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media screen and (min-width: 2500px) {
    .hire_team_section .hire_team_line_animation {
        display: none;
    }

    .hire_team_section .hire_team_line_animation2 {
        display: none;
    }

    .hire_team_section .hire_team_line_animation8 {
        display: none;
    }
}

@media screen and (min-width: 2880px) {
    .hire_team_section .hire_team_line_animation3 {
        display: block;
    }

    .hire_team_section .hire_team_line_animation3,
    .hire_team_section .hire_team_line_animation4 {
        display: block;
        bottom: 20%;
    }
}

@media screen and (min-width: 3840px) {
    .hire_team_section .hire_team_line_animation3, .hire_team_section .hire_team_line_animation4 {
        display: none;
    }

    .hire_team_section .hire_team_line_animation6 {
        bottom: 20%;
    }
}

@media (max-width: 3008px) {

    .hire_team_section .hire_team_line_animation7,
    .hire_team_section .hire_team_line_animation8 {
        display: none;
    }

    .hire_team_section .hire_team_line_animation5,
    .hire_team_section .hire_team_line_animation6 {
        display: none;
    }

}

@media (max-width: 2560px) {

    .hire_team_section .hire_team_line_animation7,
    .hire_team_section .hire_team_line_animation8 {
        display: none;
    }

    .hire_team_section .hire_team_line_animation3,
    .hire_team_section .hire_team_line_animation4 {
        display: block;
        bottom: 20%;
    }

}

@media (max-width: 1920px) {

    .hire_team_section .hire_team_line_animation,
    .hire_team_section .hire_team_line_animation2 {
        display: block;
    }

    .hire_team_section .hire_team_line_animation3,
    .hire_team_section .hire_team_line_animation4 {
        display: none;
    }
}

@media (max-width: 1830px) {
    .hire_team_section .hire_team_line_animation {
        left: -5%;
    }

    .hire_team_section .hire_team_line_animation2 {
        right: -5%;
        margin-bottom: -13px;
    }
}

@media (max-width: 1660px) {
    .hire_team_section .hire_team_line_animation {
        left: -6%;
    }

    .hire_team_section .hire_team_line_animation2 {
        right: -6%;
    }
}


/* @media (max-width: 1600px) {

    .hire_team_section .hire_team_line_animation,
    .hire_team_section .hire_team_line_animation2 {
        display: none;
    }
} */

@media (max-width: 1399px) {
    .hire_team_section {
        padding: 100px 0px;
    }

    .hire_team_section .hire_team_line_animation {
        position: absolute;
        left: -6%;
        top: 25%;
    }

    .hire_team_section .hire_team_line_animation2 {
        right: -8.7%;
        margin-bottom: -36px;
    }
}

@media (max-width: 1199px) {
    .hire_team_section {
        padding: 70px 0px;
    }

    .hire_team_section .main_text p {
        width: auto;
    }

    .hire_team_section .counter_area .counter_box .top_text h2 {
        font-size: 60px;
        line-height: 65px;
        margin-bottom: 20px;
    }

    .hire_team_section .main_text h4 {
        font-size: 45px;
        line-height: 52px;
    }

    .hire_team_section .main_text p {
        font-size: 22px;
        line-height: 26px;
    }

    .hire_team_section .counter_area .counter_box .bottm_text p {
        font-size: 20px;
        line-height: 24px;
    }

    .hire_team_section .hire_team_line_animation {
      display: none;  
    }

    .hire_team_section .hire_team_line_animation2 {
      display: none;  
    }
}

@media (max-width: 991px) {
    .hire_team_section {
        padding: 40px 0px;
    }

    .hire_team_section .counter_area .counter_box {
        margin-bottom: 50px;
    }

    .hire_team_section .counter_area .row .col-lg-3:nth-of-type(2n) .counter_box::after {
        background: none;
    }

    .hire_team_section .main_text h4 {
        font-size: 40px;
        line-height: 48px;
    }

    .hire_team_section .main_text p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .hire_team_section {
        padding: 30px 0px;
    }

    .hire_team_section .main_text {
        margin-bottom: 50px;
    }

    .hire_team_section .main_text h4 {
        font-size: 32px;
        line-height: 40px;
    }

    .hire_team_section .counter_area .counter_box {
        margin-bottom: 40px;
    }

    .hire_team_section .main_text p {
        font-size: 19px;
        line-height: 23px;
    }

    .hire_team_section .counter_area .counter_box .bottm_text p {
        font-size: 18px;
        line-height: 23px;
    }

    .hire_team_section .counter_area .counter_box .top_text h2 {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .hire_team_section .counter_area{
        padding: 0px 54px 0px 53px;
    }
    .hire_team_section .main_text h4 {
        font-size: 24px;
        line-height: 33px;
    }

    .hire_team_section .main_text p {
        font-size: 17px;
        line-height: 22px;
    }

    .hire_team_section .main_text {
        margin-bottom: 30px;
    }

    .hire_team_section .counter_area .row .col-lg-3 {
        flex: 1 1 50%; /* Two columns per row */
        max-width: 50%;
        display: flex;
    }

    .hire_team_section .counter_area .counter_box {
        position: relative;
        width: 100%;
        text-align: center;
    }

    .hire_team_section .counter_area .counter_box_right {
        left: -10px;
    }

    .hire_team_section .counter_area .counter_box_left {
        left: 20px;
    }

    .hire_team_section .counter_area .counter_box::after {
        position: absolute;
        content: "";
        width: 2px;
        height: 100%;
        opacity: 0.5;
        background: linear-gradient(349deg, rgba(10, 24, 40, 0.00) 0%, #0A1828 48.44%, rgba(10, 24, 40, 0.00) 100%);
        left: 169px;
        top: 0;
        
    }
    
    .hire_team_section .counter_area .row .col-lg-3:last-child .counter_box::after {
        background: none;
    }
}

@media (max-width: 545px) {
    .hire_team_section .counter_area .counter_box::after {
        left: 214px;  
    } 
}

@media (max-width: 432px) {
    .hire_team_section .counter_area .counter_box::after {
        left: 173px;  
    } 

    .hire_team_section .counter_area .counter_box_right {
        left: -22px;
    }
}

@media (max-width: 425px) {
    .hire_team_section .counter_area .counter_box::after {
        left: 169px;  
    } 
}

@media (max-width: 395px) {
    .hire_team_section .counter_area .counter_box::after { 
        left: 149px; 
    }  
    .hire_team_section .counter_area .counter_box_right {
        left: -13px;
    } 
}

@media (max-width: 380px) {
    .hire_team_section .counter_area .counter_box::after { 
        left: 140px; 
    }   
}

@media (max-width: 365px) {
    .hire_team_section .counter_area .counter_box::after { 
        left: 133px; 
    }   
}

@media (max-width: 345px) {
    .hire_team_section .counter_area .counter_box::after { 
        left: 130px; 
    }   
}

/*
  11. Our Vision section CSS
*/

.our_vision_section {
    background-image: url("../img/our-mission/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 90px 0px 160px 0px;
    position: relative;
    overflow: hidden;
}

.our_vision_section .our_vision_area .col-xxl-4,
.our_vision_section .our_mission_area .col-xxl-4 {
    width: 29%;
}

.our_vision_section .our_vision_area {
    margin-bottom: 70px;
    position: relative;
    z-index: 9;
}

.our_vision_section .our_vision_area .left_side {
    padding-right: 70px;
}

.our_vision_section .our_vision_area .left_side h5 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
    text-align: right;
    margin-bottom: 30px;
}

.our_vision_section .our_vision_area .left_side p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
    text-align: right;
}

.our_vision_section .our_vision_area .right_side .effect {
    border-radius: 0px 30px;
    overflow: hidden;
    display: inline-block;
}

.our_vision_section .our_vision_area .right_side .effect:hover svg {
    transform: scale(1.1);
}

.our_vision_section .our_vision_area .right_side .effect svg {
    transition: all 0.5s ease;
}

.our_vision_section .our_mission_area {
    margin: -180px 0 0 0;
    position: relative;
    z-index: 9;
}

.our_vision_section .our_mission_area .left_side .image .effect {
    border-radius: 0px 30px;
    overflow: hidden;
    display: inline-block;
}

.our_vision_section .our_mission_area .left_side .image .effect:hover svg {
    transform: scale(1.1);
}

.our_vision_section .our_mission_area .left_side .image .effect svg {
    transition: all 0.5s ease;
}

.our_vision_section .our_mission_area .right_side {
    padding-left: 70px;
}

.our_vision_section .our_mission_area .right_side h5 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
    text-align: left;
    margin-bottom: 30px;
}

.our_vision_section .our_mission_area .right_side p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
    text-align: left;
}

.our_vision_section .our_vision_line_animation {
    position: absolute;
    left: 0;
    top: 5%;
}

#stroke13 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2760;
    stroke-dashoffset: var(--dashOffset, 0);
}

/* Media query */

@media screen and (min-width: 2560px) {
    .our_vision_section .our_vision_line_animation {
        left: 17.3%;
    }
}

@media screen and (min-width: 2880px) {
    .our_vision_section .our_vision_line_animation {
        left: 21.3%;
    }
}

@media screen and (min-width: 3840px) {
    .our_vision_section .our_vision_line_animation {
        left: 28.3%;
    }
}

@media screen and (min-width: 5120px) {
    .our_vision_section .our_vision_line_animation {
        left: 33.3%;
    }
}

@media (max-width: 1740px) {
    .our_vision_section .our_vision_line_animation {
        left: -6%;
    }
}

@media (max-width: 1570px) {
    .our_vision_section .our_vision_line_animation {
        left: -10%;
    }
}

@media (max-width: 1399px) {
    .our_vision_section .our_vision_line_animation {
        position: absolute;
        left: -6%;
        top: -8%;
    }

    .our_vision_section .our_vision_line_animation svg{
        width: 1400px;
    }

    .our_vision_section {
        padding: 90px 0px;
    }

    .our_vision_section .our_vision_area .left_side {
        padding-right: 50px;
    }

    .our_vision_section .our_mission_area .right_side {
        padding-left: 50px;
    }

    .our_vision_section .our_mission_area {
        margin: -100px 0 0 0;
    }
}

@media (max-width: 1199px) {
    .our_vision_section .our_vision_area .col-xxl-4,
    .our_vision_section .our_mission_area .col-xxl-4 {
        width: 33.33333333%;
    }

    .our_vision_section {
        padding: 70px 0px;
    }

    .our_vision_section .our_vision_area .left_side h5,
    .our_vision_section .our_mission_area .right_side h5 {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .our_vision_section .our_mission_area {
        margin: -140px 0 0 0;
    }

    .our_vision_section .our_vision_line_animation{
        display: none;
    }
}

@media (max-width: 991px) {
    .our_vision_section {
        padding: 40px 0px;
    }

    .our_vision_section .our_vision_area .left_side {
        padding-right: 10px;
    }

    .our_vision_section .our_mission_area .right_side {
        padding-left: 10px;
    }

    .our_vision_section .our_vision_area {
        margin-bottom: 50px;
    }

    .our_vision_section .our_vision_area .left_side h5,
    .our_vision_section .our_mission_area .right_side h5 {
        font-size: 37px;
        line-height: 43px;
        margin-bottom: 15px;
    }

    .our_vision_section .our_vision_area .left_side p {
        font-size: 17px;
        line-height: 19px;
    }

    .our_vision_section .our_mission_area {
        margin: -45px 0 0 0;
    }
}

@media (max-width: 767px) {
    .our_vision_section {
        padding: 30px 0px;
    }

    .our_vision_section .our_vision_area .right_side,
    .our_vision_section .our_mission_area .left_side {
        text-align: center;
    }

    .our_vision_section .our_vision_area .right_side .image,
    .our_vision_section .our_mission_area .left_side .image {
        margin-bottom: 30px;
    }

    .our_vision_section .our_vision_area .right_side .image svg,
    .our_vision_section .our_mission_area .left_side .image svg {
        max-height: 300px;
    }

    .our_vision_section .our_vision_area .left_side {
        text-align: center;
        padding: 0;
    }

    .our_vision_section .our_vision_area .left_side h5,
    .our_vision_section .our_vision_area .left_side p,
    .our_vision_section .our_mission_area .right_side h5,
    .our_vision_section .our_mission_area .right_side p {
        text-align: center;
    }

    .our_vision_section .our_vision_area {
        margin-bottom: 40px;
    }

    .our_vision_section .our_mission_area {
        margin: 0;
    }
}

@media (max-width: 575px) {
    .our_vision_section .our_vision_area .col-xxl-4,
    .our_vision_section .our_mission_area .col-xxl-4 {
        width: 100%;
    }

    .our_vision_section {
        padding: 30px 0px;
    }

    .our_vision_section .our_mission_area .left_side .image .effect, 
    .our_vision_section .our_vision_area .right_side .effect {
        width: 300px;
    }

    .our_vision_section .our_vision_area .left_side h5,
    .our_vision_section .our_mission_area .right_side h5 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .our_vision_section .our_vision_area {
        margin-bottom: 20px;
    }

    .our_vision_area .row , .our_mission_area .row{
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 440px) {

    .our_vision_section .our_vision_area .left_side h5,
    .our_vision_section .our_mission_area .right_side h5 {
        font-size: 18px;
        line-height: 40px;
    }

    .our_vision_section .our_vision_area .left_side p,
    .our_vision_section .our_mission_area .right_side p {
        font-size: 12px;
    }

    .our_vision_section .our_vision_area {
        margin-bottom: 30px;
    }

    .our_vision_section .our_mission_area {
        margin-top: -5vh;
        margin-bottom: -2vh;
    }
}

@media (max-width: 380px) {
    .our_vision_section .our_mission_area {
        margin-top: -8vh;
        margin-bottom: -2vh;
    }
}

@media (max-width: 360px) {
    .our_vision_section .our_mission_area {
        margin-top: -5vh;
        margin-bottom: -2vh;
    }
}

/*
  12. We Provide section CSS
*/

.we_provide_section {
    padding: 100px 0px;
    background-image: url("../img/extra/field-bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.we_provide_section .texts {
    text-align: center;
}

.we_provide_section .texts h4 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #F3F3F3;
    margin-bottom: 25px;
}

.we_provide_section .texts p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #F3F3F3;
    margin-bottom: 20px;
}

/* Media query */

@media (max-width: 1399px) {
    .we_provide_section {
        padding: 100px 0px;
    }
}

@media (max-width: 1199px) {
    .we_provide_section {
        padding: 70px 0px;
    }

    .we_provide_section .texts h4 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .we_provide_section {
        padding: 40px 0px;
    }

    .we_provide_section .texts p {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .we_provide_section {
        padding: 30px 0px;
    }

    .we_provide_section .texts h4 {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .we_provide_section .texts p {
        font-size: 19px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .we_provide_section {
        padding: 30px 0px;
    }
}

@media (max-width: 480px) {
    .we_provide_section .texts h4 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .we_provide_section .texts p {
        font-size: 17px;
        line-height: 23px;
    }
}

/*
  13. Fields section CSS
*/

.fields_section {
    padding: 0 0 60px 0;
    background-image: url("../img/extra/field-bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fields_section .field_box .box {
    width: 150px;
    height: 150px;
    background: #F3F3F3;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 20px;
}

.fields_section .field_box .box:hover svg {
    -webkit-animation-name: jello;
    animation-name: jello;
    animation-duration: 1s;
    -webkit-transform-origin: center;
    transform-origin: center
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.fields_section .field_box .text p {
    font-size: 25px;
    font-weight: 500;
    line-height: 28px;
    color: #F3F3F3;
    text-transform: capitalize;
    text-align: center;
}

/* Media query */

@media (max-width: 1199px) {
    .fields_section .field_box .box {
        width: 130px;
        height: 130px;
    }

    .fields_section .field_box .text p {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .fields_section .field_box {
        margin-bottom: 40px;
    }

    .fields_section .row .col-md-3:nth-child(3) .field_box,
    .fields_section .row .col-md-3:last-child .field_box {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .fields_section .field_box .box {
        width: 115px;
        height: 115px;
    }

    .fields_section .field_box .box svg {
        width: 40px;
    }

    .fields_section .field_box .text p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .fields_section .field_box .box {
        width: 100px;
        height: 100px;
    }
}

/*
  14. Fields section CSS
*/

.contact_section {
    padding: 90px 0px;
}

.contact_section .main_text h4 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #0A1828;
    text-align: center;
    margin-bottom: 50px;
}

.contact_section .contact_form .input_box {
    padding: 0 30px;
    margin-bottom: 30px;
}

.contact_section .contact_form .form-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
    position: relative;
}

.contact_section .contact_form .form-label::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #0A1828;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
}

.contact_section .contact_form .form-label span {
    color: #DE0505;
}

.contact_section .contact_form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #636365;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    color: #0A1828;
    line-height: 20px;
    padding: 15px 0;
    background: transparent;
}

.contact_section .contact_form .form_error {
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    color: #DE0505;
    margin-top: 5px;
}

.contact_section .contact_form .form-control:focus {
    box-shadow: none;
}

.contact_section .contact_form .form-control::placeholder {
    color: #636365;
}

.contact_section .contact_form .input_button {
    text-align: center;
}

.contact_section .contact_form .input_button button {
    font-size: 18px;
    font-weight: 500;
    color: #F3F3F3;
    line-height: 20px;
    background-color: transparent;
    border-radius: 30px;
    padding: 14px 65px;
    border: none;
    outline: none;
}


/* Media query */

@media (max-width: 1399px) {
    .contact_section {
        padding: 90px 0px;
    }
}

@media (max-width: 1199px) {
    .contact_section {
        padding: 70px 0px;
    }

    .contact_section .contact_form .input_box {
        padding: 0 15px 0 15px;
    }

    .contact_section .main_text h4 {
        font-size: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .contact_section {
        padding: 40px 0px;
    }
}

@media (max-width: 767px) {
    .contact_section {
        padding: 30px 0px;
    }

    .contact_section .main_text h4 {
        font-size: 34px;
        margin-bottom: 30px;
    }

}

@media (max-width: 575px) {
    .contact_section {
        padding: 30px 0px;
    }

    .contact_section .contact_form .input_button button {
        font-size: 17px;
        line-height: 20px;
        padding: 12px 55px;
    }
}

@media (max-width: 480px) {
    .contact_section .contact_form .form-label::before {
        display: none;
    }

    .contact_section .contact_form .input_box {
        padding: 0;
    }

    .contact_section {
        padding: 30px 0px;
    }

    .contact_section .main_text h4 {
        line-height: 36px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contact_section .contact_form .form-control {
        font-size: 17px;
        line-height: 20px;
        padding: 12px 0;
    }

    .contact_section .contact_form .input_button button {
        font-size: 17px;
        line-height: 20px;
        padding: 10px 50px;
    }
}

/*
  15. Footer CSS
*/

.footer {
    background: #0A1828;
    padding: 90px 0px 0;
}

.footer .footer_top .container {
    border-bottom: 2px solid rgba(23, 133, 130, 0.3);
}

.footer .f_1 .text {
    margin-top: 30px;
}

.footer .f_1 .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #F3F3F3;
}

.footer .f_2 .main_text h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #F3F3F3;
    margin-bottom: 15px;
}

.footer .f_2 ul li {
    margin: 10px 0;
}

.footer .f_2 ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #F3F3F3;
    position: relative;
}

.footer .f_2 ul li a::after {
    position: absolute;
    content: "";
    background-color: #178582;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    transition: all 0.3s linear;
}

.footer .f_2 ul li a:hover::after {
    width: 100%;
    transition: all 0.5s ease;
}

.footer .f_3 .main_text h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #F3F3F3;
    margin-bottom: 15px;
}

.footer .f_3 ul li {
    margin: 10px 0;
}

.footer .f_3 ul li .box {
    display: flex;
}

.footer .f_3 ul li .box .icon {
    padding-right: 10px;
}

.footer .f_3 ul li .box .text p,
.footer .f_3 ul li .box .text a {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #F3F3F3;
    margin: 0;
    position: relative;
}

.footer .f_3 ul li .box .text p::after,
.footer .f_3 ul li .box .text a::after {
    position: absolute;
    content: "";
    background-color: #178582;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    transition: all 0.3s linear;
}

.footer .f_3 ul li:hover .box .text p::after,
.footer .f_3 ul li:hover .box .text a::after {
    width: 100%;
    transition: all 0.5s ease;
}

.footer .f_3 .news_letter {
    margin-top: 30px;
}

.footer .f_3 .news_letter .top_text h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #F3F3F3;
}

.footer .f_3 .news_letter {
    margin-bottom: 50px;
}

.footer .f_3 .news_letter .input_box {
    position: relative;
}

.footer .f_3 .news_letter .input_box input {
    font-size: 14px;
    font-weight: 400;
    color: #F3F3F3;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(243, 243, 243, 0.3);
    background: transparent;
    padding: 15px 30px 15px 0;
}

.footer .f_3 .news_letter .input_box input:focus-visible {
    outline: none;
}

.footer .f_3 .news_letter .input_box input::placeholder {
    color: #636365;
}

.footer .f_3 .news_letter .input_box .icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.footer .footer_bottom {
    padding: 20px 0;
}

.footer .footer_bottom .social_icons {
    margin-bottom: 20px;
}

.footer .footer_bottom .social_icons .box {
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 40px;
    height: 40px;
    text-decoration: none;
    background: #11243A;
    margin: 0 6px;
}

.footer .footer_bottom .social_icons .box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.6s;
    opacity: 0;
    color: #178582;
    background: #178582;
    z-index: 0;
}

.footer .footer_bottom .social_icons .box .social_btn {
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 100%;
    text-align: center;
    color: #178582;
    transition: 0.6s;
}

.footer .footer_bottom .social_icons .box:hover .social_btn {
    color: #FFFFFF;
}

.footer .footer_bottom .social_icons .box:hover .social_btn i {
    position: relative;
    z-index: 9;
}

.footer .footer_bottom .social_icons .box:hover::after {
    width: 100%;
    height: 100%;
    margin-left: -50%;
    opacity: 1;
}

.footer .footer_bottom .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #F3F3F3;
    text-align: center;
    margin: 0;
}

.footer_form_error{
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin-top: 5px;
}

/* Media query */

@media (max-width: 1399px) {
    .footer {
        padding: 90px 0px 0px;
    }
}

@media (max-width: 1199px) {
    .footer {
        padding: 70px 0px 0px;
    }

    .footer .f_3 ul li .box .text p,
    .footer .f_3 ul li .box .text a {
        line-height: 24px;
        word-break: break-all;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 40px 0px 0px;
    }

    .footer .f_1,
    .footer .f_2,
    .footer .f_3 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 9px 0px;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 30px 12px 0px;
    }

    .footer .footer_top .f_1 .logo {
        text-align: center;
    }

    .footer .footer_bottom .social_icons img {
        margin: 0 8px;
    }

    .footer .footer_bottom .text p {
        font-size: 15px;
        line-height: 17px;
    }

    .footer .f_1,
    .footer .f_2,
    .footer .f_3 {
        margin-bottom: 30px;
    }

    .footer .f_1 .text p {
        line-height: 28px;
    }

    .footer .f_3 .news_letter {
        margin-bottom: 35px;
    }
}

/*
  15. Back to top button CSS
*/

#btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
    transition: all 0.5s ease-in-out;
    display: none;
    cursor: pointer;
}

#btn-back-to-top .m_scroll_arrows {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(225deg);
    border-right: 2px solid #178582;
    border-bottom: 2px solid #178582;
    margin: 0 0 3px 4px;
    width: 10px;
    height: 10px;
}

#btn-back-to-top .unu {
    margin-top: 1px;
}

#btn-back-to-top .unu,
#btn-back-to-top .doi,
#btn-back-to-top .trei {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;

}

#btn-back-to-top .unu {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    animation-delay: alternate;
    margin-top: -6px;
}

#btn-back-to-top .doi {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
    animation-delay: .2s;
    animation-direction: alternate;
}

#btn-back-to-top .up_arrow_img {
    margin: -8px 0 20px 4px;
}

#btn-back-to-top h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #178582 0.01%, #283E57 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-moz-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-o-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/* Media query */

@media (max-width: 840px) {
    #btn-back-to-top .up_arrow_img {
        margin: -8px 0 20px 4px;
    }
}

@media (max-width: 575px) {
    #btn-back-to-top h3 {
        display: none;
    }
}

@media (max-width: 431px) {
    #btn-back-to-top .up_arrow_img {
        margin: -8px 0 20px 4px;
    }
}

@media (max-width: 425px) {
    #btn-back-to-top .up_arrow_img {
        margin: -8px 0 38px 4px;
    }
}

@media (max-width: 362px) {
    #btn-back-to-top {
        right: 12px;
    }
}

/* ========================================= COMPANY.HTML PAGE CSS ========================================= */

/*
  16. Breadcrumb Hero section CSS
*/

.breadcrumb_hero_section {
    padding: 100px 0 30px 0;
    background-image: url("../img/about/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.breadcrumb_hero_section .text_area h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 58px;
    color: #F3F3F3;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.breadcrumb_hero_section .breadcumb_area ul li a,
.breadcrumb_hero_section ul li h5 {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: #F3F3F3;
    margin: 0;
}

/* Media query */

@media (max-width: 1399px) {
    .breadcrumb_hero_section .text_area h1 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .breadcrumb_hero_section .breadcumb_area ul li a,
    .breadcrumb_hero_section ul li h5 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 991px) {
    .breadcrumb_hero_section .text_area h1 {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 15px;
    }

    .breadcrumb_hero_section .breadcumb_area ul li a,
    .breadcrumb_hero_section ul li h5 {
        font-size: 21px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .breadcrumb_hero_section .text_area h1 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .breadcrumb_hero_section .breadcumb_area ul li a,
    .breadcrumb_hero_section ul li h5 {
        font-size: 16px;
        line-height: 24px;
    }
}

/*
  17. About CloudPark Infotech section CSS
*/

.about_galaxy_decoders_section {
    padding: 180px 0px 100px 0px;
}

.about_galaxy_decoders_section .left_side_area .top_text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    color: #0A1828;
    margin-bottom: 15px;
}

.about_galaxy_decoders_section .left_side_area .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #0A1828;
}

.about_galaxy_decoders_section .left_side_area ul {
    padding-left: 20px;
}

.about_galaxy_decoders_section .left_side_area ul li {
    margin: 15px 0;
}

.about_galaxy_decoders_section .left_side_area ul li p {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: #0A1828;
    position: relative;
    margin: 0;
}

.about_galaxy_decoders_section .left_side_area ul li p::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: #0A1828;
    top: 0;
    bottom: 0;
    left: -20px;
    margin: auto;
}

.about_galaxy_decoders_section .right_side .effect {
    display: inline-block;
    border-radius: 0px 30px;
    overflow: hidden;
}

.about_galaxy_decoders_section .right_side .effect svg {
    transition: all 0.5s ease;
}

.about_galaxy_decoders_section .right_side .effect:hover svg {
    transform: scale(1.2);
}

.about_galaxy_decoders_section .right_side {
    text-align: right;
}

/* Media query */

@media (max-width: 1399px) {
    .about_galaxy_decoders_section {
        padding: 165px 0px 100px 0px;
    }

    .about_galaxy_decoders_section .left_side_area .top_text h3 {
        font-size: 45px;
        line-height: 55px;
    }

    .about_galaxy_decoders_section .left_side_area .top_text p {
        font-size: 17px;
        line-height: 20px;
    }

    .about_galaxy_decoders_section .left_side_area ul li p {
        font-size: 17px;
        line-height: 20px;
    }

    .about_galaxy_decoders_section .left_side_area ul li {
        margin: 10px 0;
    }
}

@media (max-width: 1199px) {
    .about_galaxy_decoders_section {
        padding: 150px 0px 70px 0px;
    }

    .about_galaxy_decoders_section .left_side_area .top_text h3 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .about_galaxy_decoders_section {
        padding: 50px 0px;
    }

    .about_galaxy_decoders_section .right_side {
        text-align: center;
        margin-bottom: 50px;
    }

    .about_galaxy_decoders_section .left_side_area ul {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .about_galaxy_decoders_section .left_side_area .top_text {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .about_galaxy_decoders_section {
        padding: 30px 0px;
    }

    .about_galaxy_decoders_section .right_side {
        margin-bottom: 30px;
    }

    .about_galaxy_decoders_section .left_side_area .top_text h3 {
        font-size: 38px;
        line-height: 45px;
    }
}

@media (max-width: 575px) {
    .about_galaxy_decoders_section {
        padding: 30px 0px;
    }
}

@media (max-width: 480px) {
    .about_galaxy_decoders_section .left_side_area .top_text h3 {
        font-size: 32px;
        line-height: 35px;
    }

    .about_galaxy_decoders_section .left_side_area .top_text p {
        font-size: 17px;
        line-height: 19px;
    }

    .about_galaxy_decoders_section .left_side_area ul li p {
        font-size: 16px;
        line-height: 18px;
    }

    .about_galaxy_decoders_section .left_side_area ul li {
        margin: 5px 0;
    }
}

/*
  18. What do we provide section CSS
*/

.what_do_we_provide_section {
    background-image: url("../img/about/provide-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0px;
}

.what_do_we_provide_section .text_area {
    text-align: center;
}

.what_do_we_provide_section .text_area h2 {
    font-size: 50px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 58px;
    margin-bottom: 30px;
}

.what_do_we_provide_section .text_area p {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 26px;
}

.what_do_we_provide_section .fields_area {
    padding: 30px 0 50px 0;
}

.what_do_we_provide_section .fields_area .field_box .image {
    width: 150px;
    height: 150px;
    background: #F3F3F3;
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.20));
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.what_do_we_provide_section .fields_area .field_box .image:hover svg {
    -webkit-animation-name: jello;
    animation-name: jello;
    animation-duration: 1s;
    -webkit-transform-origin: center;
    transform-origin: center
}

.what_do_we_provide_section .fields_area .field_box .text p {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 29px;
    color: #FFF;
    text-align: center;
}

.what_do_we_provide_section .bottom_area h2 {
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.what_do_we_provide_section .bottom_area button {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #141414;
    background: #DADADA;
    border: none;
    outline: none;
    padding: 15px 40px;
    border-radius: 50px;
    position: relative;
}

/* Media query */

@media (max-width: 1399px) {
    .what_do_we_provide_section {
        padding: 100px 0px;
    }
}

@media (max-width: 1199px) {
    .what_do_we_provide_section {
        padding: 70px 0px;
    }

    .what_do_we_provide_section .text_area h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .what_do_we_provide_section .fields_area .field_box .image {
        width: 130px;
        height: 130px;
    }

    .what_do_we_provide_section .bottom_area h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .what_do_we_provide_section {
        padding: 50px 0px;
    }

    .what_do_we_provide_section .text_area p {
        font-size: 22px;
        line-height: 26px;
    }

    .what_do_we_provide_section .bottom_area h2 {
        font-size: 38px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .what_do_we_provide_section {
        padding: 30px 0px;
    }

    .what_do_we_provide_section .text_area h2 {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .what_do_we_provide_section .text_area p {
        font-size: 19px;
        line-height: 24px;
    }

    .what_do_we_provide_section .fields_area .field_box {
        margin-bottom: 40px;
    }

    .what_do_we_provide_section .bottom_area h2 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 40px;
    }

    .what_do_we_provide_section .fields_area {
        padding: 30px 0 30px 0;
    }
}

@media (max-width: 575px) {
    .what_do_we_provide_section {
        padding: 30px 0px;
    }

    .what_do_we_provide_section .fields_area .field_box .text p {
        font-size: 20px;
        line-height: 24px;
    }

    .what_do_we_provide_section .fields_area .field_box .image {
        width: 115px;
        height: 115px;
    }

    .what_do_we_provide_section .bottom_area h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 35px;
    }

}

@media (max-width: 480px) {
    .what_do_we_provide_section .text_area h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .what_do_we_provide_section .text_area p {
        font-size: 17px;
        line-height: 23px;
    }

    .what_do_we_provide_section .fields_area .field_box .image {
        width: 100px;
        height: 100px;
    }

    .what_do_we_provide_section .fields_area {
        padding: 30px 0 0px 0;
    }

    .what_do_we_provide_section .bottom_area h2 {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 30px;
    }
}

/*
  18. What do we offer section CSS
*/

.what_do_we_offer {
    padding: 100px 0px;
}

.what_do_we_offer .first_area {
    margin-bottom: 70px;
}

.what_do_we_offer .first_area .left_side .text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: #0A1828;
    margin-bottom: 15px;
}

.what_do_we_offer .first_area .right_side .effect {
    border-radius: 0px 30px;
    overflow: hidden;
    display: inline-block;
}

.what_do_we_offer .first_area .right_side .effect svg {
    transition: all 0.5s ease;
}

.what_do_we_offer .first_area .right_side .effect:hover svg {
    transform: scale(1.1);
}

.what_do_we_offer .first_area .left_side .text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #0A1828;
}

.what_do_we_offer .first_area .right_side .image {
    text-align: right;
}

.what_do_we_offer .second_area .right_side .text h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: #0A1828;
    margin-bottom: 15px;
}

.what_do_we_offer .second_area .right_side .text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #0A1828;
}

.what_do_we_offer .second_area .left_side .effect {
    display: inline-block;
    border-radius: 0px 30px;
    overflow: hidden;
}

.what_do_we_offer .second_area .left_side .effect svg {
    transition: all 0.5s ease;
}

.what_do_we_offer .second_area .left_side .effect:hover svg {
    transform: scale(1.1);
}

/* Media query */

@media (max-width: 1399px) {
    .what_do_we_offer {
        padding: 100px 0px;
    }

    .what_do_we_offer .first_area .left_side .text h3 {
        font-size: 45px;
        line-height: 50px;
    }

    .what_do_we_offer .second_area .right_side .text h3 {
        font-size: 45px;
        line-height: 50px;
    }
}

@media (max-width: 1199px) {
    .what_do_we_offer {
        padding: 70px 0px;
    }
}

@media (max-width: 991px) {
    .what_do_we_offer {
        padding: 50px 0px;
    }

    .what_do_we_offer .first_area .right_side .image {
        text-align: center;
        margin-bottom: 50px;
    }

    .what_do_we_offer .first_area .left_side .text {
        text-align: center;
    }

    .what_do_we_offer .second_area .left_side .image {
        text-align: center;
        margin-bottom: 50px;
    }

    .what_do_we_offer .second_area .right_side .text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .what_do_we_offer {
        padding: 30px 0px;
    }

    .what_do_we_offer .first_area .left_side .text h3 {
        font-size: 40px;
        line-height: 45px;
    }

    .what_do_we_offer .second_area .right_side .text h3 {
        font-size: 40px;
        line-height: 45px;
    }

    .what_do_we_offer .first_area .right_side .image {
        margin-bottom: 40px;
    }

    .what_do_we_offer .second_area .left_side .image {
        margin-bottom: 40px;
    }

    .what_do_we_offer .first_area {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .what_do_we_offer {
        padding: 30px 0px;
    }

    .what_do_we_offer .first_area .right_side .image {
        margin-bottom: 30px;
    }

    .what_do_we_offer .first_area .left_side .text h3 {
        font-size: 37px;
        line-height: 40px;
    }

    .what_do_we_offer .second_area .right_side .text h3 {
        font-size: 37px;
        line-height: 40px;
    }

    .what_do_we_offer .second_area .right_side .text p {
        font-size: 17px;
        line-height: 20px;
    }

    .what_do_we_offer .first_area .left_side .text p {
        font-size: 17px;
        line-height: 20px;
    }

    .what_do_we_offer .first_area {
        margin-bottom: 30px;
    }

    .what_do_we_provide_section .fields_area .field_box .image svg {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .what_do_we_offer .first_area .left_side .text h3 {
        font-size: 32px;
        line-height: 35px;
    }

    .what_do_we_offer .second_area .right_side .text h3 {
        font-size: 32px;
        line-height: 35px;
    }
}

/*
  19. Why should hire us section CSS
*/

.why_should_hire_us_section {
    padding: 80px 0px;
    background-image: url("../img/about/hire-us-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.why_should_hire_us_section .text h5 {
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* Media query */

@media (max-width: 1199px) {
    .why_should_hire_us_section .text h5 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .why_should_hire_us_section .text h5 {
        font-size: 36px;
        line-height: 45px;
    }
}

@media (max-width: 575px) {
    .why_should_hire_us_section .text h5 {
        font-size: 32px;
        line-height: 40px;
    }

    .why_should_hire_us_section {
        padding: 60px 0px;
    }
}

/*
  20. About info section CSS
*/

.about_info_section {
    padding: 100px 0px;
}

.about_info_section .text_area p {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #0A1828;
    margin-bottom: 20px;
}

/* Media query */

@media (max-width: 1399px) {
    .about_info_section {
        padding: 100px 0px;
    }
}

@media (max-width: 1199px) {
    .about_info_section {
        padding: 70px 0px;
    }

    .about_info_section .text_area p {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 991px) {
    .about_info_section {
        padding: 50px 0px;
    }
}

@media (max-width: 767px) {
    .about_info_section {
        padding: 30px 0px;
    }

    .about_info_section .text_area p {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    .about_info_section {
        padding: 30px 0px 0 0px;
    }
}

@media (max-width: 480px) {
    .about_info_section .text_area p {
        font-size: 17px;
        line-height: 22px;
    }
}

/* ========================================= SERVICES.HTML PAGE CSS ========================================= */

/*
  21. Services fields section CSS
*/

.services_fiedls_section {
    padding: 100px 0px;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

.services_fiedls_section .top_text_area p {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: #0A1828;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.services_fiedls_section .top_text_area {
    margin-bottom: 50px;
}

.services_fiedls_section .development_area {
    margin-bottom: 50px;
}

.services_fiedls_section .development_area:hover .top_text h5 span {
    color: #0A1828;
}

.services_fiedls_section .development_area .top_text h5 {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.services_fiedls_section .development_area .top_text h5 span {
    font-size: 144px;
    font-weight: 700;
    line-height: 164px;
    color: #C5C6CA;
    transition: all 0.5s ease-in-out;
}

.services_fiedls_section .development_area .bottom_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #0A1828;
}

.services_fiedls_section .development_area .services_btn {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.services_fiedls_section .development_area:hover .services_btn {
    visibility: visible;
    opacity: 1;
}

.services_fiedls_section .development_area .services_btn .dot_btn_area {
    display: flex;
    justify-content: center;
}

.services_fiedls_section .service_line_animation {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Media query */

@media screen and (min-width: 2560px) {
    .services_fiedls_section .service_line_animation {
        right: 14%;
    }
}

@media screen and (min-width: 2880px) {
    .services_fiedls_section .service_line_animation {
        right: 18%;
    }
}

@media screen and (min-width: 3840px) {
    .services_fiedls_section .service_line_animation {
        right: 26%;
    }
}

@media screen and (min-width: 5120px) {
    .services_fiedls_section .service_line_animation {
        right: 32%;
    }
}

@media (max-width: 1399px) {
    .services_fiedls_section {
        padding: 80px 0px 90px 0px;
        margin-bottom: 60px;
    }
}

@media (max-width: 1199px) {
    .services_fiedls_section {
        padding: 60px 0px 20px 0px;
    }

    .services_fiedls_section .top_text_area p {
        font-size: 23px;
        line-height: 28px;
        width: auto;
    }

    .services_fiedls_section {
        padding: 60px 0px 60px 0px;
        margin-bottom: 0px;
    }

    .services_fiedls_section .service_line_animation {
        display: none;
    }

    .services_fiedls_section .development_area .services_btn {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .services_fiedls_section {
        padding: 40px 0px 40px 0px;
    }

    .services_fiedls_section .development_area .top_text h5 span {
        font-size: 80px;
        line-height: 94px;
    }

    .services_fiedls_section .development_area .bottom_text p {
        font-size: 17px;
        line-height: 20px;
    }

    .services_fiedls_section .development_area .top_text h5 {
        font-size: 17px;
        font-weight: 500;
    }

    .services_fiedls_section .development_area {
        margin-bottom: 30px;
    }

    .services_fiedls_section .top_text_area p {
        font-size: 21px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .services_fiedls_section {
        padding: 30px 0px 30px 0px;
    }

    .services_fiedls_section .top_text_area p {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    .services_fiedls_section {
        padding: 30px 0px 30px 0px;
    }

    .services_fiedls_section .development_area .top_text h5 span {
        font-size: 55px;
        line-height: 70px;
    }

    .services_fiedls_section .development_area .top_text h5 {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
    }

    .services_fiedls_section .development_area .bottom_text p {
        font-size: 15px;
        line-height: 18px;
    }

    .services_fiedls_section .top_text_area p {
        font-size: 18px;
        line-height: 23px;
    }

    .services_fiedls_section .top_text_area {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services_fiedls_section .top_text_area p {
        font-size: 17px;
        line-height: 21px;
    }

    .services_fiedls_section .top_text_area {
        margin-bottom: 20px;
    }

    .services_fiedls_section {
        margin-bottom: 0px;
    }
}

/* ========================================= BLOG.HTML PAGE CSS ========================================= */

/*
  22. Blog section CSS
*/

.blog_section {
    padding: 50px 0px;
}

.blog_section .top_search_area {
    position: relative;
    margin-bottom: 50px;
}

.blog_section .top_search_area input {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    width: 100%;
    border-radius: 20px;
    background: #FFF;
    color: #636365;
    border: none;
    outline: none;
    padding: 15px 55px 15px 25px;
}

.blog_section .top_search_area img {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.blog_section .left_side_area .image_box {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
}

.blog_section .left_side_area .image_box .image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_section .left_side_area .image_box img {
    transition: all 0.5s ease;
    height: 600px;
    object-fit: cover;
}

.blog_section .left_side_area .image_box:hover img {
    transform: scale(1.1);
}

.blog_section .left_side_area .image_box  video{
    transition: all 0.5s ease;
    height: 600px;
    object-fit: cover;
}

.blog_section .left_side_area .image_box:hover  video{
    transform: scale(1.1);
}

.blog_section .left_side_area .row .col-xxl-5:last-child .image_box,
.blog_section .left_side_area .row .col-xxl-5:nth-child(4) .image_box {
    margin-bottom: 0;
}

.blog_section .left_side_area .image_box .text_container {
    position: absolute;
    bottom: 0px;
    left: 30px;
    right: 30px;
}

.blog_section .left_side_area .small_card .text_container {
    left: 20px;
    right: 20px;
}

.blog_section .left_side_area .image_box .text_container .top_text h3 {
    font-size: 50px;
    font-weight: 500;
    line-height: 57px;
    color: #F3F3F3;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.blog_section .left_side_area .small_card .text_container .top_text h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #F3F3F3;
}

.blog_section .left_side_area .image_box .text_container .top_text h5 {
    font-size: 25px;
    font-weight: 700;
    line-height: 29px;
    color: #F3F3F3;
    margin-bottom: 10px;
}

.blog_section .left_side_area .small_card .text_container .top_text h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
}

.blog_section .left_side_area .image_box .text_container .top_text {
    border-bottom: 1px solid #F3F3F3;
}

.blog_section .left_side_area .image_box .text_container .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #F3F3F3;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog_section .left_side_area .image_box .text_container .top_text .some_hidden p:not(:first-child),
.blog_section .left_side_area .image_box .text_container .top_text .some_hidden h2 {
    display: none;
}

.blog_section .left_side_area .small_card .text_container .top_text p {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
}

.blog_section .left_side_area .image_box .text_container .bottom_area {
    padding: 30px 0;
}

.blog_section .left_side_area .image_box .text_container .bottom_area .flip-box {
    background-color: transparent;
    perspective: 1000px;
}

.blog_section .left_side_area .image_box .text_container .bottom_area .flip-box .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.blog_section .left_side_area .image_box:hover .flip-box-inner {
    transform: rotateX(180deg);
}

.blog_section .left_side_area .image_box .flip-box-inner .flip-box-front,
.blog_section .left_side_area .image_box .flip-box-inner .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog_section .left_side_area .image_box .flip-box-inner .flip-box-front {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog_section .left_side_area .image_box .flip-box-inner .flip-box-back {
    transform: rotateX(180deg);
    top: 13px;
}

.blog_section .left_side_area .image_box .flip-box-inner .flip-box-back a {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    color: #F3F3F3;
    margin-bottom: 0px;
}

.blog_section .left_side_area .small_card .flip-box-inner .flip-box-back a {
    font-size: 15px;
    line-height: 20px;
}

.blog_section .left_side_area .image_box .text_container .bottom_area .left_side_text {
    display: flex;
    align-items: center;
}

.blog_section .left_side_area .image_box .text_container .bottom_area .left_side_text p,
.blog_section .left_side_area .image_box .text_container .bottom_area .right_side_text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    color: #F3F3F3;
    margin-bottom: 0px;
}

.blog_section .left_side_area .small_card .text_container .bottom_area .left_side_text p,
.blog_section .left_side_area .small_card .text_container .bottom_area .right_side_text p {
    font-size: 15px;
    line-height: 20px;
}

.blog_section .right_side_area .recent_post_area,
.blog_section .right_side_area .archive_area,
.blog_section .right_side_area .category_area,
.blog_section .right_side_area .recent_comments {
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    background: #FFF;
    padding: 20px;
}

.blog_section .right_side_area .recent_post_area h4,
.blog_section .right_side_area .archive_area h4,
.blog_section .right_side_area .recent_comments h4,
.blog_section .right_side_area .category_area h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 30px;
}

.blog_section .right_side_area .recent_comments .comment_box {
    display: flex;
    border-bottom: 1px solid rgba(10, 24, 40, 0.20);
    margin-top: 15px;
}

.blog_section .right_side_area .recent_comments .comment_box:last-child {
    border-bottom: none;
}

.blog_section .right_side_area .recent_comments .comment_box .right_side {
    padding: 10px;
}

.blog_section .right_side_area .recent_comments .comment_box .right_side h6 {
    font-size: 17px;
    font-weight: 500;
    line-height: 17px;
    color: #0A1828;
}

.blog_section .right_side_area .recent_comments .comment_box .right_side p {
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #0A1828;
    margin-bottom: 10px;
}

.blog_section .right_side_area .recent_comments .comment_box .left_side {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.blog_section .right_side_area .recent_post_area a {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    display: block;
}

.blog_section .right_side_area .recent_post_area .first {
    margin-bottom: 30px;
}

.blog_section .right_side_area .recent_post_area .first:last-child {
    margin-bottom: 0px;
}

.blog_section .right_side_area .category_area ul li {
    margin: 15px 0;
}

.blog_section .right_side_area .category_area ul li .icon {
    width: 30px;
}

.blog_section .right_side_area .category_area ul li .icon .img-fluid{
    width: 20px;
    height: 20px;
}

.blog_section .right_side_area .category_area ul li .text p {
    font-size: 18px;
    font-weight: 400;
    color: #0A1828;
    line-height: 21px;
    margin: 0;
    cursor: pointer;
}

.accordion {
    --bs-accordion-border-color: none;
    --bs-accordion-bg: none;
    border: none;
    border-radius: 0;
}

.blog_section .right_side_area .archive_area .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    position: relative;
}

.blog_section .right_side_area .archive_area #flush-collapseOne .accordion-body a,
.blog_section .right_side_area .archive_area #flush-collapseTwo .accordion-body a {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    display: block;
}

.blog_section .right_side_area .archive_area #flush-collapseOne .accordion-body .first,
.blog_section .right_side_area .archive_area #flush-collapseTwo .accordion-body .second  {
    margin-bottom: 30px;
}

.blog_section .right_side_area .archive_area #flush-collapseOne .accordion-body .first:last-child,
.blog_section .right_side_area .archive_area #flush-collapseTwo .accordion-body .second:last-child {
    margin-bottom: 0px;
}


.blog_section .right_side_area .archive_area .accordion-header .accordion-button:focus {
    box-shadow: none;
}

.blog_section .right_side_area .archive_area .accordion-header .accordion-button::after {
    position: absolute;
    left: -4px;
    background-image: url("../img/icons/black-left-arrow.svg");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 0 var(--bs-accordion-body-padding-x);
}

/* Media query */

@media (max-width: 1399px) {
    .blog_section {
        padding: 50px 0px;
    }
}

@media (max-width: 1199px) {
    .blog_section {
        padding: 50px 0px;
    }

    .blog_section .left_side_area .image_box .text_container .top_text h5 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 6px;
    }

    .blog_section .left_side_area .image_box .text_container .top_text h3 {
        font-size: 40px;
        line-height: 46px;
    }

    .blog_section .left_side_area .image_box .text_container .top_text p {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .blog_section .left_side_area .image_box .text_container .bottom_area {
        padding: 20px 0;
    }

    .blog_section .left_side_area .image_box .text_container .bottom_area .left_side_text p,
    .blog_section .left_side_area .image_box .text_container .bottom_area .right_side_text p {
        font-size: 18px;
        line-height: 20px;
    }

    .blog_section .left_side_area .small_card .text_container .top_text h3 {
        font-size: 30px;
        line-height: 35px;
    }

    .blog_section .left_side_area .small_card .text_container .top_text h5 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .blog_section .left_side_area .small_card .text_container .top_text p {
        font-size: 17px;
        line-height: 19px;
        margin-bottom: 14px;
    }

    .blog_section .left_side_area .small_card .text_container .bottom_area .left_side_text p,
    .blog_section .left_side_area .small_card .text_container .bottom_area .right_side_text p {
        font-size: 16px;
        line-height: 18px;
    }

    .blog_section .right_side_area .recent_post_area,
    .blog_section .right_side_area .archive_area,
    .blog_section .right_side_area .category_area {
        margin-bottom: 30px;
    }

    .blog_section .right_side_area .recent_post_area h4,
    .blog_section .right_side_area .archive_area h4,
    .blog_section .right_side_area .recent_comments h4,
    .blog_section .right_side_area .category_area h4 {
        margin-bottom: 20px;
    }

    .blog_section .right_side_area .recent_post_area a {
        font-size: 16px;
        line-height: 20px;
    }

    .blog_section .right_side_area .recent_comments .comment_box .right_side h6 {
        font-size: 16px;
        line-height: 17px;
    }

    .blog_section .right_side_area .recent_comments .comment_box .right_side p {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 991px) {

    .blog_section .right_side_area {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .blog_section {
        padding: 30px 0px 0 0;
    }

    .blog_section .left_side_area .image_box .text_container .bottom_area {
        display: none;
    }

    .blog_section .left_side_area .image_box .text_container .top_text {
        border: none;
    }

    .blog_section .left_side_area .image_box .text_container {
        bottom: 0px;
        left: 15px;
        right: 15px;
    }

    .blog_section .left_side_area .image_box .text_container .top_text h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .blog_section .left_side_area .small_card .text_container .top_text h3 {
        font-size: 22px;
        line-height: 24px;
    }

    .blog_section .left_side_area .small_card .text_container .top_text p {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .blog_section .right_side_area {
        margin-top: 30px;
    }

    .blog_section .right_side_area .recent_post_area .first {
        margin-bottom: 10px;
    }

    .blog_section .right_side_area .archive_area #flush-collapseOne .accordion-body .first,
    .blog_section .right_side_area .archive_area #flush-collapseTwo .accordion-body .second  {
        margin-bottom: 10px;
    }

    .blog_section .right_side_area .recent_post_area,
    .blog_section .right_side_area .archive_area,
    .blog_section .right_side_area .category_area {
        margin-bottom: 20px;
    }

    .blog_section .right_side_area .recent_post_area h4,
    .blog_section .right_side_area .archive_area h4,
    .blog_section .right_side_area .recent_comments h4,
    .blog_section .right_side_area .category_area h4 {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .blog_section {
        padding: 30px 0px 0 0;
    }

    .blog_section .top_search_area {
        margin-bottom: 30px;
    }

    .blog_section .top_search_area input {
        font-size: 17px;
        line-height: 21px;
        padding: 13px 55px 13px 25px;
    }

    .blog_section .left_side_area .small_card img {
        max-height: 450px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .blog_section .left_side_area .image_box img {
        height: 450px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }

    .blog_section .left_side_area .row .col-xxl-5:last-child .image_box,
    .blog_section .left_side_area .row .col-xxl-5:nth-child(4) .image_box {
        margin-bottom: 30px;
    }

    .blog_section .right_side_area {
        margin-top: 0;
    }

    .blog_section .left_side_area .image_box .text_container .top_text h3 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    .blog_section .top_search_area img {
        width: 18px;
    }
}

/* ========================================= BLOG-DETAIL.HTML PAGE CSS ========================================= */

/*
  23. Blog Details section CSS
*/

.blog_section .left_side_area .image_box .blog_info {
    padding: 30px 0 0 0;
}

.blog_section .left_side_area .image_box .blog_info p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #0A1828;
    margin-bottom: 20px;
}

.blog_section .left_side_area .image_box .blog_info .info_area {
    padding: 30px 0 0 0;
}

.blog_section .left_side_area .image_box .blog_info .info_area h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin: 40px 0;
}

.blog_section .left_side_area .image_box .blog_info .info_area p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #0A1828;
    text-align: justify;
}

.blog_section .left_side_area .blog_tags_area button {
    margin-right: 20px;
}

.blog_section .left_side_area .blog_tags_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*justify-content: space-between;*/
}

.blog_section .left_side_area .blog_tags_area button {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #636365;
    padding: 15px 30px;
    border: 1px solid #636365;
    background: #F3F3F3;
    border-radius: 10px;
    transition: all 0.5s linear;
    cursor: default;
}

.blog_section .left_side_area .blog_tags_area button:hover {
    background: #0A1828;
    color: #FFF;
}

.blog_section .contact_form {
    padding: 50px 0 0 0;
}

.blog_section .contact_form .top_text h5 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin-bottom: 20px;
}

.blog_section .contact_form .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #0A1828;
    margin-bottom: 40px;
}

.blog_section .contact_form .top_text .form-check-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
}

.blog_section .contact_form .top_text .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #636365;
    margin-top: 0.1em;
    background-color: transparent;
}

.blog_section .contact_form .top_text .form-check-input:focus {
    box-shadow: none;
}

.blog_section .contact_form form .input_box {
    font-size: 18px;
    font-weight: 400;
    color: #0A1828;
    line-height: 21px;
    width: 100%;
    border: 1px solid #636365;
    background: #FFF;
    border-radius: 10px;
    padding: 13px 20px;
    margin-bottom: 30px;
}

.blog_section .contact_form form .input_box:focus-visible {
    outline-color: #0A1828;
}

.blog_section .contact_form form .btn {
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    line-height: 21px;
    border-radius: 10px;
    background: #0A1828;
    padding: 15px 40px;
}

.blog_section form .blogdetail_form_error{
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin: -23px 0px 1rem 4px;
}

/* Media query */

@media (max-width: 1199px) {
    .blog_section .left_side_area .image_box .blog_info p {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 15px;
    }

    .blog_section .left_side_area .image_box .blog_info .info_area {
        padding: 20px 0 0 0;
    }

    .blog_section .left_side_area .image_box .blog_info .info_area h2 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .blog_section .left_side_area .image_box .blog_info .info_area p {
        font-size: 18px;
        line-height: 21px;
    }

    .blog_section .left_side_area .blog_tags_area button {
        font-size: 15px;
        line-height: 19px;
        padding: 14px 26px;
    }

    .blog_section .contact_form {
        padding: 25px 0 0 0;
    }

    .blog_section .contact_form .top_text h5 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .blog_section .contact_form .top_text p {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 20px;
    }

    .blog_section .contact_form form .input_box {
        font-size: 17px;
        line-height: 21px;
        padding: 11px 16px;
        margin-bottom: 30px;
    }

    .blog_section .contact_form form .btn {
        font-size: 17px;
        line-height: 20px;
        padding: 13px 30px;
    }
}


@media (max-width: 767px) {
    .blog_section .left_side_area .blog_tags_area button {
        margin-bottom: 30px;
    }

    .blog_section .contact_form {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .blog_section .contact_form form .btn {
        margin-bottom: 30px;
    }

    .blog_section .contact_form form .input_box {
        margin-bottom: 10px;
    }

    .blog_section .contact_form form .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 11px 16px;
    }

    .breadcrumb_hero_section .breadcumb_area ul li a, .breadcrumb_hero_section ul li h5 {
        font-size: 16px;
        line-height: 24px;
    }
} 

@media (max-width: 480px) {
    #blogdetail_animation .breadcumb_area .d-flex {
        align-items: normal !important;
    }

    #blogdetail_animation .breadcumb_area ul li:last-child {
        width: 50%;
    }

    #blogdetail_animation .breadcumb_area ul li:last-child h5 {
        word-break: break-all;
    }

    .blog_section .left_side_area .image_box .blog_info .info_area {
        padding: 5px 0 0 0;
    }

    .blog_section .left_side_area .image_box .blog_info .info_area h2 {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 28px;
    }

    .blog_section .contact_form .top_text h5 {
        font-size: 23px;
        line-height: 27px;
        margin-bottom: 10px;
    }
}

/* ========================================= TEAM.HTML PAGE CSS ========================================= */

/*
  24. Team section CSS
*/

.team_section {
    padding: 170px 0px 50px 0px;
}

.team_section .image_box {
    position: relative;
    margin-bottom: 40px;
    height: 450px;
}

.team_section .image_box .effect {
    display: inline-block;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.team_section .image_box .effect img {
    transition: all 0.5s ease;
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team_section .image_box .effect:hover img {
    transform: scale(1.2);
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.2);
}

.team_section .image_box .text_container {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
}

.team_section .image_box .text_container .left_side h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    color: #F3F3F3;
}

.team_section .image_box .text_container .left_side p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #F3F3F3;
    margin: 0;
}

.team_section .image_box .text_container .right_side .icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(243, 243, 243, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    transition: all 0.5s linear;
}

.team_section .image_box .text_container .right_side .icon:hover {
    background-color: #FFF;
    color: #0A1828;
}

.team_section .small_images_card .text_container {
    display: block !important;
}

.team_section .small_images_card .text_container .left_side p {
    margin-bottom: 15px;
}

/* Media query */

@media (max-width: 1399px) {
    .team_section {
        padding: 170px 0px 50px 0px;
    }

    .team_section .image_box {
        position: relative;
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .team_section {
        padding: 160px 0px 40px 0px;
    }
}

@media (max-width: 991px) {
    .team_section {
        padding: 50px 0px 30px 0px;
    }

    .team_section .image_box .text_container .left_side h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .team_section .image_box .text_container .left_side p {
        font-size: 16px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .team_section {
        padding: 30px 0px 0px 0px;
    }

    .team_section .image_box img {
        min-height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .team_section .image_box .text_container {
        display: block !important;
    }

    .team_section .image_box .text_container .left_side p {
        margin-bottom: 15px
    }

    .team_section .image_box .text_container .left_side {
        text-align: center;
    }

    .team_section .image_box .text_container .right_side {
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 575px) {
    .team_section {
        padding: 30px 0px 0px 0px;
    }

    .team_section .image_box img {
        max-height: 450px;
    }

    .team_section .image_box {
        text-align: center;
    }

    .team_section .image_box .effect {
        display: block;
    }
}

/* ========================================= PORTFOLIO.HTML PAGE CSS ========================================= */

/*
  25. Portfolio section CSS
*/

.portfolio_section {
    padding: 90px 0px 60px 0px;
}

.portfolio_section .nav-item .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #0A1828;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 20px;
    padding: 0;
}

.portfolio_section .nav-item .nav-link:focus-visible {
    box-shadow: none;
}

.portfolio_section .nav-item .nav-link:focus-visible {
    outline: none;
}

.portfolio_section .nav-item .nav-link:hover::before {
    width: 120%;
}

.portfolio_section .nav-item .nav-link.active {
    position: relative;
}

.portfolio_section .nav-item .nav-link.active::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: -5px;
    height: 2px;
    background: #178582;
    border-radius: 2px;
}

.portfolio_section .tab-content {
    padding: 50px 20px 0 20px;
}

.portfolio_section .tab-content .content .card_box {
    margin-bottom: 30px;
}

.portfolio_section .tab-content .content .card_box .image {
    overflow: hidden;
}

.portfolio_section .tab-content .content .card_box .image:hover img {
    transform: scale(1.03);
}

.portfolio_section .tab-content .content .card_box .image img {
    transition: all 0.5s ease;
}

.portfolio_section .tab-content .content .card_box .card_content {
    padding: 0 0 0 10px;
}

.portfolio_section .tab-content .content .card_box .card_content h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #0A1828;
    margin-bottom: 12px;
    margin-left: -10px;
}

.portfolio_section .tab-content .content .card_box .card_content a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #0A1828;
    margin-left: -10px;
}

.portfolio_section .nav-tabs {
    border: none;
}

/* Media query */

@media (max-width: 1399px) {
    .portfolio_section {
        padding: 90px 0px;
    }
}

@media (max-width: 1199px) {
    .portfolio_section {
        padding: 70px 0px;
    }

    .portfolio_section .tab-content .content .card_box .card_content h5 {
        font-size: 19px;
        line-height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (max-width: 991px) {
    .portfolio_section {
        padding: 50px 0px;
    }

    .portfolio_section .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .portfolio_section {
        padding: 30px 0px;
    }

    .portfolio_section .tab-content {
        padding: 50px 20px 0 20px;
    }
}

@media (max-width: 575px) {
    .portfolio_section {
        padding: 30px 0px 0 0;
    }

    .portfolio_section .tab-content {
        padding: 30px 20px 10px 20px;
    }

    .portfolio_section .tab-content .content .card_box .image {
        text-align: center;
    }

    .portfolio_section .tab-content .content .card_box .card_content {
        text-align: center;
    }

    .portfolio_section .nav-tabs {
        display: block;
    }

    .portfolio_section .nav-item .nav-link {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .portfolio_section .tab-content .content .card_box .card_content h5 {
        font-size: 18px;
        line-height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/*
  26. Our Clients section CSS
*/

.our_clients_section {
    padding-bottom: 20px;
}

.our_clients_section .container-fluid {
    padding: 0;
}

.our_clients_section .top_text {
    text-align: center;
    padding: 0 10px;
}

.our_clients_section .top_text h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 58px;
    color: #0A1828;
    margin-bottom: 22px;
}

.our_clients_section .top_text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 21px;
    color: #0A1828;
    width: 30%;
    margin: 0 auto;
}

.our_clients_section .swiper {
    padding: 100px 0;
}

.our_clients_section .swiper {
    width: 100%;
    height: 100%;
}

.our_clients_section .swiper-wrapper {
    align-items: center;
}

.our_clients_section .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.our_clients_section .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: auto;
    height: auto;
}

.our_clients_section .swiper .swiper-slide .image_area img {
    width: 202px; 
    height: 114px; 
    object-fit: contain; 
}

.our_clients_section .swiper .swiper-slide-active .image_area img {
    width: 230px;
    height: 130px;
}

.our_clients_section .swiper .swiper-slide-active .image_area {
    background: linear-gradient(0deg, #DFDFDF 0%, #DFDFDF 100%), url(<path-to-image>), lightgray 50% / cover no-repeat;
    padding: 40px 35px;
    border-radius: 20px;
    position: relative;
}

.our_clients_section .swiper .swiper-slide:not(.swiper-slide-active) .image_area {
    background: none !important;
}

.our_clients_section .swiper .swiper-slide-active .image_area::before {
    position: absolute;
    content: "";
    width: 118%;
    height: 125%;
    border-radius: 25px;
    border: 2px dashed #B1B1B1;
    top: -12%;
    left: -9%;
}

@media screen and (min-width: 2560px) {
    .our_clients_section .swiper {
        padding: 100px 460px;
    }

    .our_clients_section .swiper .swiper-slide {
        width: 250px !important;
    }
}

@media screen and (min-width: 2880px) {
    .our_clients_section .swiper {
        padding: 100px 624px;
    }
}

@media screen and (min-width: 3080px) {
    .our_clients_section .swiper {
        padding: 100px 1110px;
    }
}

@media screen and (min-width: 5120px) {
    .our_clients_section .swiper {
        padding: 100px 1745px;
    }
}

@media (max-width: 1399px) {
    .our_clients_section .top_text p {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .our_clients_section .top_text h2 {
        font-size: 38px;
        line-height: 50px;
        margin-bottom: 16px;
    }

    .our_clients_section .top_text p {
        width: auto;
    }
}

@media (max-width: 575px) {
    /* .our_clients_section .swiper .swiper-slide-active .image_area::before {
        display: none;
    }

    .our_clients_section .swiper .swiper-slide-active .image_area {
        border: 2px dashed #B1B1B1;
    } */

    .our_clients_section .swiper {
        padding: 30px 0;
        margin-top: 1.25rem;
    }

    .our_clients_section .swiper .swiper-slide-active .image_area {
        padding: 30px 0px;
    }

    .our_clients_section .swiper .swiper-slide-active .image_area img {
        width: 230px;
        height: 130px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .our_clients_section .top_text h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .our_clients_section .top_text p {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ========================================= PORTFOLIO-DETAIL.HTML PAGE CSS ========================================= */

/*
  27. Portfolio Detail section CSS
*/

.portfolio_detail_section {
    padding: 100px 0px;
    position: relative;
}

.portfolio_detail_section .top_img {
    margin-bottom: 70px;
    display: inline-block;
    position: relative;
}

.portfolio_detail_section .top_img .imgBox {
    position: absolute;
    top: 26px;
    left: 24px;
    width: 544px;
    height: 306px;
    background-position: top;
    background-size: 100%;
    z-index: 9;
    overflow-y: scroll;
}

.portfolio_detail_section .top_img .imgBox::-webkit-scrollbar {
    display: none;
}

/* .portfolio_detail_section .top_img:hover .imgBox {
  background-position: bottom;
} */

.portfolio_detail_section .top_img img {
    position: relative;
    z-index: 2;
}

.portfolio_detail_section .portfolio_detail_line_animation {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.portfolio_detail_section .left_side_area p {
    font-size: 25px;
    font-weight: 400;
    line-height: 29px;
    color: #0A1828;
    margin-bottom: 30px;
    text-align: justify;
}

.portfolio_detail_section .tags_area {
    padding: 20px 0 0 0;
}

.portfolio_detail_section .tags_area .tag_btn {
    font-size: 16px;
    font-weight: 400;
    color: #636365;
    line-height: 19px;
    border-radius: 10px;
    border: 1px solid #636365;
    background: #FFF;
    outline: none;
    padding: 15px 30px;
    transition: all 0.5s linear;
}

.portfolio_detail_section .tags_area .tag_btn:hover {
    background: #0A1828;
    color: #FFF;
}

.portfolio_detail_section .contact_form {
    padding: 50px 0 0 0;
}

.portfolio_detail_section .contact_form .top_text h5 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin-bottom: 20px;
}

.portfolio_detail_section .contact_form .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #0A1828;
    margin-bottom: 40px;
}

.portfolio_detail_section .contact_form .top_text .form-check-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
}

.portfolio_detail_section .contact_form .top_text .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #636365;
    margin-top: 0.1em;
    background-color: transparent;
}

.portfolio_detail_section .contact_form .top_text .form-check-input:focus {
    box-shadow: none;
}

.portfolio_detail_section .contact_form form .input_box {
    font-size: 18px;
    font-weight: 400;
    color: #0A1828;
    line-height: 21px;
    width: 100%;
    border: 1px solid #636365;
    background: #FFF;
    border-radius: 10px;
    padding: 13px 20px;
    margin-bottom: 30px;
}

.portfolio_detail_section .contact_form form .input_box:focus-visible {
    outline-color: #0A1828;
}

.portfolio_detail_section .contact_form form .btn {
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    line-height: 21px;
    border-radius: 10px;
    background: #0A1828;
    padding: 15px 40px;
}

.portfolio_detail_section .right_side_area .recent_post_area,
.portfolio_detail_section .right_side_area .archive_area,
.portfolio_detail_section .right_side_area .category_area,
.portfolio_detail_section .right_side_area .recent_comments {
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    background: #FFF;
    padding: 20px;
}

.portfolio_detail_section .right_side_area .recent_post_area h4,
.portfolio_detail_section .right_side_area .archive_area h4,
.portfolio_detail_section .right_side_area .recent_comments h4,
.portfolio_detail_section .right_side_area .category_area h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 30px;
}


.portfolio_detail_section .right_side_area .recent_comments .comment_box {
    display: flex;
    border-bottom: 1px solid rgba(10, 24, 40, 0.20);
    margin-top: 15px;
}

.portfolio_detail_section .right_side_area .recent_comments .comment_box:last-child {
    border-bottom: none;
}

.portfolio_detail_section .right_side_area .recent_comments .comment_box .right_side {
    padding: 10px;
}

.portfolio_detail_section .right_side_area .recent_comments .comment_box .right_side h6 {
    font-size: 17px;
    font-weight: 500;
    line-height: 17px;
    color: #0A1828;
}

.portfolio_detail_section .right_side_area .recent_comments .comment_box .right_side p {
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #0A1828;
    margin-bottom: 10px;
}

.portfolio_detail_section .right_side_area .recent_comments .comment_box .left_side {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.portfolio_detail_section .right_side_area .recent_post_area a {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    display: block;
    cursor: pointer;
}

.portfolio_detail_section .right_side_area .recent_post_area .first {
    margin-bottom: 30px;
}

.portfolio_detail_section .right_side_area .recent_post_area .first:last-child {
    margin-bottom: 0px;
}

.portfolio_detail_section .right_side_area .category_area ul li {
    margin: 15px 0;
}

.portfolio_detail_section .right_side_area .category_area ul li .icon {
    width: 30px;
}

.portfolio_detail_section .right_side_area .category_area ul li .icon .img-fluid{
    width: 20px;
    height: 20px;
}

.portfolio_detail_section .right_side_area .category_area ul li .text p {
    font-size: 18px;
    font-weight: 400;
    color: #0A1828;
    line-height: 21px;
    margin: 0;
}

.accordion {
    --bs-accordion-border-color: none;
    --bs-accordion-bg: none;
    border: none !important;
    border-radius: 0 !important;
}

.portfolio_detail_section .right_side_area .archive_area .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    position: relative;
}

.portfolio_detail_section .right_side_area .archive_area .accordion-header .accordion-button:focus {
    box-shadow: none;
}

.portfolio_detail_section .right_side_area .archive_area .accordion-header .accordion-button::after {
    position: absolute;
    left: -4px;
    background-image: url("../img/icons/black-left-arrow.svg");
}

.portfolio_detail_section .right_side_area .accordion .accordion-item #flush-collapseOne .accordion-body a,
.portfolio_detail_section .right_side_area .accordion .accordion-item #flush-collapseTwo .accordion-body a {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    display: block;
    margin: 10px 0;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 0 var(--bs-accordion-body-padding-x);
}

/* Media query */

@media screen and (min-width: 2560px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        right: 11%;
    }
}

@media screen and (min-width: 2880px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        right: 16%;
    }
}

@media screen and (min-width: 3840px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        right: 25%;
    }
}

@media screen and (min-width: 5120px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        right: 31%;
    }
}

@media (max-width: 1550px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        width: 90%;
    }
}

@media (max-width: 1399px) {
    .portfolio_detail_section {
        padding: 100px 0px;
    }
}

@media (max-width: 1199px) {
    .portfolio_detail_section {
        padding: 70px 0px;
    }

    .portfolio_detail_section .left_side_area p {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 25px;
    }

    .portfolio_detail_section .right_side_area .recent_comments .comment_box .right_side h6 {
        font-size: 16px;
        line-height: 17px;
    }

    .portfolio_detail_section .right_side_area .recent_comments .comment_box .right_side p {
        font-size: 14px;
        line-height: 16px;
    }

    .portfolio_detail_section .tags_area {
        padding: 0px 0 0 0;
        margin-bottom: 28px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area,
    .portfolio_detail_section .right_side_area .archive_area,
    .portfolio_detail_section .right_side_area .category_area {
        margin-bottom: 30px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area h4,
    .portfolio_detail_section .right_side_area .archive_area h4,
    .portfolio_detail_section .right_side_area .recent_comments h4,
    .portfolio_detail_section .right_side_area .category_area h4 {
        margin-bottom: 20px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area a {
        font-size: 16px;
        line-height: 20px;
    }

    .portfolio_detail_section .contact_form {
        padding: 25px 0 0 0;
    }

    .portfolio_detail_section .contact_form .top_text h5 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .portfolio_detail_section .contact_form .top_text p {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 20px;
    }

    .portfolio_detail_section .contact_form form .input_box {
        font-size: 17px;
        line-height: 21px;
        padding: 11px 16px;
        margin-bottom: 30px;
    }

    .portfolio_detail_section .contact_form form .btn {
        font-size: 17px;
        line-height: 20px;
        padding: 13px 30px;
    }
}

@media (max-width: 991px) {
    .portfolio_detail_section {
        padding: 50px 0px;
    }

    .portfolio_detail_section .portfolio_detail_line_animation {
        width: 97%;
    }

    .portfolio_detail_section .right_side_area {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .portfolio_detail_section .top_img {
        margin-bottom: 40px;
    }

    .portfolio_detail_section .left_side_area p {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .portfolio_detail_section .top_img img {
        width: 400px;
    }

    .portfolio_detail_section .top_img .imgBox {
        top: 18px;
        left: 16px;
        width: 367px;
        height: 206px;
    }
}

@media (max-width: 767px) {
    .portfolio_detail_section {
        padding: 30px 0px 0 0;
    }

    .portfolio_detail_section .top_img img {
        max-width: 400px;
    }

    .portfolio_detail_section .portfolio_detail_line_animation svg {
        width: auto;
        height: 180px;
    }

    .portfolio_detail_section .right_side_area {
        margin-top: 30px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area .first {
        margin-bottom: 10px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area,
    .portfolio_detail_section .right_side_area .archive_area,
    .portfolio_detail_section .right_side_area .category_area {
        margin-bottom: 20px;
    }

    .portfolio_detail_section .right_side_area .recent_post_area h4,
    .portfolio_detail_section .right_side_area .archive_area h4,
    .portfolio_detail_section .right_side_area .recent_comments h4,
    .portfolio_detail_section .right_side_area .category_area h4 {
        margin-bottom: 10px;
    }

    .portfolio_detail_section .contact_form {
        padding: 0;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .portfolio_detail_section {
        padding: 30px 0px 0 0;
    }

    .portfolio_detail_section .right_side_area {
        margin-top: 0;
    }

    .portfolio_detail_section .contact_form form .btn {
        margin-bottom: 30px;
    }

    .portfolio_detail_section .contact_form form .input_box {
        margin-bottom: 10px;
    }

    .portfolio_detail_section .contact_form form .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 11px 16px;
    }

    .portfolio_detail_section .top_img {
        margin-bottom: 30px;
    }

    .portfolio_detail_section .tags_area .tag_btn {
        font-size: 15px;
        line-height: 19px;
        padding: 10px 20px;
    }

    .portfolio_detail_section .top_img img {
        width: 280px;
    }

    .portfolio_detail_section .top_img .imgBox {
        top: 12px;
        left: 11px;
        width: 258px;
        height: 145px;
    }
}

@media (max-width: 480px) {
    .portfolio_detail_section .contact_form .top_text h5 {
        font-size: 23px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .portfolio_detail_section .left_side_area p {
        font-size: 17px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .portfolio_detail_section .portfolio_detail_line_animation {
        width: 92%;
    }

    .portfolio_detail_section .portfolio_detail_line_animation svg {
        height: 130px;
    }
}

@media (max-width: 375px) {
    .portfolio_detail_section .portfolio_detail_line_animation {
        width: 95%;
    }
}

@media (max-width: 290px) {
    #portfolio_detail_section_animation .breadcumb_area .d-flex {
        align-items: normal !important;
    }

    #portfolio_detail_section_animation .breadcumb_area ul li:last-child {
        width: 50%;
    }

    #portfolio_detail_section_animation ul li:last-child h5 {
        word-break: break-all;
    }
}

/* ========================================= 404.HTML PAGE CSS ========================================= */

/*
  28. Error page section CSS
*/

.error_page_section {
    padding: 150px 0;
}

.error_page_section .error_img{
    margin-left: 18vh;
}

/* Media query */

@media (max-width: 991px) {
    .error_page_section {
        padding: 120px 0 60px 0;
    }

    .error_page_section .error_img{
        margin-left: 7.5vh;
    }
}

@media (max-width: 767px) {
    .error_page_section {
        padding: 80px 0 20px 0;
    }
}

@media (max-width: 575px) {
    .error_page_section {
        padding: 50px 0 20px 0;
    }

    .error_page_section .error_img{
        margin-left: 3.5vh;
    }
}

/* ===================================== NO-INTERNET-CONNECTION.HTML PAGE CSS ===================================== */

/*
  29. No Internet Connection page section CSS
*/

.no_internet_connection_section {
    padding: 150px 0;
}

.no_internet_connection_section .image {
    margin-bottom: 30px;
}

.no_internet_connection_section .image img {
    width: 260px;
    margin: 0 auto;
}

.no_internet_connection_section .text h5 {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.no_internet_connection_section .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #0A1828;
}

/* Media query */

@media (max-width: 991px) {
    .no_internet_connection_section {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {
    .no_internet_connection_section {
        padding: 80px 0;
    }

    .no_internet_connection_section .text h5 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .no_internet_connection_section {
        padding: 50px 0;
    }

    .no_internet_connection_section .text h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .no_internet_connection_section .text p {
        font-size: 16px;
    }

    .no_internet_connection_section .image img {
        width: 150px;
    }
}

/* ========================================= NO-RESULT-FOUND.HTML PAGE CSS ========================================= */

/*
  29. No result found page section CSS
*/

.no_result_found_section {
    padding: 150px 0;
}

.no_result_found_section .image {
    margin-bottom: 30px;
}

.no_result_found_section .image img {
    width: 260px;
    margin: 0 auto;
}

.no_result_found_section .text h5 {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.no_result_found_section .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #0A1828;
}

/* Media query */

@media (max-width: 991px) {
    .no_result_found_section {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {
    .no_result_found_section {
        padding: 80px 0;
    }

    .no_result_found_section .text h5 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .no_result_found_section {
        padding: 50px 0;
    }

    .no_result_found_section .text h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .no_result_found_section .text p {
        font-size: 16px;
    }

    .no_result_found_section .image img {
        width: 150px;
    }
}

/* ========================================= EMPTY.HTML PAGE CSS ========================================= */

/*
  30. Empty section CSS
*/

.empty_section {
    padding: 150px 0;
}

.empty_section .image {
    margin-bottom: 30px;
}

.empty_section .image img {
    width: 260px;
    margin: 0 auto;
}

.empty_section .text h5 {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.empty_section .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #0A1828;
}

/* Media query */

@media (max-width: 991px) {
    .empty_section {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {
    .empty_section {
        padding: 80px 0;
    }

    .empty_section .text h5 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .empty_section {
        padding: 50px 0;
    }

    .empty_section .text h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .empty_section .text p {
        font-size: 16px;
    }

    .empty_section .image img {
        width: 150px;
    }
}

/* ========================================= MAINTENANCE.HTML PAGE CSS ========================================= */

/*
  31. Maintenance section CSS
*/

.maintenance_section {
    padding: 150px 0;
}

.maintenance_section .image {
    margin-bottom: 30px;
}

.maintenance_section .image img {
    width: 260px;
    margin: 0 auto;
}

.maintenance_section .text h5 {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 20px;
}

.maintenance_section .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #0A1828;
}

/* Media query */

@media (max-width: 991px) {
    .maintenance_section {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {
    .maintenance_section {
        padding: 80px 0;
    }

    .maintenance_section .text h5 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .maintenance_section {
        padding: 50px 0;
    }

    .maintenance_section .text h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .maintenance_section .text p {
        font-size: 16px;
    }

    .maintenance_section .image img {
        width: 150px;
    }
}

/* ========================================= CONTACT.HTML PAGE CSS ========================================= */

/*
  32. Main Contact section CSS
*/

.main_contact_section {
    padding: 100px 0px;
}

.main_contact_section .top_text h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin-bottom: 20px;
}

.main_contact_section .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #0A1828;
}

.main_contact_section .left_side_area form {
    padding: 20px;
}

.main_contact_section .left_side_area form .input_box,
.main_contact_section .left_side_area form .inputFile {
    margin-bottom: 40px;
}

.main_contact_section .left_side_area form .input_box .form-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    position: relative;
}

.main_contact_section .left_side_area form .input_box .form-label::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: #0A1828;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -20px;
}

.main_contact_section .left_side_area form .input_box .form-label span {
    color: #DE0505;
}

.main_contact_section .left_side_area form .input_box .form-control,
.main_contact_section .left_side_area form .input_box .form-select {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    border: none;
    border-bottom: 1px solid #636365;
    background-color: #F3F3F3;
    border-radius: 0;
    padding: 15px 0;
}

.main_contact_section .left_side_area form .form_error {
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin-top: 5px;
}

.main_contact_section .left_side_area form .form_error_service{
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin-top: 15px;
}

.main_contact_section .left_side_area form .form_error_file{
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin-top: -30px;
}

.main_contact_section .left_side_area form .input_box .form-control:focus,
.main_contact_section .left_side_area form .input_box .form-select:focus {
    box-shadow: none;
}

.main_contact_section .left_side_area form .input_box .form-control::placeholder {
    color: #636365;
}

.main_contact_section .left_side_area form .input_box .form-select {
    color: #636365;
}

.main_contact_section .left_side_area form .input_box .form-select option {
    padding: 8px 16px;
}

.main_contact_section .left_side_area form #custom_button {
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    padding: 10px 25px;
    border-radius: 10px;
    background: #0A1828;
    border: none;
    margin-right: 10px;
}

.main_contact_section .left_side_area form #custom_text {
    font-size: 16px;
    font-weight: 400;
    color: #636365;
    line-height: 19px;
}

.main_contact_section .left_side_area form .submit_btn {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 21px;
    background: #0A1828;
    padding: 13px 70px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.main_contact_section .right_side_area .box {
    margin-bottom: 60px;
}

.main_contact_section .right_side_area .box h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #0A1828;
    margin-bottom: 30px;
}

.main_contact_section .right_side_area .box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    margin: 0;
}

.main_contact_section .right_side_area .box .contact_form_address{
    display: flex;
}

.breadcrumb_hero_section .line_animation {
    position: absolute;
    top: 100%;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

#stroke {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 700;
    stroke-dashoffset: var(--dashOffset, 0);
}

#stroke2 {
    stroke: #178582;
    stroke-width: 2;
    stroke-dasharray: 2210;
    stroke-dashoffset: var(--dashOffset, 2210);
}

/* Media query */

@media (max-width: 1399px) {
    .main_contact_section {
        padding: 100px 0px;
    }

    .main_contact_section .right_side_area .box h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 22px;
    }

    .main_contact_section .right_side_area .box {
        margin-bottom: 45px;
    }

    .main_contact_section .right_side_area .box p {
        word-break: break-all;
    }

    .breadcrumb_hero_section .line_animation {
        width: 45%;
        display: none;
    }
}

@media (max-width: 1199px) {
    .main_contact_section {
        padding: 70px 0px;
    }

    .main_contact_section .left_side_area form .submit_btn {
        font-size: 17px;
        line-height: 20px;
        padding: 12px 50px;
    }

    .main_contact_section .right_side_area .box p {
        font-size: 17px;
        line-height: 20px;
    }

    .breadcrumb_hero_section .line_animation {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .main_contact_section {
        padding: 50px 0px;
    }

    .main_contact_section .top_text h4 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .breadcrumb_hero_section .line_animation {
        display: none;
    }

    .main_contact_section .top_text p {
        font-size: 18px;
        line-height: 20px;
    }

    .main_contact_section .right_side_area {
        position: relative;
        top: auto;
        padding: 20px;
    }

    .main_contact_section .right_side_area .box:last-child {
        margin-bottom: 0;
    }

    .main_contact_section .right_side_area .box {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .main_contact_section {
        padding: 30px 0px;
    }

    .main_contact_section {
        padding: 30px 10px;
    }

    .main_contact_section .right_side_area {
        padding: 20px 10px;
    }

    .main_contact_section .left_side_area form .form_error_service{
        margin-top: 2px;
    }
}

@media (max-width: 575px) {
    .main_contact_section {
        padding: 30px 0px;
    }

    .breadcrumb_hero_section .line_animation {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .main_contact_section {
        padding: 30px 0px;
    }

    .main_contact_section .top_text h4 {
        font-size: 23px;
        line-height: 25px;
        margin-bottom: 8px;
    }

    .main_contact_section .top_text p {
        font-size: 17px;
        line-height: 20px;
    }

    .main_contact_section .left_side_area form .input_box .form-label {
        font-size: 17px;
        line-height: 20px;
    }

    .main_contact_section .left_side_area form .input_box .form-control,
    .main_contact_section .left_side_area form .input_box .form-select {
        font-size: 17px;
        line-height: 21px;
        padding: 8px 0;
    }

    .main_contact_section .left_side_area form .input_box,
    .main_contact_section .left_side_area form .inputFile {
        margin-bottom: 30px;
    }

    .main_contact_section .left_side_area form .submit_btn {
        font-size: 16px;
        line-height: 18px;
        padding: 10px 35px;
    }

    .main_contact_section .left_side_area form .submit_btn {
        font-size: 16px;
        line-height: 18px;
        padding: 10px 35px;
    }

    .main_contact_section .right_side_area .box {
        margin-bottom: 25px;
    }

    .main_contact_section .right_side_area {
        padding: 20px 10px 0 10px;
    }

    .breadcrumb_hero_section .line_animation {
        width: 25%;
    }
}

/* ========================================= CAREER.HTML PAGE CSS ========================================= */

/*
  33. Career section CSS
*/

.career_section {
    padding: 100px 0px;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("../img/icons/tick-mark.gif");
    background-size: cover;
    background-repeat: no-repeat;
}

.career_section .main_text {
    margin-bottom: 80px;
    text-align: center;
}

.career_section .main_text h5 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin-bottom: 20px;
}

.career_section .main_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #0A1828;
    width: 50%;
    margin: 0 auto;
}

.career_section .accordion {
    border: none;
    border-radius: 0;
}

.career_section .accordion__button {
    position: relative;
}

.career_section .accordion__button:hover {
    background-color: transparent;
}

.career_section .accordion__button:focus-visible {
    outline: none;
}

.career_section .accordion__button:before {
    position: absolute;
    right: 0;
    top: 35%;
    transform: rotate(45deg);
}

.career_section .accordion__button[aria-expanded='true']::before,
.accordion__button[aria-selected='true']::before {
    transform: rotate(225deg);
}

.career_section .accordion .accordion-item {
    border-radius: 0px 30px;
    border: 1px solid #0A1828;
    background: #F3F3F3;
    margin-bottom: 40px;
    padding: 30px 40px;
}

.career_section .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.career_section .accordion .accordion-item .accordion-button,
.career_section .accordion .accordion-item .accordion-body {
    padding: 0;
}

.career_section .accordion .accordion-item .accordion-body {
    border-top: 1px solid rgba(119, 129, 148, 0.20);
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
}

.career_section .accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.career_section .accordion .accordion-item .main_box .left_side_area h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    color: #0A1828;
    margin-bottom: 15px;
}

.career_section .accordion .accordion-item .main_box .right_side_area button {
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
    color: #FFFFFF;
    background: #0A1828;
    border-radius: 10px;
    padding: 12px 35px;
    border: none;
    outline: none;
    margin-right: 50px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area {
    padding-right: 15px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area {
    margin-bottom: 40px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area:last-child {
    margin-bottom: 0;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area h5,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area h5,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button h5 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.44px;
    color: #21273D;
    line-height: 26px;
    margin-bottom: 15px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
    color: #21273D;
    line-height: 30px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area ul,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area ul {
    padding: 0 20px;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area ul,
.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area li,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area ul,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area li {
    list-style: disc;
}

.career_section .accordion .accordion-item .accordion-body .left_side_body_area .area li,
.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area li {
    font-size: 18px;
    font-weight: 400;
    color: #21273D;
    line-height: 28px;
    letter-spacing: 0.36px;
    margin: 10px 0;
}

.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button .button_area {
    display: flex;
    flex-wrap: wrap;
}

.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button .button_area button {
    font-size: 18px;
    font-weight: 400;
    color: #778194;
    letter-spacing: 0.36px;
    line-height: 21px;
    padding: 12px 28px;
    border-radius: 80px;
    border: 1px solid #778194;
    margin: 0 15px 15px 0;
    transition: all 0.5s linear;
}

.career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button .button_area button:hover {
    background: #0A1828;
    color: #FFF;
}

.apply_form_section form .form_error {
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
    margin: -24px 0px 11px 4px;
}

.apply_form_section form .form_error_carrer_num{
    margin: -24px 0px 11px 88px;
    font-size: 15px;
    font-weight: 400;
    color: #DE0505;
    line-height: 18px;
}

.apply_form_section form .form_error_dropdown {
    margin: -9.5px 0px 11px 4px;
}

.apply_form_section form .form_error_message {
    margin: -32px 0px 11px 4px;
}

.no_career_section  {
    margin-bottom: 13rem;
}

/* Media query */

@media (max-width: 1399px) {
    .career_section {
        padding: 100px 0px;
    }
    .apply_form_section form .form_error_carrer_num{
        margin: -24px 0px 11px 75px;
    }
}

@media (max-width: 1199px) {
    .career_section {
        padding: 100px 0px;
    }

    .career_section .main_text {
        margin-bottom: 70px;
    }
    .apply_form_section form .form_error_carrer_num{
        margin: -24px 0px 11px 64px;
    }
}

@media (max-width: 991px) {
    .career_section {
        padding: 50px 0px;
    }

    .career_section .main_text p {
        width: auto;
    }

    .career_section .main_text {
        margin-bottom: 50px;
        text-align: center;
    }

    .career_section .accordion .accordion-item {
        padding: 30px 30px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area:last-child {
        margin-bottom: 40px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area {
        padding-right: 0;
    }
    .apply_form_section form .form_error_carrer_num{
        margin: -24px 0px 11px 68px;
    }

    .no_career_section  {
        margin-bottom: 6.25rem;
    }
}

@media (max-width: 767px) {
    .career_section {
        padding: 30px 0px;
    }

    .career_section .main_text h5 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .career_section .main_text p {
        font-size: 17px;
        line-height: 22px;
    }

    .career_section .main_text {
        margin-bottom: 30px;
    }

    .career_section .accordion .accordion-item {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .career_section .accordion .accordion-item .main_box .left_side_area h4 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .career_section .accordion .accordion-item .main_box .right_side_area button {
        font-size: 15px;
        line-height: 19px;
        padding: 10px 30px;
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .career_section {
        padding: 30px 0px;
    }

    .career_section .accordion .accordion-item .accordion-body {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area h5,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area h5,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button h5 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area {
        margin-bottom: 25px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area p {
        font-size: 17px;
        font-weight: 400;
        letter-spacing: 0.20px;
        color: #21273D;
        line-height: 25px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area li,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area li {
        font-size: 17px;
        letter-spacing: 0.20px;
        line-height: 25px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area:last-child {
        margin-bottom: 25px;
    }

    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button .button_area button {
        font-size: 17px;
        line-height: 21px;
        padding: 10px 25px;
        margin: 0 10px 10px 0;
    }

    .career_section .accordion .accordion-item {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .career_section .accordion .accordion-item .main_box .right_side_area button {
        margin-right: 8px;
    }

    .career_section .accordion .accordion-item .main_box .left_side_area h4 {
        margin-bottom: 0;
    }

    .career_section .main_text h5 {
        font-size: 23px;
        line-height: 28px;
    }

    .career_section .main_text p {
        font-size: 16px;
    }

    .apply_form_section form .form_error_carrer_num{
        margin: -20px 0px 11px 80px;
    }

    .apply_form_section form .form_error{
        margin: -20px 0px 15px 4px;
    }

    .apply_form_section form .form_error_dropdown {
        margin: -15.5px 0px 11px 4px;
    }

    .no_career_section  {
        margin-bottom: 3.75rem;
    }
}

@media (max-width: 545px) {
    .apply_form_section form .form_error_carrer_num{
        margin: -20px 0px 11px 110px;
    }
}

@media (max-width: 480px) {
    .career_section .accordion .accordion-item .main_box .left_side_area h4 {
        font-size: 17px;
        line-height: 25px;
    }

    .career_section .accordion .accordion-item .main_box .left_side_area ul {
        display: block !important;
    }

    .career_section .accordion .accordion-item .main_box .left_side_area ul li span {
        display: none;
    }

    .career_section .accordion .accordion-item .main_box .right_side_area button {
        font-size: 15px;
        line-height: 19px;
        padding: 8px 22px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area h5,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area h5,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area_button h5 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area p {
        font-size: 16px;
        line-height: 21px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area {
        margin-bottom: 16px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area ul,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area ul {
        padding: 0 17px;
    }

    .career_section .accordion .accordion-item .accordion-body .left_side_body_area .area li,
    .career_section .accordion .accordion-item .accordion-body .right_side_body_area .area li {
        font-size: 16px;
        letter-spacing: 0.20px;
        line-height: 20px;
    }
}

@media (max-width: 435px) {
    .apply_form_section form .form_error_carrer_num{
        margin: -20px 0px 11px 85px;
    }
}

@media (max-width: 392px) {
    .apply_form_section form .form_error_carrer_num{
        margin: -20px 0px 11px 80px;
    }
}

@media (max-width: 345px) {
    .apply_form_section form .form_error_carrer_num{
        margin: -20px 0px 11px 75px;
    }
}

/*
  34. Apply Form section CSS
*/

.apply_form_section {
    padding: 0 0px 100px 0px;
}

.apply_form_section .top_text {
    margin-bottom: 40px;
}

.apply_form_section .top_text h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: #0A1828;
    margin-bottom: 20px;
}

.apply_form_section .top_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #0A1828;
    margin-bottom: 40px;
}

.apply_form_section .top_text .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #636365;
    margin-top: 0.1em;
    background-color: transparent;
}

.apply_form_section .top_text .form-check-input:focus {
    box-shadow: none;
}

.apply_form_section .top_text .form-check-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #0A1828;
}

.apply_form_section form .input_box .input_field {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #636365;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.apply_form_section form .carrer_contact{
    display: flex;
}

.apply_form_section form .input_box .input_field_91 {
    width: 22%;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #636365;
    margin-bottom: 30px;
    padding-top: 0.8rem;
    margin-right: 10px;
    text-align: center;
}


.apply_form_section form .input_box .input_field:focus-visible {
    outline-color: #0A1828;
}

.apply_form_section form .apply_btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
    background: #0A1828;
    border-radius: 10px;
    border: none;
    padding: 13px 60px;
}

.apply_form_section form #custom_button {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 19px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #636365;
    background: #0A1828;
    padding: 10px 20px;
    margin-right: 10px;
}

/* Media query */

@media (max-width: 1399px) {
    .apply_form_section {
        padding: 0px 0px 100px 0px;
    }
}

@media (max-width: 1199px) {
    .apply_form_section {
        padding: 0px 0px 70px 0px;
    }
}

@media (max-width: 991px) {
    .apply_form_section {
        padding: 0px 0px 50px 0px;
    }
}

@media (max-width: 767px) {
    .apply_form_section {
        padding: 0px 0px 30px 0px;
    }

    .apply_form_section .top_text h4 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .apply_form_section .top_text p {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .apply_form_section .top_text {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .apply_form_section {
        padding: 0px 0px 30px 0px;
    }

    .apply_form_section .top_text h4 {
        font-size: 22px;
        line-height: 26px;
    }

    .apply_form_section .top_text p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .apply_form_section .top_text .form-check-label {
        font-size: 17px;
        line-height: 18px;
    }

    .apply_form_section form .input_box .input_field {
        font-size: 17px;
        line-height: 20px;
        padding: 10px 15px;
        margin-bottom: 25px;
    }

    .apply_form_section form .input_box .input_field_91 {
        font-size: 17px;
        line-height: 20px;
        padding: 10px 14px;
        margin-bottom: 25px;
    }

    .apply_form_section form .apply_btn {
        font-size: 17px;
        line-height: 20px;
        padding: 10px 40px;
    }
}

/*
  35. Hover Button Component CSS
*/

.dot_btn_area .btn {
    position: relative;
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3F3;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
    z-index: 9;
}

.dot_btn_area .btn::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border-radius: 50px;
    transition: all 0.5s ease;
    border: none;
    outline: none;
}

.dot_btn_area .btn:hover::after {
    width: 100%;
    height: 100%;
    margin-left: -50%;
    background: #178582;
}

.dot_btn_area .btn button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    z-index: 10;
}

.dot_btn_area .btn:hover button  {
    color: #FFF;
}

.dot_btn_area_2 .btn {
    background: #0A1828;
}

.dot_btn_area .btn span {
    font-size: 18px;
    font-weight: 500;
    color: #0A1828;
    line-height: 21px;
    z-index: 2;
}

.dot_btn_area_2 .btn span {
    color: #F3F3F3;
}

.dot_btn_area .dot {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2em;
    height: 100%;
    border-radius: 100%;
    transition: all 300ms ease;
    z-index: 9;
}

.dot_btn_area .dot::after {
    content: '';
    position: absolute;
    background-image: url("../img/icons/round1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    right: -9px;
    transform: translate(0, -50%);
    height: 19px;
    width: 19px;
    border-radius: 100%;
}

.dot_btn_area_2 .dot::after {
    background-image: url("../img/icons/white-round.svg");
}

.dot_btn_area .btn:hover .dot {
    animation: atom 2s 1 linear; /*=== Previous - 3s ====*/
    display: block;
}

@keyframes atom {
    0% {
        transform: translateX(0) rotate(0);
    }

    10% {
        transform: translateX(0) rotate(90deg);
        top: 9px;
    }

    40% {
        transform: translateX(-148px) rotate(90deg);
        top: 9px;
    }

    55% {
        transform: translateX(-148px) rotate(270deg);
        top: -9px;
    }

    85% {
        transform: translateX(0) rotate(270deg);
        top: -9px;
    }

    100% {
        transform: translateX(0) rotate(360deg);
    }
}

/* Media query */

@media (max-width: 575px) {
    .dot_btn_area .btn {
        width: 140px;
        height: 45px;
    }

    .dot_btn_area .btn span {
        font-size: 16px;
        line-height: 20px;
    }

    .dot_btn_area .dot::after {
        height: 15px;
        width: 15px;
    }

    @keyframes atom {
        0% {
            transform: translateX(0) rotate(0);
        }

        10% {
            transform: translateX(0) rotate(90deg);
            top: 5px;
        }

        40% {
            transform: translateX(-108px) rotate(90deg);
            top: 5px;
        }

        55% {
            transform: translateX(-108px) rotate(270deg);
            top: -5px;
        }

        85% {
            transform: translateX(0) rotate(270deg);
            top: -5px;
        }

        100% {
            transform: translateX(0) rotate(360deg);
        }
    }
}

/*
  36. Dropdown Component CSS
*/

.select-box--box {
    width: 100%;
    position: absolute;
    left: 0px;
    border-bottom: 1px solid #636365;
    z-index: 99;
    min-height: 42px;
}

.select-box--selected-item {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: 15px 0;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #0A1828;
}

.select-box--items {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.select-box--items div {
    padding: 6px;
    padding-left: 20px;
}

.select-box--items div:hover {
    background: #F5F4FB;
}

.select-box--items div:last-child:hover {
    border-radius: 0px 0px 10px 10px;
}

.select-box--arrow {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    display: inline-block;
    background: transparent;
    position: absolute;
    right: 0px;
    top: 13px;
}

@media (max-width: 575px) {
    .select-box--arrow {
        top: 2px;
    }
}

.select-box--arrow-down {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #636365;
}

.select-box--arrow-up {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #636365;
}

.other-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(10, 24, 40, 0.5);
    background: transparent;
    padding: 6px 0;
}

.other-input:focus-visible {
    outline: none;
}

.apply_form_section .select-box--box {
    top: -17px;
    background: white;
    border-radius: 10px;
    border: 1px solid #636365;
}

.apply_form_section .select-box--selected-item {
    padding: 10px 20px;
}

.apply_form_section .select-box--arrow {
    right: 10px;
    top: 5px;
}

@media (max-width: 575px) {
    .select-box--selected-item {
        padding: 8px 0;
        font-size: 17px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .apply_form_section .select-box--box {
        top: -24px;
    }
}

/*
  37. Service Section CSS
*/
.sector_service_section{
    padding: 8vh 0px 50px 0px;
}
.sector_service_section .sector_service_area{
    text-align: center;
    padding: 20px;
}

.sector_service_section .sector_service_area h4 {
    color: #0A1828;
    font-size: 50px;
    font-weight: 500;
    line-height: 57.25px;
    margin-bottom: 25px;
}

.sector_service_section .sector_service_area p {
    color: #636365;
    font-size: 25px;
    font-weight: 400;
    line-height: 28.62px;
    margin-bottom: 20px;
}

.services_listing {
    list-style: none;
    text-align: center;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
.services_listing li {
    width: calc(25% - 25px);
    border: 1px solid #E7EEFA;
    border-radius: 60px;
    margin: 6px 6px;
    display: inline-block;
    transition: all 0.4s;
}

.services_badge_view {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #E7EEFA;
    border-radius: 43px;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
  
.services_badge_view:hover {
    background: rgba(23, 133, 130, 0.09);
    border-color: #178582;
    color: #0A1828;
}
  
.services_badge_view .services_circle-ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 60%;
    background-color: #112D4130;
    margin-right: 14px;
    position: relative;
    left: -9px;
    transition: transform 1s ease
}
  
.services_badge_view .services_circle-ico img ,
.services_badge_view:hover .services_circle-ico svg{
    width: 50%;
}

.services_badge_view:hover .services_circle-ico img,
.services_badge_view:hover .services_circle-ico svg{
    -webkit-animation-name: jello_service;
    animation-name: jello_service;
    animation-duration: 1s;
    -webkit-transform-origin: center;
    transform-origin: center;
}
  
.services_title {
    color: #0A1828;
    font-weight: 500;
    font-size: 18px;
    width: calc(100% - 80px);
    text-align: left;  
    cursor: default;
}

@keyframes jello_service {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

/* Media query */

@media (max-width:1199px) {
    .services_listing li {
        width: calc(33.33% - 23px);
        margin: 5px 5px;
    } 
}
@media (max-width: 991px) {
    .services_listing li {
        width: calc(33.33% - 23px);
    } 

    .services_badge_view .services_circle-ico {
        width: 50px;
        height: 50px;
    }

    .services_badge_view .services_circle-ico img,
    .services_badge_view .services_circle-ico svg {
        /* max-height: 22px;
        max-width: 34px; */
        width: 50%;
    }

    .services_title {
        font-size: 14px;
        width: calc(100% - 50px);
    }
}

@media (max-width: 767px) {
    .services_listing li {
        width: calc(50% - 15px);
    }

    .services_title {
        font-size: 12px;
        margin-right: -8px;
        margin-left: -10px;
    }

}

@media (max-width: 580px) {
    .services_title {
        font-size: 14px;
    }
}

@media (max-width: 416px) {
    .services_title {
        font-size: 12px;
    }
}

@media (max-width:394px){
    .sector_service_section .sector_service_area h4{
        font-size: 48px;
        margin-top: -40px;
    }

    .services_badge_view .services_circle-ico {
        width: 40px;
        height: 40px;
    }

    .services_title {
        font-size: 12px;
        margin-right: -8px;
        margin-left: -10px;
    }
}

@media (max-width:361px){
    .services_badge_view {
        padding: 10px 2px 10px 18px;
    }
}

@media (max-width:345px){
    .services_badge_view .services_circle-ico img {
        width: 50%;
    }

    .services_badge_view .services_circle-ico {
        width: 30px;
        height: 30px;
    }
}

@media (max-width:330px){
    .services_title {
        width: calc(100% - 27px);
        font-size: 9.5px;
        margin-left: -18px;
    }
}

/* ========================================= STAR-RATING.HTML PAGE CSS ========================================= */

/*
  37. Star-rating Section CSS
*/

.star-rating {
    padding-top: 6.5px;
    margin-bottom: 0.8rem;
}

.star-rating .fas.fa-star,
.star-rating .fas.fa-star-half-alt {
    color: #FFCC00;
    font-size: 31px;
    margin-right: 2px;
}

@media (max-width: 575px) {
    .star-rating {
        padding-top: 0px;
    }

    .star-rating .fas.fa-star,
    .star-rating .fas.fa-star-half-alt {
        font-size: 17px;
    }
}

/* ========================================= SERVICES-DETAIL.HTML PAGE CSS ========================================= */

/*
  38. Services details section CSS
*/

.services_details_section {
    padding: 132px 0px 91px 0px;
    position: relative;
    overflow: hidden;
}

.services_details_section .top_text_area p {
    font-size: 26px;
    font-weight: 400;
    line-height: 29.77px;
    color: #141411;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


/* =========== What do we offer section=========== */
.services_what_do_we_offer {
    padding: 27px 0px 91px 0px;
}

.services_what_do_we_offer .detail_area {
    background-color: #E4E4E4;
}

.services_what_do_we_offer .detail_area .right_side .text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22.9px;
    color: #000000;
    text-align: justify;
}

.services_what_do_we_offer .detail_area .left_side .image {
    position: relative;
    top: -28px;
    left: -78px;
}

.services_what_do_we_offer .detail_area .left_side .effect {
    display: inline-block;
    border-radius: 0px 60px;
    overflow: hidden;
}

.services_what_do_we_offer .detail_area .left_side .effect svg {
    transition: all 0.5s ease;
}

.services_what_do_we_offer .detail_area .left_side .effect:hover svg {
    transform: scale(1.1);
}

.services_what_do_we_offer .detail_area .col-lg-7 {
    margin-left: -50px;
}


/* =========== Development process section=========== */
.services_development_process { 
    background-image: url("../img/servicesdetail/service-detail-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 91px 0px;
}

.services_development_process .development_process .top_text_area h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 57.25px;
    margin-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
}
 
.services_development_process .development_process .process_steps {
    padding-top: 51px;
    position: relative;
}

.services_development_process .development_process .process_steps .steps {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); */
    display: flex;
    /* overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; */
    user-select: none;
    justify-content: center;  
}

.services_development_process .development_process .process_steps .steps::-webkit-scrollbar {
    height: 4px; 
}

.services_development_process .development_process .process_steps .steps::-webkit-scrollbar-track {
    background: transparent; 
}

.services_development_process .development_process .process_steps .steps::-webkit-scrollbar-thumb {
    background-color: transparent;  
}

.services_development_process .development_process .process_steps .steps::-webkit-scrollbar-thumb:hover {
    background-color: #c9c9c998; 
}

.services_development_process .development_process .process_steps .steps .step_card {
    background: transparent;
    width: fit-content;
    overflow: hidden;
    flex: 0 0 16%;
    scroll-snap-align: start;
    box-sizing: border-box;
    user-select: none;
    pointer-events: auto;
}

.services_development_process .development_process .process_steps .steps .step_number {
    font-size: 24px;
    font-weight: 800;
    color: #178582;
    padding: 10px 10px 0px 15px;
    line-height: 27.48px;
}

.services_development_process .development_process .process_steps .steps .step_content_wrapper {
    display: flex;
  }

.services_development_process .development_process .process_steps .steps .step_icon {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #178582;
    width: 50px;
    position: relative;
    top: 194px;
  }
  
.services_development_process .development_process .process_steps .steps .step_icon svg {
    width: 24px;
    height: 24px;
}
  
.services_development_process .development_process .process_steps .steps .step_content {
    padding: 0px 0px 20px 0px;
}
  
.services_development_process .development_process .process_steps .steps .step_content svg,
.services_development_process .development_process .process_steps .steps .step_content img {
    width: 210px;
    height: auto;
    position: relative;
    left: -44px;
}
  
.services_development_process .development_process .process_steps .steps .step_content h2 {
    font-size: 19px;
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
    margin: 10px 0;
    padding: 0px 7px;
}

.services_development_process .development_process .process_steps .steps .step_content.game_dev h2 {
    font-size: 17.5px;
}
  
.services_development_process .development_process .process_steps .steps .step_content p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 20px;
    padding: 0px 0px 0px 7px;
    width: 140px;
    height: 168px;
}

.services_development_process .development_process .process_steps .steps .step_content.ui_ux p {
    width: 145px;
}

.services_development_process .development_process .process_steps .steps .step_content.game_dev p {
    width: 155px;
}

.services_development_process .development_process .process_steps .scroll_arrow_prev ,
.services_development_process .development_process .process_steps .scroll_arrow_next {
    display: none;
}


/* =========== Technology expertise section=========== */
.services_our_technology_expertise {
    padding: 91px 0px;
}

.services_our_technology_expertise .our_technology_expertise .top_text_area h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 57.25px;
    margin-bottom: 40px;
    text-align: center;
    color: #000000;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 51px 0px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper_2 {
    display: none;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image {
    position: relative;
    top: 60px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .device_image {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .inner_image {
    position: absolute;
    top: 19%;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 87.5%;
    height: 62.2%;
    z-index: 1;
    object-fit: cover;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .device_image_2 {
    display: none;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    flex-direction:column;
    align-items: center;
}   

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .img-fluid {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 10px 0px 7px 0px;
    position: relative;
    z-index: 1;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .html .img-fluid,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .r_02 .img-fluid  {
    margin: 0px 0px 10px 0px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_name {
    position: relative;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    line-height: 12.59px;
    background-color: #F3F3F3;
    padding-bottom: 5px;
    z-index: 1;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_01,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_01,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
    background-color: #F3F3F3;
    z-index: 1;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_01 { 
    top: -2%; 
    left: 40%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_01 {
    top: -2%; 
    right: 40%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02 { 
    top: 35%; 
    left: 27%;  
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02.ui_ux {
    left: 25.5%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02 { 
    top: 35%; 
    right: 27%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02.game_dev {
    right: 26.7%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_03 { 
    top: 50%; 
    right: 78%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_03 {
    top: 50%; 
    left: 78%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_04 { 
    top: 68%; 
    left: 27%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_04 { 
    top: 65%; 
    right: 27%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05 { 
    bottom: 6%; 
    left: 20%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {  
    bottom: 6%; 
    right: 22%; 
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.ui_ux {
    right: 20%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.game_dev {
    right: 21%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .dashed_line {
    border: 2px dashed #178582;
    position: absolute;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
    width: 53px;
    height: 87px;
    top: 9%;
    border-bottom: none !important;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
    left: 44.5%;
    border-left: none !important;
    border-top-right-radius: 18px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line {
    right: 44.5%;
    border-right: none !important;
    border-top-left-radius: 18px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line {
    width: 129px;
    top: 19.5%;
    border-bottom: none !important;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line {
    right: 60.9%;
    height: 71px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line {
    left: 60.9%;
    height: 69px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line.game_dev {
    height: 59px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
    width: 183px;
    border: none;
    border-bottom: 2px dashed #178582 !important;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line {
    left: 22%;
    top: 61%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
    right: 23.8%;
    top: 64%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .l_04_line,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .r_04_line {
    top: 52%;
    width: 45px;
    border: none;
    border-bottom: 2px dashed #178582 !important;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .l_04_line {
    left: 112%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .r_04_line {
    right: 112%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line,
.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
    width: 249px;
    height: 118px;
    top: 77%;
    border-top: none !important;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line {
    left: 22%;
}

.services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
    width: 243px;
    right: 24%;
}


/* =========== Why choose cloudpark section=========== */
.why_choose_cloudpark_section { 
    background-image: url("../img/servicesdetail/bg-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 91px 0px;
}

.why_choose_cloudpark_section .benefits_to_choose_us .top_text_area h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 57.25px;
    text-align: center;
    color: #FFFFFF;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 51px 0px;
    gap: 50px 50px;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item {
    border: 2px solid #FCFCFC;
    border-radius: 10px;
    padding: 20px 11px 21px 27px;
    margin: 10px;
    width: 23.8%;
    box-sizing: border-box;
    text-align: left;
    transition: border-color 0.3s ease;
    position: relative;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item .icon {
    font-size: 12px;
    margin-bottom: 10px;
    color: #F3F3F3;
    background-color: #0A1828;
    position: relative;
    top: -44px;
    display: flex;
    justify-content: center;
    width: 25%;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item .icon img {
    width: 40px; 
    height: auto;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin: -30px 0px 10px 0px;
    color: #FFFFFF;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item p {
    font-size: 10px;
    line-height: 12.1px;
    color: #F3F3F3;
    opacity: 0.6;
    transition: all 0.5s ease-in-out;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item:hover {
    border-color: #178582;
}

.why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item:hover p {
    opacity: 1;
}


/* =========== Contact us of services section=========== */
.services_contact_us_section {
    padding: 91px 0px;
}

.services_contact_us_section .content_area {
    display: flex;
    align-items: center;
}

.services_contact_us_section .content_area .left_side {
    flex: 1;
}

.services_contact_us_section .content_area .right_side {
    flex: 1;
    margin-left: -170px;
}

.services_contact_us_section .content_area .right_side h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 57.25px;
    margin-bottom: 48px;
    color: #000000;
}

.services_contact_us_section .content_area .right_side p {
    font-size: 24px;
    font-weight: 300;
    line-height: 27.48px;
    margin-bottom: 20px;
}

.services_contact_us_section .content_area .right_side .dot_btn_area svg {
    position: relative;
    left: 16%;
}

.services_contact_us_section .content_area .right_side .dot_btn_area .btn {
    position: relative;
    left: 58%;
    top: -68px;
}

@media (max-width: 1399px) {
    .services_details_section{
        padding: 80px 0px 90px 0px;
    }

    .services_what_do_we_offer {
        padding: 0px 0px 100px 0px;
    }

    .services_what_do_we_offer .detail_area .right_side .text {
        padding: 0px 22px 0px 0px;
    }

    .services_what_do_we_offer .detail_area .right_side .text p {
        font-size: 18px;
    }

    .services_what_do_we_offer .detail_area .left_side .image {
        top: auto;
        left: auto;
    }

    .services_what_do_we_offer .detail_area .left_side .effect {
        display: block;
    }

    .services_what_do_we_offer .detail_area .col-lg-7 {
        margin-left: 0px;
        padding-top: 18px;
    }


    .services_development_process .development_process .process_steps .steps {
        display: flex;
        justify-content: normal;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services_development_process .development_process .process_steps .steps .step_card {
        flex: 0 0 16%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }


    /* =========== Technology expertise section=========== */
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_01 {
        left: 39%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_01 {
        right: 39%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.html {
        left: 23%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02 {
        right: 23%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_03 {
        right: 81%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_03 {
        left: 81%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_04 {
        left: 23%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_04 {
        right: 23%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05,
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
        bottom: 4%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05 {
        left: 17%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
        right: 17%;
    }


    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line {
        width: 153px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line {
        left: 19%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
        right: 22%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line {
        left: 19.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
        right: 19.5%;
    }


    .services_contact_us_section .content_area .right_side {
        margin-left: -38px;
    }
    
    .services_contact_us_section .content_area .right_side .dot_btn_area .btn {
        left: 70%;
    }
}

@media (width: 1280px) {
    .services_details_section {
        padding: 130px 0px 90px 0px;
    }
}

@media (height: 1024px) {
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02 {
        left: 23%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02.ui_ux {
        left: 21%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02.game_dev {
        right: 22.7%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.game_dev {
        right: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.ui_ux {
        right: 15%;
    }
}

@media (max-width: 1199px) {
    .services_details_section {
        padding: 60px 0px 20px 0px;
    }

    .services_details_section .top_text_area p {
        font-size: 23px;
        line-height: 28px;
        width: auto;
    }

    .services_details_section {
        padding: 60px 0px;
    }

    .services_what_do_we_offer {
        padding: 30px 0px 70px 0px;
    }

    .services_what_do_we_offer .detail_area .left_side .effect {
        display: inline-block;
    }

    
    .services_development_process .development_process .top_text_area h1 {
        font-size: 38px;
        line-height: 45.25px;
        margin-bottom: 0px;
    }

    .services_development_process .development_process .process_steps .steps .step_card {
        flex: 0 0 50%;
        /* padding-left: 45px; */
    }

    .services_development_process .development_process .process_steps .steps .step_icon {
        top: 128px;
    }

    .services_development_process .development_process .process_steps .steps .step_content svg,
    .services_development_process .development_process .process_steps .steps .step_content img {
        width: 111%;
        height: auto;
        top: -4%;
    }

    .services_development_process .development_process .process_steps .steps .step_content h2,
    .services_development_process .development_process .process_steps .steps .step_content.game_dev h2 {
        font-size: 20px;
    }
    
    .services_development_process .development_process .process_steps .steps .step_content p,
    .services_development_process .development_process .process_steps .steps .step_content.ui_ux p,
    .services_development_process .development_process .process_steps .steps .step_content.game_dev p {
        width: 86%;
        height: 122px;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_prev,
    .services_development_process .development_process .process_steps .scroll_arrow_next {
        position: absolute;
        right: 89.5%;
        top: 107%;
        transform: translateY(-50%);
        width: 30px; 
        height: 30px; 
        border-radius: 50%; 
        background-color: rgba(255, 255, 255, 0.3); 
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        overflow: visible;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 8%;
    }
    
    .services_development_process .development_process .process_steps .scroll_arrow_prev::after {
        content: "";
        position: absolute;
        left: -37%;
        width: 30px;
        height: 10px;
        background-image: url("../img/icons/left-arrow.svg"); 
        background-repeat: no-repeat;
        background-size: contain;
        transition: transform 0.5s ease; 
    } 

    .services_development_process .development_process .process_steps .scroll_arrow_next::after {
        content: "";
        position: absolute;
        left: 52%;
        width: 30px;
        height: 10px;
        background-image: url("../img/icons/right-arrow.svg"); 
        background-repeat: no-repeat;
        background-size: contain;
        transition: transform 0.5s ease;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_prev:hover::after,
    .services_development_process .development_process .process_steps .scroll_arrow_prev:active::after {
        transform: translateX(-4px);
    } 

    .services_development_process .development_process .process_steps .scroll_arrow_next:hover::after,
    .services_development_process .development_process .process_steps .scroll_arrow_next:active::after {
        transform: translateX(4px); 
    }


    /* =========== Technology expertise section=========== */
    .services_our_technology_expertise {
        padding: 91px 0px 182px 0px;
    }

    .services_our_technology_expertise .our_technology_expertise .top_text_area h1 {
        font-size: 38px;
        line-height: 45.25px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .device_image {
        display: none;
    }
    
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .inner_image {
        top: 22%;
        left: 50%;
        width: 93.9%;
        height: 91.86%;
        border-radius: 9px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .sticky_device_image .device_image_2 {
        display: block;
        position: relative;
        z-index: 1;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_01 {
        top: -5%;
        left: 30%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_01 {
        top: -5%;
        right: 30%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02 {
        top: 33%;
        left: 10%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02.ui_ux {
        left: 5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02 {
        top: 33%;
        right: 10%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02.game_dev {
        right: 9.7%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_03 {
        top: 45%;
        right: 92%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_03 {
        top: 45%;
        left: 92%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_04 {
        left: 6%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_04 {
        right: 6%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05 {
        bottom: -11%;
        left: -1%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
        bottom: -11%;
        right: 1%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.ui_ux {
        right: -1%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.game_dev {
        right: -1%;
    }


    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
        top: 6%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line {
        right: 38.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
        left: 38.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line {
        height: 56px;
        top: 20.5%;
        width: 129px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line {
        right: 67.3%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line.ui_ux {
        width: 143px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_02_line {
        left: 67.3%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line {
        left: 8%;
        top: 58%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
        right: 11%;
        top: 60%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
        height: 70px;
        top: 102%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line {
        left: 2%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
        right: 5%;
    }


    .why_choose_cloudpark_section .benefits_to_choose_us .top_text_area h1 {
        font-size: 38px;
        line-height: 45.25px;
    }

    
    .services_contact_us_section .content_area {
        margin-top: -8rem;
    }

    .services_contact_us_section .content_area .left_side {
        flex: 0 0 34%;
    }

    .services_contact_us_section .content_area .right_side {
        margin-left: 18px;
        padding-top: 11rem;
    }

    .services_contact_us_section .content_area .right_side h1 {
        font-size: 38px;
        line-height: 45.25px;
        margin-bottom: 30px;
    }

    .services_contact_us_section .content_area .right_side p {
        font-size: 18px;
    }
    
    .services_contact_us_section .content_area .right_side .dot_btn_area svg {
        width: 45%;
        left: 10%;
        top: -10px;
    }

    .services_contact_us_section .content_area .right_side .dot_btn_area .btn {
        left: 58%;
    }
}

@media (width: 1024px) {
    /* .services_development_process .development_process .process_steps .steps .step_icon {
        top: 80px;
    } */

    .services_development_process .development_process .process_steps .steps .step_content.mobile_dev svg {
        width: 470.5px;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_prev,
    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 92.5%;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 4.5%;
    }


    /* =========== Technology expertise section=========== */
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_01 {
        top: -3%;
        left: 34%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_01 {
        top: -3%;
        right: 34%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02 {
        left: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02.ui_ux {
        left: 13.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02 {
        right: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02.game_dev {
        right: 15.7%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_03 {
        right: 88%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_03 { 
        left: 88%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_04 {
        left: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_04 {
        right: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05 {
        bottom: -1%;
        left: 9%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
        bottom: -1%;
        right: 9%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.ui_ux {
        right: 7%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.game_dev {
        right: 7%;
    }


    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
        top: 8.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_01_line {
        left: 40.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_01_line {
        right: 40.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_02_line.ui_ux {
        width: 129px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line {
        left: 12%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
        right: 14%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .l_04_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container .r_04_line {
        width: 55px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line,
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
        top: 93%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line {
        left: 12%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_05_line {
        right: 12%;
    }
}

@media (max-width: 991px) {
    .services_details_section {
        padding: 40px 0px;
    }

    .services_details_section .top_text_area p {
        font-size: 21px;
        line-height: 26px;
    }

    .services_what_do_we_offer {
        padding: 40px 0px 50px 0px;
    }

    .services_what_do_we_offer .detail_area .left_side .image {
        text-align: center;
        top: -28px;
    }

    .services_what_do_we_offer .detail_area .right_side .text {
        text-align: center;
        padding: 0px 30px;
        margin-bottom: 30px;
    }

    .services_development_process .development_process .process_steps .steps .step_content svg,
    .services_development_process .development_process .process_steps .steps .step_content img {
        width: 114%;
    }


    .why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item {
        flex: 0 0 40%;
    }

    .why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item p {
        font-size: 12px;
    }
}

@media (width: 912px) {
    .services_development_process .development_process .process_steps .scroll_arrow_prev {
        right: 91.5%;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 3%;
    }
}

@media (height: 820px) {
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02 {
        left: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_02.ui_ux {
        left: 12.5%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02 {
        right: 16%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_02.game_dev {
        right: 15.7%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_04 {
        left: 17%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_04 {
        right: 17%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05 {
        right: 2%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.r_05.game_dev {
        right: 1%;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_container.l_05 {
        left: 3%;
    }
    

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_03_line, 
    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .r_03_line {
        width: 192px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper .tech_logos .logo_wrapper .l_05_line {
        left: 6%;
    }
}

@media (max-width: 767px) {
    .services_details_section{
        padding: 30px 0px 30px 0px;
    }

    .services_details_section .top_text_area p {
        font-size: 20px;
        line-height: 25px;
    }

    .services_what_do_we_offer {
        padding: 30px 0px;
    }

    .services_what_do_we_offer .detail_area .left_side .image {
        margin-bottom: 40px;
    }

}

@media (max-width: 575px) {
    .services_details_section {
        padding: 30px 0px;
    }

    .services_details_section .top_text_area p {
        font-size: 18px;
        line-height: 23px;
    }

    .services_details_section .top_text_area {
        margin-bottom: 30px;
    }

    .services_what_do_we_offer {
        padding: 0px 0px 30px 0px;
    }

    .services_what_do_we_offer .detail_area .col-lg-5 {
        background-color: #F3F3F3;
    }

    .services_what_do_we_offer .detail_area .right_side .text {
        padding: 0px 20px;
        margin-bottom: 0px;
    }

    .services_what_do_we_offer .detail_area .right_side .text p {
        font-size: 16px;
        line-height: 20px;
    }

    .services_what_do_we_offer .detail_area .left_side .image {
        top: auto;
        margin-bottom: 20px;
    }

    .services_what_do_we_provide_section .detail_area .field_box .image img {
        width: 40px;
    }


    .services_development_process .development_process .process_steps {
        padding: 20px 0px;
    }

    .services_development_process .development_process .process_steps .steps .step_card {
        flex: 0 0 100%;
        padding-left: 45px;

    }

    .services_development_process .development_process .process_steps .steps .step_content p {
        width: 77%;
    }

    .services_development_process .development_process .process_steps .steps .step_content svg,
    .services_development_process .development_process .process_steps .steps .step_content img {
        width: 100%;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_prev,
    .services_development_process .development_process .process_steps .scroll_arrow_next {  
        right: 84%;
        top: 103%;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 7%;
    }


    .services_our_technology_expertise {
        padding: 91px 0px;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper {
        display: none;
    }

    .services_our_technology_expertise .our_technology_expertise .technology_wrapper_2 {
        display: block;
    }


    .why_choose_cloudpark_section .benefits_to_choose_us .benefits_grid .benefit_item {
        flex: 0 0 85%;
    }


    .services_contact_us_section .content_area {
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 0px;
    }

    .services_contact_us_section .content_area .left_side {
        margin-bottom: 25px;
        flex: 1;
    }
    
    .services_contact_us_section .content_area .right_side {
        margin-left: 0px;
        padding: 0px 12px;
    }

    .services_contact_us_section .content_area .right_side .dot_btn_area svg {
        width: 54%;
        left: 0%;
        top: 0px;
    }

    .services_contact_us_section .content_area .right_side .dot_btn_area .btn {
        top: -50px;
        left: 58%;
    }
}

@media (width: 540px) {
    .services_development_process .development_process .process_steps .steps .step_icon {
        top: 90px;
    }

    .services_development_process .development_process .process_steps .steps .step_content p {
        height: 100px;
    }

    .services_development_process .development_process .process_steps .steps .step_content svg,
    .services_development_process .development_process .process_steps .steps .step_content img {
        top: -6%;
    }

    .services_development_process .development_process .process_steps .steps .step_content.mobile_dev svg {
        width: 426.99px;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_prev,
    .services_development_process .development_process .process_steps .scroll_arrow_next {
        top: 102%;
        right: 88%;
    }

    .services_development_process .development_process .process_steps .scroll_arrow_next {
        right: 6%;
    }


    .services_contact_us_section .content_area .right_side .dot_btn_area .btn {
        top: -62px;
    }
}

@media (max-width: 480px) {
    .services_details_section .top_text_area p {
        font-size: 17px;
        line-height: 21px;
    }

    .services_details_section .top_text_area {
        margin-bottom: 20px;
    }
}

@media (max-width: 376px) {
    .services_development_process .development_process .process_steps .steps .step_content p,
    .services_development_process .development_process .process_steps .steps .step_content.ui_ux p,
    .services_development_process .development_process .process_steps .steps .step_content.game_dev p  {
        width: 89%;
    }
}

@media (max-width: 345px) {
    #services_detail_breadcrumb .breadcumb_area ul li a, #services_detail_breadcrumb ul li h5 {
        font-size: 15px;
        line-height: 24px;
    }

    
    .services_development_process .development_process .process_steps .steps .step_content p {
        width: auto;
    }


    .services_contact_us_section .content_area .right_side p {
       text-align: justify;
    }

    .services_contact_us_section .content_area .right_side .dot_btn_area .btn {
        left: 56%;
    }
}