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


body{
  font-family: "Open Sans", sans-serif;
  color: #FFF;
  font-size: 20px;
}
a:hover{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.fa{
  cursor: pointer;
}
.theme-white{
  width: 300px;
  padding: 5px;
  border-radius: 8px;
  background-color: #12123F;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
}

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #12123F;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 2s ease;
}

.blob-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}

.blob {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #12123F, #15B9F0);
  border-radius: 33% 67% 61% 39% / 49% 33% 67% 51%;
  animation: morph 4s infinite ease-in-out, pulse 2s infinite;
}

@keyframes morph {
  0% {
    border-radius: 33% 67% 61% 39% / 49% 33% 67% 51%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 33% 67% 61% 39% / 49% 33% 67% 51%;
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.company-name {
  font-size: 50px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #43C2C5, #15B9F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeInText 1s 1.5s forwards;
  text-align: center;
}

.tagline {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInText 1s 2.5s forwards;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/*/////////////////////////////////////////////////////////////////////////////////
                          carousel BAR
//////////////////////////////////////////////////////////////////////////////// */
.projects-section {
  background-color: #fff;
  padding: 50px;
}
.projects-section .heading h1 {
  padding-bottom: 10px;
}
#imageContainer .card {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 8px;
  height: 100%;
  width: 270px;
}
.card-img-top {
  height: 180px;
  object-fit: contain;
  padding: 4px;
}
.card-body .btn-skyblue {
  outline: none;
  border: 1px solid #fff;
  padding: 6px 12px;
}
.card-body p {
  line-height: normal;
  color: #000;
}
.modal-dialog {
  width: 75%;
  max-width: 100%;
  height: 85vh;
  margin: 5vh auto;
}
.modal-content {
  height: 100%;
  padding:10px;
}
.modal-title {
  color: black;
  font-size: 24px;
  text-align: center;
}
#imageModalLabel {
  margin-inline-start: auto;
  margin-bottom: 10px;
  font-weight: bold;
}
.modal-body {
  max-height: calc(100% - 60px);
}
.modal-content  .carousel-item {
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

#modalImages img {
  position: fixed;
  max-height: 45vh;
  max-width: 58%;
  width: auto;
  height: auto;
  object-fit: contain;
  top: 50%;
  padding-top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* CONTROLS */
.carousel-control-next,
.carousel-control-prev {
  background-color: #12123F;
  color: #FBFFFF;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 9;
  top: 45%;
}

/* BUTTONS */
.btn-primary,
.btn-skyblue {
  background-color: #12123F;
  border-color: #12123F;
  padding: 8px;
  border-radius: 10px;
  color: #fff;
  outline: none;
}
.btn-primary:hover,
.btn-skyblue:hover {
  background-color: #43C2C5;
  border-color: #fff;
  color: #fff;
  filter: brightness(90%);
}
.carousel-control-next{
  right: 18%;
  position: fixed;
}
.carousel-control-prev{
  position: fixed;
  left: 18%;
}
/*/////////////////////////////////////////////////////////////////////////////////
                          NAVIGATION BAR
//////////////////////////////////////////////////////////////////////////////// */
.nav-bar-section{
    position: relative;
    z-index: 3;
}
.popup-menu{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 350px;
    height:100vh;
    color:#fff;
    border-radius: 10px;
  }
  #menu-list {
    position: absolute;
    top: 10px;
    list-style: none;
    color: #000;
    z-index: 9999;
    background-color:#12123F;
    line-height: 50px;
    padding-top: 100px;
  }
  .popup-menu .side-menu-close{
    color: #43C2C5;
    border-radius: 50%;
    background-color: #12123f;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    top:10px;
    right: 300px;
    position: absolute;
   z-index: 999;
}
.side-nav-header {
border-bottom: 1px solid #43C2C5;
}
 
  .dropdown-menu-link-container  ul.dropdown-links{
    position: absolute;
    display: none;
    background-color: #12123F;
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 20%);
    width: 230px;
    right: 0;
    color: #000;
}
.dropdown-menu-link-container ul.dropdown-links.show{
    display: block;
    color: #000;
}
.dropdown-menu-link-container ul.dropdown-links.hide{
    display: none;
}
.dropdown-menu-link-container ul li{
    line-height: 1.5;
    padding: 8px 0px;
    
}
.nav-bar-section .nav-top-container{
    margin-bottom: 10px;
    transition-duration: .5s;
}
.nav-bar-section .nav-top-container .nav-top-wrap{
    display: flex;
    width: 100%;
    padding: 10px 0px;

    border-bottom: 1px solid #fff;
    align-items: center;
}
.nav-bar-section .nav-top-container span{
    color: #fff;
    display: flex;
    width: 100%;
}
.nav-bar-section .nav-top-container span a{
    color: #fff;
}
.nav-bar-section .nav-top-container span a:first-child{
    display: flex;
    margin-right: auto;
}
.nav-bar-section .nav-bottom-container .icons-container{
    display: none;
}
.nav-bar-section .nav-bottom-container .icons-container .menu-button-container{
    margin-left: 5px;
    padding-left: 13px;
    border-left: 2px solid #fff;
    display: none;
}
.nav-bar-section .is-sticky .nav-bottom-container .icons-container .menu-button-container{
    border-color: #43C2C5;
    
}
.nav-bar-section .nav-bottom-container .icons-container .menu-button-container button{
    color: #fff;
    border-radius: 50%;
    background-color: #43C2C5;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: none;
}
.nav-bar-section .is-sticky .nav-bottom-container .icons-container .menu-button-container button{
    color: #fff;
    background-color: #43C2C5;
   
}
.nav-bar-section .nav-bottom-container .company-log-container, .nav-bar-section .nav-bottom-container .icons-container{
    width: 200px;
}
.nav-bar-section .nav-links-container{
    margin: 0px auto;
}
.nav-bar-section .nav-links-container ul{
    list-style: none;
    display: flex;
    padding: 0px;
    margin-bottom: 0px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container{
    position: relative;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container a.link::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul{
    position: absolute;
    display: none;
    background-color: #FBFFFF;
    top: 50px;
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 20%);
    width: 230px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul.dropdown-links.show{
    display: block;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li{
    line-height: 1.2;
    padding: 8px 0px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li a{
    color: #0D0D0D;
    text-decoration: none;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li a.active{
    color: #43C2C5;
}
.nav-bar-section .is-sticky .nav-links-container ul li.dropdown-menu-link-container ul{
    top: 65px;
}

.nav-bar-section .nav-links-container ul li{
    padding: 0px 15px;
}
.nav-bar-section .nav-links-container ul li a{
    color: #fff;
    position: relative;
    cursor: pointer;
}
.nav-bar-section .is-sticky .nav-links-container ul li a{
    color: #0D0D0D;
}
.nav-bar-section .is-sticky .nav-links-container ul li a.link.active{
    color: #43C2C5;
}
.nav-bar-section .nav-links-container ul li a.link::before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    width: 0;
    height: 2px;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-links-container ul li a::before{
    background-color: #0D0D0D;
}
.nav-bar-section .nav-links-container ul li a.active::before, .nav-bar-section .nav-links-container ul li a:hover::before{
    width: 100%;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-links-container ul li a.active::before, .nav-bar-section .is-sticky .nav-links-container ul li a:hover::before{
    background-color: #43C2C5;
}
.nav-bottom-container .row{
    align-items: center;
}
.nav-bar-section .icons-container ul{
    list-style: none;
    justify-content: end;
    padding: 0px;
    margin: 0;
    align-items: center;
    margin-left: auto;
}

.nav-bar-section .icons-container ul li{
    padding: 0px 5px;
}
.nav-bar-section .icons-container ul li a{
    color: #fff;
}
.nav-bar-section .is-sticky .icons-container ul li a{
    color: #43C2C5;
}
.nav-bar-section .icons-container ul li a i{
    font-size: 20px;
}

.nav-bar-section .is-sticky .sticky-header{
    background-color: #ffffff;
    box-shadow: 0px -2px 9px rgba(0,0,0,0.7);
}
.nav-bar-section .is-sticky .nav-top-container{
    height: 0;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-bottom-container{
    padding: 25px 0px;
    transition-duration: .5s;
}
/*/////////////////////////////////////////////////////////////////////////////////
                    HOME BANNER SLICKY SLIDER IN?OUT
//////////////////////////////////////////////////////////////////////////////// */
.carousel{
    height: 100vh;
    margin-top: 0px;
    width: 100v;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 25%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 60px;
    font-weight: bold;
    line-height: 56px;
}
.carousel .list .item .topic{
    color: #12123F;
    margin-top: 30px;
}
.carousel .list .item .des{
    margin-top: 24px;
  font-size: 23px;
  line-height: normal;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #43C2C5;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-align: center;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
.theme-dark{
    width: 300px;
    padding: 5px;
    border-radius: 20px;
    background-color: #43C2C5;
    color: #fff;
    text-align: center;
}
.item video {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 2;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item img:hover{
    background-color: rgba(0, 0, 0, 0.25);
}
.thumbnail .item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.carousel .list .item .content #title-o{
  line-height: 4rem;
}
.thumbnail .item .content .title a{
    color: #FFF;
}
.thumbnail .item .content .title a:hover{
    color: #fff;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 90%;
    right: 66%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #43C2C5;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 10s linear 3 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 40px;
    }
    .carousel .list .item .content .title{
        font-size: 50px;
        line-height: 50px;
    }
}
.home-banner-services .carousel .list .item .content{
    top: 30%;
    font-size: 60px;
}
/*/////////////////////////////////////////////////////////////////////////////////
                    FOOTER
//////////////////////////////////////////////////////////////////////////////// */
.footer-section{
    padding: 60px 0px 0px;
    background-color: #12123F;
    color: #fff;
}
.footer-section footer h5{
    font-weight: bolder;
    margin-bottom: 30px;
    font-size: 22px;
}
.footer-section footer h4{
  font-weight: bolder;
  margin-bottom: 10px;
  font-size: 22px;
}
.footer-section footer hr{
    background-color: #fff;
    margin-bottom: 0px;
    
}
.footer-section footer .copy-right{
    padding: 10px 0px;
    margin-bottom: 0px;
}
.footer-section footer .about-us-container{
    display: flex;
}
.footer-section footer ul{
    list-style: none;
    padding-left: 1px;
}
.footer-section footer ul li{
    padding: 8px 0px;
    display: flex;
    margin-top: 0px;
}
.footer-section footer ul li i{
    margin-right: 10px;
    width: 20px;
}
.footer-section footer ul li i.fa-mobile{
    font-size: 25px;
}
.footer-section footer ul li a{
    color: #fff;
    line-height: 1.2;
    word-wrap: anywhere;
}
.footer-section footer .social-icon-media-container ul{
    display: flex;
    list-style: none;
}
.footer-section footer .social-icon-media-container ul li a{
    height: 45px;
    width: 45px;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid #43C2C5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}
.footer-section footer .social-icon-media-container ul li a i{
    margin: unset;
    width: unset;
}
.newsletter-input input {
    width: calc(100% - 0px);
    padding: 5px 10px;
    border: 2px solid #43C2C5;
    border-radius: 20px;
    background-color: transparent;
    color: #43C2C5;
    text-align: center;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.newsletter-input input:focus {
    border-color: transparent;
}
.contact-us-container .theme-dark {
    width: 200px;
    padding: 5px;
    border-radius: 20px;
    background-color: #43C2C5;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-inline-start: 10%;
    border: none;
}
.contact-us-container .social-icon-media-container{
    margin-top: 35px;
}
/*//////////////////////////////////////
                    OUR STORY
///////////////////////////////////// */
.about-us-section{
    padding: 40px 0px;
    background-color: #fff;
}
.about-us-section .buttom-options-container button {
    display: inline-block;
    margin-bottom: 35px;
    border: 2px solid #12123F;
    border-radius: 5px;
    width: 31%;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    background-color: #12123F;
    color: #fff;
    padding: 15px 20px;
}
.about-us-section .buttom-options-container button.active{
    background-color: #43C2C5;
    color: #fff;
    outline: none;
    border: 2px solid #43C2C5;
}
.about-us-section .buttom-options-container button:hover{
    background-color: #43C2C5;
    color: #fff;
    outline: none;
    border: 2px solid #43C2C5;
}
.about-us-section .content-container .each-content-section h1{
color: #000;
text-align: center;
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.about-us-section .content-container .each-content-section p{
    color: #000;
    font-size: 18px;
}
.about-us-section .content-container .each-content-section{
    height: 0;
    overflow:hidden;
}
.about-us-section .content-container .each-content-section.show{
    height: 100%;
}
.about-us-section .content-container .each-content-section .history{
    display: flex;
    margin-top: 25px;
}
.about-us-section .content-container .each-content-section .history .img-fluid{
    z-index: 1;
    width: 99.5%;
    height: 320px;
}
.video-container{
    margin-top: 20%;
}
.video-container video{
    position: absolute;
    z-index: 2;
    width: 84.5%;
    left: 7.5%;
    margin-top: 6%;
}
.about-us-section #company-vision .values-content{
    margin: 0;
    margin-top: 20px;
}
.about-us-section #company-vision .each-value-container{
    padding: 30px 20px;
    text-align: center;
    height:100%;
}
.about-us-section #company-vision .each-value-container{
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 20%);
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #12123F;
    border: 1px solid #000;
    color: #fff;
}
.about-us-section #company-vision .each-value-container .icon-container{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: transparent;
    padding: 20px;
    margin: 0px auto 10px auto;
    background-color: #43C2C5;
}
.about-us-section #company-vision .each-value-container .icon-container .fa{
    font-size: 60px;
    color: #fff;
}
.about-us-section #company-vision .each-value-container .icon-container img{
  color: #373D3D;
  height: 75px;
  width: 300px;
}
.about-us-section #company-vision .each-value-container h3{
    font-size: 23px;
    color: #fff;
}
.about-us-section #company-vision .each-value-container h2{
color: #FFF;
text-align: center;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.about-us-section #company-vision .each-value-container p{
    line-height: 1.3;
}
#readMoreButton{
    background-color: #12123F;
    outline: none;
    padding: 5px 12px;
    border: 1px solid #12123F;
    color: #fff;
    border-radius: 10px;
}
#readLessButton{
    background-color: #12123F;
    outline: none;
    padding: 5px 8px;
    border: 1px solid #12123F;
    color: #fff;
    border-radius: 10px;
}
/*////////////Team/////////////////*/
.about-us-section #meet-the-team .team-list-container .row{
    margin: 0px;
    width: 100%;
    padding-bottom: 20px;
}
.each-content-section .team-list-container .col-lg-6{
    padding-top: 10px;
    margin-top: 20px;
    }
.about-us-section #meet-the-team .each-team-member{
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 20%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    
}
.webui-popover-inner {
    max-width: 340px;
}
.webui-popover-title{
    font-size: 20px;
}
.webui-popover .webui-popover-content{
    font-size: 18px;
}
.webui-popover {
    z-index: 9999;
}

.about-us-section #meet-the-team .each-team-member .pic-container{
    height: 140px;
    width: 140px;
    border: 2px solid #43C2C5;
    border-radius: 100%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 0px;
}
.about-us-section #meet-the-team .each-team-member .content-container{
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.about-us-section #meet-the-team .each-team-member .content-container span{
    display: block;
}
.about-us-section #meet-the-team .each-team-member .content-container .name{
    font-weight: bold;
    margin-bottom: 15px;
}
.about-us-section #meet-the-team .each-team-member .content-container .description{
    line-height: 1.3;
    margin-bottom: 10px;
}
.about-us-section #meet-the-team .each-team-member .content-container .description span{
    margin-bottom: 15px;
}
.about-us-section #meet-the-team .each-team-member .content-container .position{
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.about-us-section #meet-the-team .each-team-member .content-container button{
    border: 2px solid #43C2C5;
    background-color: #43C2C5;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;

}
/*//////////goals/////////////*/
.about-us-section #company-goals .values-content {
    margin: 0;
    margin-top: 20px;
}
.about-us-section #company-goals .each-value-container {
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 20%);
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #12123F;
    max-width: 100%;
    color: #fff;
    border: 1px solid #12123F;
}
.about-us-section #company-goals .each-value-container .icon-container{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: transparent;
    padding: 20px;
    background-color: #FAFAFA;
    margin: 0px auto 10px auto;
}
.about-us-section #company-goals .each-value-container .icon-container img{
  font-size:100%;
}
.about-us-section #company-goals .each-value-container h2{
text-align: center;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-size: 30px;
font-style: normal;
font-weight: 700;
}
.about-us-section #company-goals .each-value-container p{
    line-height: 1.3;
}
.company-goals-carousel .owl-item {
    display: flex;
    align-items: stretch;
}
.company-goals-carousel .item {
    flex: 0 0 auto;
    width: 100%;
    height: initial;
}
.company-goals-carousel .item:last-child {
    margin-right: 0;
}
.company-goals-carousel .owl-nav{
    display: block;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;

}
#company-goals .owl-carousel .owl-nav button.owl-prev {
    background: #43C2C5;
    padding: 20px;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    margin-left: -20px;
}
#company-goals .owl-carousel .owl-nav button.owl-next {
    background: #43C2C5;
    padding: 20px;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    margin-right: -20px;
}
/*//////////////////////////////////////
            CONNECT
///////////////////////////////////// */
.carousel .content-contact {
    position: absolute;
    display: flex;
    flex-wrap: wrap; 
    top: 40%;
    width: 90%;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #000;
    padding: 20px 0;
    border-radius: 0px 0px 10px 10px;
    background: #FAFAFA;
    box-shadow: 0px 4px 4px 5px rgba(0, 0, 0, 0.25);
}
.content-contact .each-info{
  flex: 2; 
  margin-right: 0px;
}

.content-contact .each-info .fa{
  color: #12123F;
  font-size: 60px;
  text-align: center;
}
.content-contact .each-info a{
    text-decoration: none;
    text-align: center;
    color: #000;
    margin-top: 20px;
}
.content-contact .each-info .theme-white{
    margin-top: 20px;
}
.content-contact .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.content-contact .modal {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    position: relative;
    padding: 20px;
    margin-top: -13%;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.content-contact .modal iframe {
    width: 100%;
}
.content-contact .close-button {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
}
.content-contact  .view-button {
    width: 80%;
    padding: 5px;
    border-radius: 8px;
    background-color: #12123F;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    margin-top: 26%;
    left: 10%;
    cursor: pointer;
}
@media (max-width: 600px) {
    .content-contact  .modal {
        width: 90%;
    }
}
/*//////////////////////////////////////
        floating-section
///////////////////////////////////// */
.floating-section {
    position: fixed;
    width: 100%;
    bottom: 10px; 
    background-color:transparent;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    z-index: 9999;
    transition: bottom 0.3s ease;
}
.floating-button {
    margin-right: 10px; 
    padding: 8px 10px;
    background-color: #12123F;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.floating-button:hover {
    background-color: #43C2C5;
}
.floating .floating-button.active{
    background-color: #43C2C5;
}
.floating .floating-button.active:hover{
    background-color: transparent;
    border: 1px solid #FFF;
}
.floating-whatsapp-section{
    position: fixed;
    width: 100%;
    bottom: 5px; 
    background-color:transparent;
    display: flex;
    left: 93%;   
    z-index: 9999;
    transition: bottom 0.3s ease;
}
.floating-whatsapp-section img{
    margin-right: 0px; 
    padding: 8px 10px;
    width: 100px;
    height: auto;
    cursor: pointer;
}


/*new section*/
.welcome-section{
    background-color:#fff;
    padding: 35px 0;
    color: #000;
}
.welcome-section h1{
    color: #12123F;
   /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-left: 35%;
}
.highlight{
    color: #43C2C5; 
    font-weight: bold; 
}
.results{
    background-color: #12123F;
    outline: none;
    padding: 5px 12px;
    border: 1px solid #12123F;
    color: #fff;
    border-radius: 10px;
    margin-top: 0px;
}
/************/
.work-speaks{
    padding: 40px 0;
    background-color: #FFF;
}
.work-speaks h1{
    color: #12123F;
    /*text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    margin-top:-30px
}
.work-speaks .website h3{
    color: #12123F;
    position: inherit;
    text-align: center;
    bottom: 0;
    font-size: 20px;
}
.work-speaks .website{
    margin-top: 30px;
    margin-left: 20px;
}
.work-speaks .social-icon-media-container ul{
    list-style: none;
}
.work-speaks .social-icon-media-container ul li{
   display: inline-flex;
   margin: auto 2%;
   color: #12123F;
   background-color: transparent;
}
.work-speaks .social-icon-media-container a{
    font-size: 20px;
    color: #fff;
    border: 1px solid #12123F;
    background-color: #12123f;
    padding: 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
 }
.clients-work .owl-dots {
    text-align: center; 
    margin-top: 20px;
}
.owl-carousel button.owl-dot {
    background-color: #000;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    cursor: pointer;
  }
.clients-work .owl-dot {
    background-color: #000;
    height: 20px;
    width: 20px;
    margin: 0 5px; 
    border-radius: 50%; 
    display: inline-block;
    cursor: pointer;
}
.clients-work .owl-dot.active {
    background-color: #43C2C5;
}
/************/
.success-collabo {
  padding: 60px 0;
  background-color: #12123F;
  text-align: center;
}
.success-collabo h1 {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: -30px;
}
.success-collaboration .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline-start: 20%;
  box-sizing: border-box;
}
.success-collaboration .item img {
  width: 180px;
  height: auto;
  margin: 0 auto;
}
.success-collaboration .website{
  margin-top: 17px;
}
.success-collabo .website h3 {
  color: #fff;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 17px;
}
.success-collabo .theme-dark {
  border: 1px solid #43C2C5;
  padding: 7px 5px;
  width: 210px;
  margin-top: 10px;
  background: none;
  color: #43C2C5;
  cursor: pointer;
}
.success-collabo .theme-dark:hover{
  background-color: #43C2C5;
  color: #fff;
}
.success-collaboration .owl-dots {
  display: none;
}

.success-collaboration .owl-prev,
.success-collaboration .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background-color: #43C2C5;
}
.success-collaboration .owl-prev {
  left: -30px;
}
.success-collaboration .owl-next {
  right: 50px;
}
#sjoti img {
  height: auto;
  width: 210px;
  margin: 0 auto;
}

/************/
.speed-feedback {
    padding: 60px 0;
    background-color: #FFF;
}
.speed-feedback h1 {
    color: #12123F;
    /*text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    margin-top: -30px;
}
.speed-feedback {
    text-align: center;
}
.speed-item {
    display: inline-block;
    margin: 10px;
}
.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #43C2C5;
    border: 2px solid #43C2C5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.circle-text {
    margin-top: 10px;
    font-size: 20px;
    color: #000;
    text-align: center;
}
/*/////////////////////////////
packages secton
/////////////////////////////*/
.our-packages-section {
  padding: 60px 0;
  background-color: #43C2C5;
}
.our-packages-section .heading {
  margin-bottom: 40px;
}
.our-packages-section .heading h1{
  color: #fff;
  font-weight: bold;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: -30px;
}
.each-pakage {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px 50px 10px 40px;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s;
  height:  auto;
}
.each-pakage:hover{
  transform: translateY(5px);
}
.our-packages-section .icon-container {
  margin-bottom: 20px;
}
.our-packages-section .icon-container img{
  border-radius: 1000%;
  width: 50%;  
  object-fit: cover;
  
}
.pakage-content h4{
  font-size: 40px;
  color: #000;
  font-weight: 700;
  padding-top: 15px;
}
.our-packages-section .each-pakage h3{
  color: #000;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 0;
}
.each-pakage p{
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-left: 37%;
}
.each-pakage ul {
  list-style: none;
  padding: 0;
  align-items: center;
  text-align: center;
}
.each-pakage ul li{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
  text-align: center;
  margin-left: 10%;
}
.each-pakage ul li::before {
  content: "\2713";
  color: #43C2C5;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  text-align: center;
}
.each-pakage .floating-button{
  padding: 6px 16px;
  border-radius: 18px;
}
/*data tabs*/
.our-packages-section .each-content-section{
  display: inline-flex;
}
.our-packages-section .buttom-options-container button{
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #43C2C5;
}
/* Home services section */
.home-services{
    padding: 0px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    margin-top: -7%;
}
.home-services .each-home-service {
color: #fff;
padding: 30px 30px;
height: 100%;
background-color: #12123f;
fill: rgba(224, 224, 224, 0.40);
filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.35));
text-align: center;
border-radius: 10px;
}
.home-services .each-home-service .icon-container{
margin: auto;
margin-bottom: 20px;
width: 85px;
}
.each-home-service .action{
    margin-top: 20px;
    font-family: "Open Sans", sans-serif;
}
.each-home-service .action .floating-button{
    background-color: #ffff;
    padding: 8px 15px;
    color: #12123F;
}
.each-home-service .action .floating-button:hover {
    background-color: #15B9F0;
}
.home-services .heading h1{
color: #fff;
/*text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding-left: 30%;
margin-top: -30px;
}
.home-services  h4{
color: #fff;
font-size: 32px;
font-weight: bold;
}
.home-services  p{
color: #000;
}
.learn-more-btn {
color: #FFF;
padding: 10px;
display: block;
border-radius: 10px;
background: #43C2C5;
box-shadow: 0px 6px 4px 0px rgba(0, 0, 0, 0.25);
}
.learn-more-btn:hover{
background-color: #12123F;
color: #FFF;
}

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

/////////////*/
.what-seo-mean{
    padding: 60px 0;
    background-color: #ffffff;
    color: #000;
}
.what-seo-mean .each-home-service {
color: inherit;
padding: 30px 30px;
height: 100%;
background: #43C2C5;
  color: #ffff;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
text-align: center;
}
.what-seo-mean .each-home-service .icon-container{
margin: auto;
margin-bottom: 30px;
width: 100px;
height: 100px;
border: 1px solid #43C2C5;
border-radius: 100%;
background-color: #FFF;
}
.what-seo-mean .each-home-service  img{
    height: 60px;
    width: 60px;
    margin-top: 17px;
}
/*//////*/
.seo-strategy{
padding: 60px 0;
background-color: #43C2C5;
}
.seo-strategy h1{
color: #FFF;
text-align: center;
/*text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-top: -40px;
}
.seo-strategy h5{
text-align: center;
padding-bottom: 40px;
}
.seo-strategy .each-strategy h4{
margin-bottom: 10px;
font-size: 30px;
}
.seo-strategy .each-strategy{
text-align: center;
background-color: #12123F;
color: #fff;
padding: 10px 20px;
width: 340px;
height: max-content;
}
.work-speaks .owl-carousel .owl-item img{
  width: 90%;
  margin-inline-start: 5%;
}
.seo-strategy .owl-carousel .owl-nav{
display: block;
color: #12123F;
}
.seo-strategy .owl-carousel .owl-nav button.owl-prev{
background-color: #FFF;
}
.seo-strategy .owl-carousel .owl-nav button.owl-next{
right: -20px;
background-color: #FFF;
}
/*///////////////////////////////////
3D effect
///////////////////////////////////*/
.testimonial-stories {
  padding: 40px 10px;
  background-color: #12123F;
  color: #FFF;
}
.testimonial-stories h1{
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: -40px;
}
.testimonial-stories h5{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  padding-bottom: 40px;
}
.testimonial-stories .threeD-slider-effect .card {
  background-color: #43C2C5;
  filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
  display: flex;
  padding: 10px;
  border-radius: 20px;
}
.testimonial-stories .threeD-slider-effect .card img.profile-image {
  width: 50px;
  height: 50px;
  left: 85%;
  position: absolute;
}
.testimonial-stories .threeD-slider-effect .card .content-wrapper span a{
  color: #000;
}
.testimonial-stories .threeD-slider-effect .card .company-link {
  margin-bottom: 5px;
  color: #ffff;
}
.testimonial-stories .threeD-slider-effect .card .rating {
  display: flex;
  margin-top: 0px;
}
.testimonial-stories .threeD-slider-effect .card .rating .star {
  font-size: 20px;
  margin: 0 2px;
}
.testimonial-stories .threeD-slider-effect .card .rating .star i {
  color: yellow;
  margin-bottom: 10px;
}
.testimonial-stories .threeD-slider-effect .card .rating .star:not(.active) i {
  color: #fff; 
}
.testimonial-stories .threeD-slider-effect .card .content {
  text-align: center;
  color: #ffff;
  font-size: 18px;
}
.testimonial-stories .threeD-slider-effect .card .human-profile-icon {

  display: flex;
}
.testimonial-stories .threeD-slider-effect .card img.profile-icon {
  width: 90px;
  height: auto;
  object-fit: contain;
}
.testimonial-stories .threeD-slider-effect .card .human-profile-icon h5{
  color: #000;
  font-weight: bold;
  margin-left: 5%;
  margin-top: 17px;
}
.testimonial-stories .threeD-slider-effect .card .title p{
  color: #000;
  margin-left: 28%;
  margin-top: -50px;
  line-height: normal;
}
.testimonial-stories .item.col-lg-4 {
  max-width: 100%;
}
.card {
  position: relative;
  overflow: hidden;
}
.testimonials .owl-dots {
  display: none;
}
.testimonial-stories .owl-carousel .owl-item img{
  margin: 0;
}
/*////*/
.testimonials .card {
  height: 590px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonials .content {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.testimonials .human-profile-icon {
  margin-top: auto;
}
/* ===========================================================
    Blog styling
=============================================================*/
.blog {
    padding: 0 0 40px 0;
}
.go-back-link-container {
  margin-bottom: 15px;
}
.go-back-link-container a{
  color: inherit;
}
.blog .entry {
  padding: 20px;
  margin-bottom: 0px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #12123F;
  color: #fff;
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -20px -20px 20px -20px;
  overflow: hidden;
  justify-content: center;
  display: flex;
  height: 250px;
}
.blog.single-blog .entry .entry-img{
  height: unset;
  max-height: unset;
}
.blog .entry .entry-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #fff;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #fff;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #afa29e;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
  color: #fff;
}
.blog .entry .entry-meta a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
  font-size: 15px;
}
.blog .entry .entry-content .list-style{
  padding-left: 25px;
  margin-top: -15px;
  font-size: 15px;
  margin-bottom: 10px;
}
.blog .entry .entry-content .list-style li{
  list-style: disc;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}  
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #ffff;
  color: #12123F;
  font-weight: bolder;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 10px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #43C2C5;
  color: #fff;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 25px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #313030;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote p span{
  font-style: normal;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}
.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #473d3a;
  margin-top: 20px;
  margin-bottom: 20px;
}  
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #988782;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #c2b7b4;
  transition: 0.3s;
}
.blog .entry .entry-footer a.active{
  color: #90c73e;
}
.blog .entry .entry-footer a:hover {
  color: #90c73e;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .entry-single .entry-title {
  font-size: 32px;
  line-height: 38px;
  }
  
  .blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-author img {
    width: 120px;
  }
  
  .blog .blog-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
  }
  
  .blog .blog-author .social-links {
    margin: 0 0 5px 140px;
  }
  
  .blog .blog-author .social-links a {
    color: #afa29e;
  }
  
  .blog .blog-author p {
    margin-left: 140px;
    font-style: italic;
    color: #a4a2a2;
  }
  
  .blog .blog-comments {
    margin-bottom: 30px;
  }
  
  .blog .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog .blog-comments .comment .comment-img {
    width: 50px;
  }
  
  .blog .blog-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #313030;
    transition: 0.3s;
  }
  
  .blog .blog-comments .comment h5 a:hover {
    color: #90c73e;
  }
  
  .blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #473d3a;
  }
  
  .blog .blog-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #afa29e;
    margin-bottom: 5px;
  }
  
  .blog .blog-comments .comment p {
    margin-left: 65px;
  }
  
  .blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  .blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
  }
  
  .blog .blog-comments .reply-form p {
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #c5e495;
  }
  
  .blog .blog-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #c5e495;
  }
  
  .blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
  }
  
  .blog .blog-comments .reply-form .btn-primary {
    border-radius: 0;
    padding: 10px 20px;
    border: 0;
    background-color: #473d3a;
  }
  
  .blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #90c73e;
  }
  
  .blog .blog-pagination {
    color: #7f6d68;
  }
  
  .blog .blog-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
  }
  
  .blog .blog-pagination li {
    border: 1px solid #f2f2f2;
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .blog .blog-pagination li.active {
    background: white;
  }
  
  .blog .blog-pagination li a {
    color: #989595;
    padding: 7px 16px;
    display: inline-block;
  }
  
  .blog .blog-pagination li.active, .blog .blog-pagination li:hover {
    background: #90c73e;
    border: 1px solid #90c73e;
  }
  
  .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
    color: #fff;
  }
  
  .blog .blog-pagination li.disabled {
    background: #fff;
    border: 1px solid #fdfcfc;
  }
  
  .blog .blog-pagination li.disabled i {
    color: #dedede;
    padding: 10px 16px;
    display: inline-block;
  }
  
  .blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #473d3a;
    position: relative;
  }
  
  .blog .sidebar .sidebar-item {
    margin-bottom: 30px;
  }
  
  .blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
  }
  
  .blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
  }
  
  .blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #473d3a;
    color: #fff;
    transition: 0.3s;
  }
  
  .blog .sidebar .search-form form button:hover {
    background: #635551;
  }
  
  .blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .categories ul li + li {
    padding-top: 10px;
  }
  
  .blog .sidebar .categories ul a {
    color: #8d7973;
  }
  
  .blog .sidebar .categories ul a:hover {
    color: #90c73e;
  }
  
  .blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #afa29e;
    font-size: 14px;
  }
  
  .blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
  }
  
  .blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
  }
  
  .blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
  }
  
  .blog .sidebar .recent-posts h4 a {
    color: #0f0d0c;
    transition: 0.3s;
  }
  
  .blog .sidebar .recent-posts h4 a:hover {
    color: #90c73e;
  }
  
  .blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #afa29e;
  }
  
  .blog .sidebar .tags {
    margin-bottom: -10px;
  }
  
  .blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .tags ul li {
    display: inline-block;
  }
  
  .blog .sidebar .tags ul a {
    color: #8d7973;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #f4f2f2;
    display: inline-block;
    transition: 0.3s;
  }
  
  .blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #90c73e;
    background: #90c73e;
  }
  
  .blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #ddd7d6;
    font-size: 14px;
  }
  

  /* New models style */
  .modal-dialog{
    max-width: 95%;
  }
  /* .modal-header h5{
    margin: auto;
  }*/

.news-section{
    padding: 60px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
    color: #000;
  }
  .blog .owl-dots, .blog .owl-nav{
    display: none;
  }
  #news-4 .entry-content ul{
    padding-left: 15px;
    margin-left: 5px;
    margin-top: -15px;
  }
  #news-4 .entry-content ul li{
    list-style: disc;
  }
/*//////////////////////////////////////////////////
  GOVERNANCE STYLE
///////////////////////////////////////////////////*/
.resource-links-section{
    padding: 40px 0;
    background-color: #ffff;
}
.resource-links-section .heading h1{
    color: #000;
    font-size: 50px;
    font-weight: 600;
}
.mask {
    clip: rect(0px, 350px, 220px, 0px);
    border-radius: 20px 20px 0px 0px;
    width: 100%;
}
.resource-links-section .each-resource{
    display: flex;
    color: #000;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    height: auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
    background-color: unset;
    border-radius: 20px;
}
.resource-links-section .inner-heading{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.resource-links-section .each-resource ul li a{
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.resource-links-section .each-resource audio{
    margin-inline-start: -17px;
    margin-top: 10px;
}
.post-author {
    display: flex;
    align-items: center;
}
.author-img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
/*//////////////////////////////////////////////////
industry-insights-section
///////////////////////////////////////////////////*/
.industry-insights-section{
    padding: 50px 0;
    background-color: #fff;
    color: #fff;
}
.industry-insights-section .heading-section{
    color: #000;
}
.industry-insights-section .blog .entry{
    background-color: #12123F;
    border-radius: 10px;
}
.industry-insights-section .blog .entry .entry-title a{
    color: #43C2C5;
}
.industry-insights-section .blog .entry .entry-content .read-more a:hover{
background-color: #43C2C5;
}
/*//////////////////////////////////////////////////
 valued-partners
///////////////////////////////////////////////////*/
.valued-partners{
height: 100vh;
}
.heading-2 {
position: relative;
display: flex;
margin: auto;
justify-content: center;

}
.heading-2 h2 {
font-family: "Open Sans", sans-serif;
position: relative;
font-size: 56px;
color: rgba(0, 0, 0, 0.05);
font-weight: 700;
letter-spacing: 1px;
font-style: normal;
}
.heading-2 h3 {
font-size: 40px;
color: #000;
position: absolute;
letter-spacing: 4px;
display: flex;
align-self: center;
margin-top: 10px;
margin-bottom: 10px;
font-weight: 700;
letter-spacing: 1px;
font-style: normal;
}
.brand-first {
font-size: 40px;
font-family: "Open Sans", sans-serif;
display: ruby;
color: #000;
font-weight: 700;
letter-spacing: 1px;
font-style: normal;
position: absolute;
}

.follow-us-section  .follow-us-section{
  padding: 30px 0px;
  background-color: #fff;
}
.follow-us-section .follow-us-container h4{
  font-size: 40px;
  color: #12123F;
}
.follow-us-section .follow-us-icon-container{
  margin-top: 30px;
}
.follow-us-section  .each-social-icon-container {
  border: 2px solid #12123f;
  width: 60px;
  height: 60px;
  display: flex;
  /* transform: rotate(49deg); */
  margin-right: 25px;
  border-radius: 100%;
}
.follow-us-section .each-social-icon-container a{
  width: 100%;
  height: 100%;
  display: flex;
  color: #12123f;
}
.follow-us-section .each-social-icon-container a:hover{
  color: #43c2c5;
}
.follow-us-section .each-social-icon-container i{
  margin: auto;
  font-size: 25px;
  /* transform: rotate(-49deg); */
}

.blog-preview-section{
  padding: 50px;
  background-color: #fff;
  color: #000;
}
.blog-preview-section .thumbnail-container img{
  width: 100%;
  border-radius: 5px;
}
.blog-preview-section .blog-info-container{
  margin-top: 15px;
  display: flex;
  margin-bottom: 20px;
  flex-direction: row-reverse;
  justify-content: left;
}
.blog-preview-section .date-tag-container {
  display: flex;
}
.blog-preview-section .blog-preview-container .blog-title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}
.blog-preview-section .blog-info-container .post-date, .blog-preview-section .blog-info-container .post-tag{
  display: flex;
  margin-left: 30px;
}
.blog-preview-section .blog-info-container .post-date .icon-container, .blog-preview-section .blog-info-container .post-tag .icon-container{
  margin-right: 5px;
}
.blog-preview-section .blog-info-container .post-date .date, .blog-preview-section .blog-info-container .post-tag .tag {
  font-weight: bold;
}
.blog-preview-section .blog-info-container .post-date .icon-container span, .blog-preview-section .blog-info-container .post-tag .icon-container span{
  font-size: 25px;
}
.blog-preview-section .share-links-container {
  border-top: 2px solid #9999;
  padding-top: 10px;
}
.blog-preview-section .share-links-container ul{
  list-style: none;
  display: flex;
  margin-left: 0;
  padding: 0;
}
.blog-preview-section .share-links-container ul li{
  margin: 0px 5px;
}
.blog-preview-section .share-links-container ul a{
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid #43c2c5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #43c2c5;
  color: #fff;
  font-size: 20px;
  margin: opx 5px;
}

.home-valued-partner .content{
  display: inline-flex;
  margin-top: 5%;
}
.home-valued-partner .logos{
  width: 110%;
  height: 34vh;
}
.home-valued-partner .logos img{
  border-radius: 50%;
  object-fit: contain;
  background-position: left;
  background-size: cover;
}
.home-valued-partner .carousel .list .item .des{
  position: absolute;
  z-index: 9999;
  margin-top: 25%;
}

