@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --font-family: "poppins", 'sans-serif';
    --bg-gradient: linear-gradient(to right, #6cb3ee, #4aa1c4);
    --text-gray: #f8f9fa5d;
    --text-light: #d1cece;
    --text-white: white;
    --text-dark: #000000;
    --text-dark2: #031c41d4;
    --text-red: #0344AA;
    --bg-blue: rgb(165, 172, 243);
    --bg-red: rgb(254, 247, 252);
    --bg-yellow: rgb(255, 255, 246);
    --bg-purple: rgb(168, 243, 243);
    --box-shadow: 0px 0px 50px 0px rgb(233, 223, 223);
    --bg-gradient-indigo: linear-gradient(to right, #8e2de2, #4a00e0);
    --bg-gradient-peach: linear-gradient(to right, #fff7f3, #fff7f3);
    --bg-gradient-white: linear-gradient(to right, #3f3e3e9f, #fff7f3);
    --bg-image1: url('images/bg1.jpg');
    --bg-image2: url('images/grop-one.jpg');
    --bg-image3: url('images/bg3.jpg');
    --bg-image: url('b1 (2).jpg');
    --bg-gradient-blue: linear-gradient(to right, #a5c6f5, #b9cbf1);
    --bg-pal1: rgb(214, 240, 247);
    --bg-pal2: rgb(187, 180, 243);
    --bg-pal3: rgb(192, 214, 243);


}

*>* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
}

body p {
    font-size: 18px;
}



a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.text-sm {
    font-size: 1em;
    line-height: 1.5em;
}

.text-center {
    text-align: center;
}

.font-poppins {
    font-family: var(--font-family);
    line-height: 30px;
}

.text-md {
    font-size: 1.5em;

}

.text-lg {
    font-size: 2.2em;
    line-height: 3rem;
}

.text-xl {
    font-size: 3em;
}

.text-2xl {
    font-size: 5em;
}

.font-bold {
    font-weight: 900;


}

.bg-pal1 {
    background: var(--bg-pal1);
    border-radius: 20px;
}

.bg-pal2 {
    background: var(--bg-pal2);
    border-radius: 20px;
}

.bg-pal3 {
    background: var(--bg-pal3);
    border-radius: 20px;
}

.flex {
    display: flex;

}

.flex-column {
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-initial {
    flex: 0 1 auto;
}

.flex-grow {
    flex-grow: 1;

}

.justify-content {
    justify-content: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.containers {
    width: 100%;
    height: auto;
}

.container-fluid {
    width: 100%;
    height: auto;
}


.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-10 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.py-15 {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-10 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.m-t {
    margin-top: 15rem;
}

.m-l {
    margin-left: 7rem;
}

.link {
    color: black;
    font-weight: bold;

}


.link:hover {
    color: #0344AA;
}



.btn {
    border: none;
    cursor: pointer;
}

.btn-shadow {
    box-shadow: var(--box-shadow);
}

.btn-primary {
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-weight: bold;

}

.btn-shadow {
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--bg-gradient-indigo);
}

.bg-cover {
    background: var(--bg-cover);
    object-fit: fill;
}

.d-inline {
    display: inline-block;
}

.d-block {
    display: block;
}

.grid {
    display: grid;
}



.col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}


.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.text-dark {
    color: var(--text-dark);
}


.bg-txt {
    background: var(--bg-back-txt);
}

.text-white {
    color: var(--text-white);
}

.text-blue {
    color: var(--text-red);
}

.text-light {
    color: var(--text-light);
}

.text-red {
    color: var(--bg-red);
}

.text-bold {
    font-weight: bolder;
}

.text-purple {
    color: var(--bg-purple);
}

.text-yellow {
    color: var(--bg-yellow);
}

.text-dark2 {
    color: var(--text-dark2);
}

.bg-gradient {
    background: var(--bg-gradient);
}

.bg-gradient-indigo {
    background: var(--bg-gradient-indigo);
}

.bg-gradient-peach {
    background: var(--bg-gradient-peach);
}

.bg-gradient-red {
    background: var(--bg-red);
}

.bg-gradient-blue {
    background: var(--bg-blue);
}

.bg-gradient-yellow {
    background: var(--bg-yellow);
}

.bg-gradient-purple {
    background: var(--bg-purple);
}

.img {
    width: 300px;
}

.logo-img1 {
    width: 100px;
    margin: 5px;
}

.logo-img2 {
    width: 150px;
    padding: 10px;
}

.media-icon h4 {
    margin-top: 20px;
}

.nav-brand {
    margin-left: 30px;
    margin-top: 10px;
}

.d-img {
    width: 25px;
    /* margin-top: 10px; */
}

.flag-img {
    width: 40px;
}

.flag-img1 {
    width: 40px;
}

.image {
    width: 80px;
    height: 80px;
}



.flag-1 {
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
    margin-right: 100px;
}

.flag {
    background-color: rgb(193, 193, 241);
}



.flag-1 h3 {
    margin-top: 7px;
    color: #0453BC;
}

/* scroll-bar */
#progress {
    /* background-color: #0863f5; */
    position: fixed;
    bottom: 20px;
    left: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    z-index: 1000;

}

#progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #f1f4f6;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #0344AA;
}


#nav {
    position: relative;
    top: 0px;
    left: 0;
    padding: 0rem 0rem;
    /* background-color:#F6F7F9; */
    flex-direction: column;

}

#nav .collapse {
    max-height: 0px;
    overflow-y: hidden;
    transition: all 0.9s ease;
}

#nav .collapse ul {
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 5rem;
}

#nav .collapse ul>li {
    padding: 0 1.5rem;
    line-height: 3rem;
    font-size: 1.3rem;
}

#nav .toggle-btn>button {
    font-size: 2.5em;
    font-weight: bolder;
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem;
    color: blue;
    background-color: transparent;
}

#nav .flex-initial ul button {
    display: none;
}

.active {
    max-height: 60vh !important;
}

.active-link{
    color: #0863f5;
}

.social-btn {
    padding: 17px;
    font-size: 25px;
    color: #0863f5;
    margin-top: -7px;
}



.social-btn li a {
    margin: 10px;
}

#service {
    margin-top: 100px;
}

#about {
    margin-top: 100px;
}

/* BANNER-AREA */
.banner-area {
    flex-wrap: wrap;
    position: relative;
}

.bg-image{
    background-image:linear-gradient(rgba(167, 164, 164, 0.75),rgba(167, 164, 164, 0.75)), url(images/city-min.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 100vh;
    backdrop-filter: opacity(50%);

}

.main-banner {
    /* background-color:; */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.title .auto-type .main-p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
}


.title h1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color:#0A49AD;
}

.title p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: black;
    font-weight: 900;
    font-size: 20px;
    margin-top: 40px;
}

.para-text {
    width: 80%;
    font-weight: 700;
}

.wrapper {
    display: flex;
}

.title {
    margin-top: 70px;
}

.bi{
    color: #0863f5;
}


.wrapper h1 {
    font-weight: 900;
    font-size: 50px;
    line-height: 100px;
}

.connect-btn {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    padding-left: 50px;
    padding-right: 50px;
}

.connect-btn:hover {
    background-color: #4d8ee3;

}



.connect-btn a {
    font-family: var(--font-poppins);
    color: #0863f5;
    font-size: 15px;
    font-weight: 700;
}

#site-main .banner-area .banner-title {
    height: 70vh;
    padding-left: 4rem;

}



/* AGENCY-AREA */

#site-main .agency-area {
    padding: 5em 0;
}

.icon {
    width: 100px;

}

.container-service ul {
    display: flex;
    flex-direction: column;
}

.nav-service {
    display: flex;
}

.container-acc {
    width: 30%;
    /* max-width: 500px; */
    /* margin: 0px auto; */
}

.accordion-sec {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-left: 150px;
}

.accordion {
    margin-top: 20px;
    justify-content: space-around;
}



button.accordion {
    width: 50%;
    background-color: whitesmoke;
    border: none;
    border-radius: 5px;
    outline: none;
    text-align: center;
    padding: 15px 20px;
    font-size: 18px;
    /* color: #0344AB; */
    cursor: pointer;
    transition: background-color 0.2s linear;
}

.acc-img {
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



button.accordion.is-open:after {
    content: '\f056';
}

button.accordion:hover,
button.accordion.is-open {
    background-color: #ddd;
}



/* 
.service-cards{
    display: flex;
   justify-content: space-around;
   column-gap: 30px;
   flex-wrap: wrap;
   background-color: #f6f7f9;
   padding: 60px;
}

.card h4{
    font-weight:bolder;
    margin-top: 10px;
}


.card img{
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



.card:hover{
    background-color: white;
    border: 1px solid blue;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transform: scale(1);
} */



#home {
    width: 80px;
}

#software {
    width: 80px;
}

#hotel {
    width: 90px;
}

#group {
    width: 110px;
}

/* .row {
    display: flex;
    flex-wrap: wrap;
  }
  .row h1 {
    width: 100%;
    text-align: center;
    font-size: 3.75em;
    margin: 0.6em 0;
    font-weight: 600;
    color: #070024;
  }
  .column {
    padding: 1em;
  }
  .card {
    padding: 3.1em 1.25em;
    text-align: center;
    background: linear-gradient(0deg, #397ef6 10px, transparent 10px);
    background-repeat: no-repeat;
    background-position: 0 0.62em;
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
    transition: 0.5s;
    cursor: pointer;
  }
  .card .icon {
    font-size: 2.5em;
    height: 2em;
    width: 2em;
    margin: auto;
    background-color: #397ef6;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
  }
  .icon:before {
    position: absolute;
    content: "";
    height: 1.5em;
    width: 1.5em;
    border: 0.12em solid #397ef6;
    border-radius: 50%;
    transition: 0.5s;
  }
  .card h3 {
    font-size: 1.3em;
    margin: 1em 0 1.4em 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #070024;
  }
  .card p {
    line-height: 2em;
    color: #625a71;
  }
  .card:hover {
    background-position: 0;
  }
  .card:hover .icon:before {
    height: 2.25em;
    width: 2.25em;
  } */

/* pro */

.pro1 {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 50px;
    box-shadow: var(--box-shadow);
    /* flex-wrap: wrap; */
}

.pro2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 50px;
    box-shadow: var(--box-shadow);
    /* flex-wrap: wrap; */
}

.pro3 {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 50px;
    box-shadow: var(--box-shadow);
    /* flex-wrap: wrap; */
}

.pro4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 50px;
    box-shadow: var(--box-shadow);
    /* flex-wrap: wrap; */
}

.pro5 {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 50px;
    box-shadow: var(--box-shadow);
    /* flex-wrap: wrap; */
}

.pro-content {
    /* margin-top: 20px; */
    width: 50%;
    background-color: #a0bff2;
    border-radius: 10px;
    color: white;
}

#text {
    margin-top: 30px;
    margin-left: 10px;
    font-size: 2.5em;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 10px;
    color: #0863f5;
    text-shadow: -1px 1px #d2ddef,
        -2px 2px #dbe6f7,
        -3px 3px #a0bff2,
        -4px 4px #a0bff2,
        -5px 5px #a0bff2,
        -6px 6px #a0bff2,
        -7px 7px #a0bff2,
        -8px 8px #a0bff2,
        -9px 9px #a0bff2,
        -10px 10px #a0bff2,
        -11px 12px #a0bff2,
        -12px 12px #a0bff2,
        -13px 13px #a0bff2;
}


.pro-text {
    margin-top: 30px;
    margin-left: 10px;
    font-size: 3em;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 10px;
    color: #0863f5;
    text-shadow: -1px 1px #d2ddef,
        -2px 2px #dbe6f7,
        -3px 3px #a0bff2,
        -4px 4px #a0bff2,
        -5px 5px #a0bff2,
        -6px 6px #a0bff2,
        -7px 7px #a0bff2,
        -8px 8px #a0bff2,
        -9px 9px #a0bff2,
        -10px 10px #a0bff2,
        -11px 12px #a0bff2,
        -12px 12px #a0bff2,
        -13px 13px #a0bff2;
}

.cssanimation,
.cssanimation span {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.cssanimation span {
    display: inline-block
}

.hu__hu__ {
    animation: hu__hu__ infinite 2s ease-in-out
}

@keyframes hu__hu__ {
    50% {
        transform: translateY(30px)
    }
}


.box-item {
    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
}

.box-item-1 {

    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
}

.box {
    border: 2px solid #0863f5;
    margin: 10px;
    border-radius: 20px;
}

/* DIGITAL-SEC */

#site-main .life-area>.grid {
    column-gap: 10em;
}

#site-main .life-area .grid-images {
    background-color: #edeff3;
    border-radius: 50px;
    /* padding-left: 20px; */
    padding-top: 0px;
    display: grid;
    grid-template-columns: repeat(20, minmax(30px, 1fr));
    grid-template-rows: repeat(8, minmax(50px, 1fr));
}

#site-main .life-area .grid-images .item-one {
    /* background: rgb(184, 228, 240); */
    grid-column-start: 1;
    grid-column-end: 8;
    grid-row-start: 2;
    grid-row-end: 5;
    background: var(--bg-image2) no-repeat;
    background-size: cover;
    border-radius: 8px;
    /* filter: blur(0.5px); */
    width: 100%;
    height: 100%;

}

#site-main .life-area .grid-images .item-two {
    background: rgb(114, 103, 203);
    grid-column-start: 9;
    grid-column-end: 20;
    grid-row-start: 1;
    grid-row-end: 4;
    background: var(--bg-image3) no-repeat;
    background-size: cover;
    border-radius: 8px;
    /* filter: blur(0.5px); */
    width: 100%;
    height: 100%;

}

#site-main .life-area .grid-images .item-three {
    grid-area: 3/5/7/20;
    background: var(--bg-image1) no-repeat;
    background-size: cover;
    border-radius: 8px;
    /* filter: blur(0.5px); */
    width: 100%;
    height: 100%;
    z-index: 10;
}


/* COUNTING-SEC */



#site-main .counting-area .count-box {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

#site-main .counting-area .count-box .grid {
    display: inline-grid;
    border-radius: 10px;
    background-color: whitesmoke;
}

#site-main .counting-area .count-box .grid>div {
    background-color: white;
    padding: 1em 1.5em;
    text-align: center;
    box-shadow: var(--box-shadow);
}

/* SERVICE-AREA */

.proposal {
    background-color: #b9cbf1;
}


#site-main .card-area .grid {
    padding: 40px;
    column-gap: 5em;
    row-gap: 5em;
    border-radius: 50px;

}

#site-main .article-area .cards .image {
    width: 100px;
    height: 100px;
}



#site-main .article-area .grid {
    column-gap: 5em;
    padding: 40px;
}

#site-main .article-area .card article {
    border-radius: 20px;
}

#site-main .agency-area {
    padding: 0em 0;
}

#site-main .ready-area .flex {
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.popup {
    width: 600px;
    border-radius: 20px;
    position: absolute;
    background: #9a9d9e;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;

}

.popup2 {
    width: 600px;
    border-radius: 20px;
    position: absolute;
    background: #9a9d9e;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;

}

.popup3 {
    width: 600px;
    border-radius: 20px;
    position: absolute;
    background: #9a9d9e;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;

}


.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.open-popup2 {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.open-popup3 {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}


.popup img {
    width: 600px;
}

.popup2 img {
    width: 600px;
}

.popup3 img {
    width: 600px;
}

.popup button {
    width: 20%;
    margin-top: 20px;
    padding: 10px 0;
    color: white;
    outline: none;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    background-color: #0a49ad;
    border-radius: 20px;
    border: none;
}

.popup2 button {
    width: 20%;
    margin-top: 20px;
    padding: 10px 0;
    color: white;
    outline: none;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    background-color: #0a49ad;
    border-radius: 20px;
    border: none;
}

.popup3 button {
    width: 20%;
    margin-top: 20px;
    padding: 10px 0;
    color: white;
    outline: none;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    background-color: #0a49ad;
    border-radius: 20px;
    border: none;
}


.contact-button {
    margin-top: 50px;
    border-radius: 10px;
    width: 30%;
}

.contact-button button{
    background-color: transparent;
    border: none;
    color: white;
    margin-top: 0px;
    padding-bottom: 20px;
    font-weight: 900;
}


.contact-button a {
    padding: 10px;
}

.map {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px;
}

.flag-img1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.map-img img {
    width: 100%;
}

.text1 {
    color: white;
    background-color: #b3caf0;
    padding: 10px;
    border-radius: 20px;
}

.text2 {
    color: white;
    background-color: #b3caf0;
    padding: 10px;
    border-radius: 20px;
    /* margin-right: 70px; */
}



.filter-blur {
    background: #b3caf0;
}



/* FOOTER-SEC */

#footer {
    border-top: 2px solid var(--text-light);
    background-color: #F6F7F9;

}

#footer .grid {
    column-gap: 1em;
    padding: 1em 2em;

}

#footer .grid input .Subscribe-text {
    border: none;
    background-color: var(--text-light);
    padding: 2em;
    font-size: 1em;
    color: var(--text-dark2);
    font-family: var(--font-poppins);
}

#footer .grid input .Subscribe-text:focus {
    border: none;
    outline: none;
}

#footer .grid button .btn-go {
    background-color: whitesmoke;
    padding: 2em 2em;
    font-family: var(--font-poppins);
}

#footer .grid button .btn-go:hover {
    background-color: var(--bg-blue);
    color: var(--text-white);
}


.article-area .col-1 {
    margin: auto;
    justify-content: center;
}



/* MEDIA-ICONS */

.media-icon {
    display: flex;
    justify-content: center;

}

.media-icon ul li {
    display: inline-block;
    width: 100px;
    height: 100px;
    box-shadow: 3px 3px 10px var(--box-shadow),
        -4px -4px 10px white;
    margin-top: 20px;
    text-align: center;
    line-height: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: 1s;
}

/* CONTACT-PAGE */
.contact-container {
    width: 100%;
    background-image: url(images/contact-min.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border-radius: 5px;
    padding: 20px 60px 40px 40px;
    /* box-shadow: var(--box-shadow); */
}

.contact-container .topic {
    color: red;
    font-weight: 900;
    font-size: 20px;
}

.contact-container .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container .content .left-side {
    width: 25%;
    height: 100%;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
    background-color: #0863f5;
    border-radius: 20px;

}

.content .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -55px;
    top: 10%;
    transform: translate(-50%);
    background-color: #000000;
}

.contact-container .content .right-side {
    width: 75%;
    margin-left: 70px;
    margin-bottom: 20px;
}

.contact-container .content .left-side .details {
    margin: 15px;
    text-align: center;
}

.content .left-side .details i {
    font-size: 30px;
    color: white;
}

.content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
    font-size: 14px;
    color: white;
}


.content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: white;
}

.content .right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 10px 0;

}

.content .right-side .input-box input,
.content .right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    background: #f3f0f0;
    border-radius: 10px;
    font-size: 16px;
    padding: 0 10px;
    resize: none;
}

.right-side button {
    display: inline-block;
    margin-top: 20px;
}

.right-side .message-box {
    min-height: 110px;
}

.contact-button {
    width: 100%;
    color: #000000;
    left: -50%;
    top: 10px;
}


/* TESTIMONIALS */
section .test {
    font-family: var(--font-family);
    float: left;
    position: relative;
    padding: 30px 0;
    background: #fcfcfd;
    z-index: 1;
    width: 100%;
}

.section-title {
    float: left;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}

.section-title p {
    color: #7d93b2;
    font-size: 13px;
    line-height: 20px;
    max-width: 550px;
    margin: 0 auto;
}

.section-title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #0453BC;
    font-size: 34px;
    font-weight: 800;
    position: relative;
}

.section-separator {
    float: left;
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.section-separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 3px;
    width: 50px;
    border-radius: 3px;
    z-index: 2;
    background-color: #0453BC;
    margin-left: -25px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.listing-carousel-button {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    z-index: 100;
    cursor: pointer;
    background: #0453BC;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
    transition: all 200ms linear;
    outline: none;
}

.listing-carousel-button.listing-carousel-button-next {
    right: -30px;
    padding-right: 20px;
    border-radius: 60px 0 0 60px;
}

.listing-carousel-button.listing-carousel-button-prev {
    left: -30px;
    padding-left: 20px;
    border-radius: 0 60px 60px 0;
}

.listing-carousel-button.listing-carousel-button-next:hover {
    right: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.listing-carousel-button.listing-carousel-button-prev:hover {
    left: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.testi-item {
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.9;
}

.testimonials-text {
    /* font-family: var(--font-poppins); */
    padding: 75px 50px 75px;
    overflow: hidden;
    background: #f5f6fa;
    border: 1ps solid #f1f1f1;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    bottom: 25px;
    right: 30px;
}

.testimonials-text-before {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    top: 25px;
    left: 30px;
}

.testimonials-text .listing-rating {
    float: none;
    display: inline-block;
    margin-bottom: 12px;
}

.listing-rating i {
    color: #0453BC;
}

.testimonials-avatar h3 {
    font-weight: 600;
    color: #7d93b2;
    font-size: 18px;
}

.testimonials-avatar h4 {
    font-weight: 400;
    font-size: 12px;
    padding-top: 6px;
    color: #0453BC;
}

.testimonials-carousel .swiper-slide {
    padding: 30px 0;
}

.testi-avatar {
    position: absolute;
    left: 50%;
    top: -30px;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    z-index: 20;
}

.testi-avatar img {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 100%;
    border: 6px solid #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.swiper-slide-active .testimonials-text {
    background: #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.testimonials-text p {
    color: #878c9f;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}

.text-link {
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
    left: 50%;
    width: 200px;
    margin-left: -100px;
}

.swiper-slide-active .testi-item {
    opacity: 1;
    transform: scale(1.0);
}

.tc-pagination {
    float: left;
    margin-top: 10px;
    width: 100% !important;
}

.tc-pagination_wrap {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

.tc-pagination2 {
    float: none;
    display: inline-block;
    padding: 14px 0;
    background: #fff;
    border-radius: 30px;
    min-width: 250px;
    border-bottom: 0;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
    opacity: 1;
    background: #384f95;
    margin: 0 2px;
    width: 10px;
    height: 10px;
    transition: all 300ms ease-in-out;
}

/* BRAND SECTION */

.client-img img {
    width: 200px;
    margin: 20px;
}

#client-image {
    width: 160px;
}

.client-images {
    width: 220px;
}

.island-img {
    margin-top: 100px;
}

/* .client-img{
    background-color:#cbc4c4 ;
} */
.iso {
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.iso-img img {
    width: 150px;
}

.iso-img2 img {
    width: 180px;
    margin-top: 10px;
}


body, html{
    overflow-x: hidden;
    max-width: 100%;
}



/* MEDIA-QUERIES */
@media (max-width:540px) {

    body, html{
        overflow-x: hidden;
        max-width: 100vh;
    }

    #site-main .life-area .grid-images {
        background-color: #edeff3;
        border-radius: 50px;
        /* padding-left: 20px; */
        padding-top: 0px;
        display: grid;
        grid-template-columns: repeat(20, minmax(30px, 1fr));
        grid-template-rows: repeat(8, minmax(50px, 1fr));
    }

    #site-main .life-area .grid-images .item-one {
        width: 100%;
    }

    #site-main .life-area .grid-images .item-two {
        display: none;
    } 

    #site-main .life-area .grid-images .item-three {
        width: 50%;
    }

    .pro-content {
        margin: 20px;
        width: 100%;
        margin-top: 50px;
    }

    #progress {
        width: 50px;
        height: 50px;
    }

    


    .pro-text {
        margin-left: 15px;
        justify-content: center;
        font-size: 1.8em;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #text {
        font-size: 0.6em;
    }

    #exe {
        font-size: 1.4em;
        margin-right: 50px;
    }

    #commit {
        font-size: 1.3em;
    }


    #site-main .life-area .grid-images {
        padding-left: 0px;
    }

    .text1 {
        color: white;
        background-color: none;
        padding: 10px;
        border-radius: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        /* margin-top: 120px; */
    }

    #nav ul li a {
        color: white;
        font-size: 20px;
    }



    .text2 {
        /* margin-bottom: 110px; */
        color: white;
        /* background-color: #accbf3; */
        padding: 10px;
        border-radius: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;

    }

    .title p {
        color: white;
    }

    .map {
        background-size: 100%;
    }

    .wrapper h1 {
        margin-left: 20px;
        font-weight: 900;
        font-size: 28px;
    }

    .container-acc {
        width: 100%;

    }

    .accordion-content {
        margin-left: 20px;
        margin-right: 10px;
    }

    .accordion {
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .accordion-sec {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-left: 0px;
    }

    .title {
        margin-top: 10px;
    }

    .social-btn {
        display: none;
    }

    #service h3 {
        font-size: 15px;
    }

    .card {
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .card h4 {
        text-align: center;
    }

    .card img {
        width: 70px;
        margin-top: 15px;
    }

    #home {
        width: 60px;
    }

    #hotel {
        width: 70px;
    }

    #software {
        width: 70px;
    }

    #group {
        width: 90px;
    }

    .listing-carousel-button.listing-carousel-button-next {
        overflow: none;
    }



    .img-map img {
        width: 250px;
    }

    .map {
        column-gap: 20px;
    }


    .flag-1 {
        column-gap: 10px;
        margin: 5px;
    }

    .flag-1 h3 {
        /* margin-top: 15px; */
        font-size: 13px;
    }

    .img {
        margin-top: 20px;
        width: 200px;
    }

    .flag-img {
        width: 25px;
    }


    .client-img img {
        width: 100px;
    }

    #client-image {
        width: 100px;
    }

    #site-main .banner-area .branding {
        display: block;
        margin-left: auto;
        margin-right: auto;
        font-weight: 5px;
        padding-left: 0%;
        padding-right: 0%;

    }

    .title {
        margin-top: 50px;
    }


    #site-main .banner-area .banner-title {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-left: 10px;
        font-size: 20px;
    }

    #site-main .banner-area p {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        font-size: 15px;
    }


    .contact-container .content {
        flex-direction: column-reverse;
    }

    .contact-container .content .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
    }
    /* .contact-container .content .left-side::before {
        display: none;
    } */

    .listing-carousel-button.listing-carousel-button-next {
        display: none;
    }

    .contact-container .content .right-side {
        width: 100%;
        margin-left: 0px;
    }

    .contact-container{
        background-color: #7ba3e5;
    }

    .image {
        width: 50px;

    }

    .popup3 {
        width: 350px;
    }

    .popup {
        display: none;
    }

    .popup2 {
        display: none;

    }

    .popup3 {
        display: none;
    }

    #service {
        margin-top: 0px;
    }



    .prop img {
        width: 200px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .media-icon {
        text-align: center;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }


    .box-item {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .box-item-1 {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .iso-img img{
        width:100px ;
    }

    .iso-img2 img{
        width: 130px;
        margin-top: 5px;
    }
    .iso{
        margin-right: 50px;
    }
    #progress-value {
        display: block;
        height: calc(100% - 15px);
        width: calc(100% - 15px);
        background-color: #f1f4f6;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 25px;
        color: #0344AA;
    }

}

@media (min-width:540px) and (max-width:768px) {
     
    body, html{
        /* max-width: 100%; */
        overflow-x: hidden;
    }
    .box-item {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .box-item-1 {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }


    .pro-content {
        margin: 20px;
        width: 100%;
        margin-top: 50px;
    }

    .pro-text {
        margin-left: 15px;
        font-size: 1.8em;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .social-btn {
        display: none;
    }

    #site-main .banner-area {
        margin-top: 0px;
        /* background-image: none; */
    }

    .wrapper h1 {
        font-size: 35px;

    }

    .accordion-sec {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-left: 0px;
    }

    #nav ul li a {
        color: #0344AA;
        font-size: 20px;
    }


    #home {
        width: 80px;
    }

    #software {
        width: 80px;
    }

    #hotel {
        width: 90px;
    }

    #group {
        width: 110px;
    }

    button.accordion {
        width: 100%;
    }

    .para-text {
        width: 90%;
        margin-right: 50px;
    }


    .prop {
        display: none;
    }

    .para p {
        display: none;
    }


    body {
        height: 100%;
        overflow-x: hidden;
    }

    .article-area {
        padding-left: 30px;
    }


    .sm-text-xl {
        font-size: 2em;
    }

    .md-text-left {
        text-align: left;
    }

    .md-mx-initial {
        margin: initial;
    }

    .sm-px-10 {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }



}




@media (min-width:768px) {
    .md-text-left {
        text-align: left;
    }

    .md-col-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image {
        width: 100px;
        height: 100px;
        overflow-x: hidden;
    }





}


@media (min-width:1024px) {

    #nav .toggle-btn>button {
        display: none;
    }

    .prop {
        display: none;
    }

    .collapse {
        max-height: initial !important;
    }

    .collapse ul {
        flex-direction: row !important;
    }

    #nav {
        flex-direction: row !important;
        background-color: none;
    }

    #nav .flex-initial ul button {
        display: flex;
        margin-top: 10px;
    }

    .active {
        max-height: 100% !important;
    }

    .lg-col-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));

    }

    .lg-col-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }



    .lg-col-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sm-text-xl {
        /* margin-top: 70px; */
        font-size: 3em;
    }




    .main-banner {
        display: flex;
    }

    .main-image {
        justify-content: flex-end;
        justify-items: flex-end;
    }





}


@media (min-width:1280px) {
    #nav .toggle-btn>button {
        display: none;
    }

    .lg-col-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg-col-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }



    .lg-col-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}