.section-1{
    width: 100%;
    display: flex;
    height: 100vh;
}
.section-1-col{
    width: 33.33%;
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  position: relative;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  padding: 0 5% 2.5% 5%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.section-1-col::before{
    position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 85, 204, 0.1);
  top: 0;
  left: 0;
  z-index: 0;
}
.section-1-col-overlay{
    position: relative;
    z-index: 1;
}
.section-1-col h2{
    font-family: 'GilroyBold';
  color: white;
  font-size: 22px;
    margin: 0 0 30px 0;
    transition: all 0.5s ease-in-out;
  }
  
.fade-in-text span {
    opacity: 0; /* Start invisible */
    animation: fadeIn 0.6s ease-in forwards; /* Apply animation */
    display: inline-block; /* Essential for transforms and spacing */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optional: slight vertical shift */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-out-text span {
    opacity: 1; /* Start visible */
    animation: fadeOut 0.6s ease-out forwards; /* Apply animation */
    animation-delay: var(--delay); /* Use CSS variable for delay if not inlined */
    display: inline-block;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px); /* Optional: slight vertical shift */
    }
}

.jiggle-text span {
    display: inline-block; /* Crucial for transforms */
    transition: transform 0.2s ease-out; /* Smooth transition */
}

.jiggle-text:hover span {
    animation: jiggle 0.5s ease-in-out forwards;
}

/* For staggered effect on hover, you'd need JS to add delays
   or target specific spans with :nth-child */
.jiggle-text:hover span:nth-child(1) { animation-delay: 0s; }
.jiggle-text:hover span:nth-child(2) { animation-delay: 0.05s; }
.jiggle-text:hover span:nth-child(3) { animation-delay: 0.1s; }
/* ... and so on for all letters */


@keyframes jiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    50% { transform: rotate(5deg) scale(1.1); }
    75% { transform: rotate(-2.5deg) scale(1.05); }
}


.pop-up-text span {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    animation: popUp 0.5s forwards ease-out;
}

/* Stagger the animation delay for each span */
.pop-up-text span:nth-child(1) { animation-delay: 0s; }
.pop-up-text span:nth-child(2) { animation-delay: 0.05s; }
.pop-up-text span:nth-child(3) { animation-delay: 0.1s; }
.pop-up-text span:nth-child(4) { animation-delay: 0.15s; }
.pop-up-text span:nth-child(5) { animation-delay: 0.2s; } /* For the space */
.pop-up-text span:nth-child(6) { animation-delay: 0.25s; }
.pop-up-text span:nth-child(7) { animation-delay: 0.3s; }
.pop-up-text span:nth-child(8) { animation-delay: 0.35s; }
.pop-up-text span:nth-child(9) { animation-delay: 0.4s; }
.pop-up-text span:nth-child(10) { animation-delay: 0.45s; }
.pop-up-text span:nth-child(11) { animation-delay: 0.5s; }

@keyframes popUp {
    from {
        opacity: 0;
        transform: scale(0);
    }
    80% {
        opacity: 1;
        transform: scale(1.2); /* Overshoot for a "pop" effect */
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


  /*.section-1-col:hover h2 {
  -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}*/
.section-1-col p{
    opacity: 0;
    color: white;
    width: 100%;
    max-width: 300px;
    margin: 0 0 30px 0;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}
.section-1-col img{
    opacity: 0;
    width: 40px;
}
.section-1-col:hover {
  min-width: 50%;
  -webkit-transition: all 0.6s cubic-bezier( 0.49, 0.45, 0.3, 0.95 );
  transition: all 0.6s cubic-bezier( 0.49, 0.45, 0.3, 0.95 );
}
.section-1-col:hover p, .section-1-col:hover img{
    opacity: 1;
}
.section-1{
    display: none;
}
.section-1-mobile-slider-item{
    position: relative;
}
.section-1-mobile-slider-item-text{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 5% 15% 5%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
 .section-1-mobile-slider-item-text h2 {
     font-family: 'GilroyBold';
    font-size: 28px;
    color: white;
    margin: 0 0 10px 0;
  }
   .section-1-mobile-slider-item-text p {
    font-size: 16px;
    width: 75%;
    color: white;
  }
@media (min-width: 1024px) {
    .section-1{
        display: flex;
    }
    .section-1-mobile{
        display: none;
    }
}
@media (max-width: 768px) {
    .section-1-mobile-slider-item-text{
        padding: 0 10% 15% 10%;
    }
    .section-1-mobile-slider-item-text h2{
        font-size: 24px;
    }
    .section-1-mobile-slider-item-text p {
        font-size: 14px;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .section-1-mobile-slider-item-text{
        padding: 0 10% 40% 10%;
    }
    .section-1-mobile-slider-item-text h2{
        font-size: 24px;
    }
    .section-1-mobile-slider-item-text p {
        font-size: 14px;
        width: 100%;
    }
}

.section-2{
    padding: 70px 0 70px 5%;
  background: rgba(0, 85, 204, 0.05);
}
.section-2-bottom{
    padding: 0;
    background: rgba(0, 85, 204, 0.05);
}
.section-2-bottom img{
    opacity: 0.2;
}
.section-2-row-1{
    display: flex;
}
.section-2-row-1-col-1{
    width: 50%;
}
.section-2-row-1-col-2{
    width: 50%;
    display: flex;
  justify-content: flex-end;
  align-items: center;
}
.section-2-row-1-col-1 h2{
    font-size: 32px;
  margin: 0 0 15px 0;
  color: #05c;
  font-family: 'GilroyBold';
}
.section-2-row-1-col-1 p{
    font-family: 'GilroyMedium';
  font-size: 16px;
  color: #444;
  margin: 15px 0 15px 0;
  line-height: 1.6;
  width: 80%;
  text-align: justify;
}
.section-2-row-1-col-1 ul{
    font-family: 'GilroyMedium';
  font-size: 16px;
  color: #444;
  padding-left: 15px;
  width: 80%;
  text-align: justify;
}
.section-2-row-1-col-1 p.font-bold{
font-family: 'GilroyBold';
  margin: 0;
  font-size: 18px;
  }
.section-2-row-1-col-1 a{
font-size: 18px;
  color: #555;
  }
.section-2-row-1-col-2 img{
    width: 90%;
  margin-top: 20px;
}
.section-2-row-1-col-2 h2 {
  font-size: 32px;
  margin: 0;
  color: #444;
  font-family: 'GilroyBold';
  text-align: center;
}

.section-2-row-2 {
	display: flex;
  padding-right: 5%;
  justify-content: center;
  margin-top: 5%;
    align-items: center;
}
.section-2-row-2 img.img-2, .section-2-row-2 img.img-3{
    width: 120px;
}
.section-2-row-2 img.img-1, .section-2-row-2 img.img-4, .section-2-row-2 img.img-5, .section-2-row-2 img.img-6, .section-2-row-2 img.img-7{
    width: 80px;
}
.section-2-row-2 img {
  margin-right: 5%;
  filter: grayscale(100%);
}
.section-2-row-2 img:hover {
    filter: grayscale(0%);
}
.timeline-section {
  background-color: transparent;
  padding: 50px 5% 0 0;
}

.timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #05c;
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.timeline-number {
    font-size: 36px;
  color: #05c;
  margin-bottom: 10px;
  font-family: 'GilroyMedium';
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background-color: #05c;
  border-radius: 50%;
  margin-bottom: 10px;
}

.timeline-description {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container::before {
    top: 0;
    height: 0;
  }

  .timeline-item {
    margin-bottom: 30px;
  }

  .timeline-number {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 20px 10px;
  }

  .timeline-number {
    font-size: 2em;
  }

  .timeline-description {
    font-size: 0.9em;
  }
}
@media (max-width: 1024px) {
    .section-2-row-1 {
        flex-wrap: wrap;
    }
    .section-2-row-1-col-1 {
        width: 100%;
    }
    .section-2-row-1-col-2 {
        width: 100%;
        margin-top: 30px;
    }
}
@media (max-width: 992px) {
    .section-2-row-1-col-1 p, .section-2-row-1-col-1 ul {
        font-size: 16px;
    }
    .section-2-row-1-col-1 a {
        font-size: 16px;
    }
    .section-2-row-2 img.img-1, .section-2-row-2 img.img-4, .section-2-row-2 img.img-5, .section-2-row-2 img.img-6, .section-2-row-2 img.img-7 {
        width: 60px;
    }
    .section-2-row-2 img.img-2, .section-2-row-2 img.img-3 {
        width: 80px;
    }
    .section-2-row-1 {
        flex-wrap: wrap;
    }
    .section-2-row-1-col-1 {
        width: 100%;
    }
    .section-2-row-1-col-2 {
        width: 100%;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .section-2 {
        padding: 50px 10%;
    }
    .section-2-row-1 {
        flex-wrap: wrap;
    }
    .section-2-row-1-col-1 {
        width: 100%;
    }
    .section-2-row-1-col-1 h2 {
        font-size: 28px;
    }
    .section-2-row-1-col-1 p, .section-2-row-1-col-1 ul {
        font-size: 16px;
        width: 100%;
    }
    .section-2-row-1-col-1 a {
        font-size: 16px;
    }
    .section-2-row-1-col-2 {
      width: 100%;
      margin-top: 30px;
    }
    .section-2-row-1-col-2 h2 {
        font-size: 28px;
    }
    .section-2-row-2 {
        flex-wrap: wrap;
        margin-top: 10%;
    }
    .section-2-row-2 img.img-1, .section-2-row-2 img.img-4, .section-2-row-2 img.img-5, .section-2-row-2 img.img-6, .section-2-row-2 img.img-7 {
        width: 60px;
        margin-bottom: 5%;
    }
    .section-2-row-2 img.img-2, .section-2-row-2 img.img-3 {
        width: 100px;
        margin-bottom: 5%;
    }
}
@media (max-width: 575px) {
    .section-2 {
        padding: 50px 10%;
    }
    .section-2-row-1 {
        flex-wrap: wrap;
    }
    .section-2-row-1-col-1 {
        width: 100%;
    }
    .section-2-row-1-col-1 h2 {
        font-size: 28px;
    }
    .section-2-row-1-col-1 p, .section-2-row-1-col-1 ul {
        font-size: 16px;
        width: 100%;
    }
    .section-2-row-1-col-1 a {
        font-size: 16px;
    }
    .section-2-row-1-col-2 {
      width: 100%;
      margin-top: 30px;
    }
    .section-2-row-1-col-2 h2 {
        font-size: 28px;
    }
    .section-2-row-2 {
        flex-wrap: wrap;
    margin-top: 10%;
    padding-right: 0;
    padding-top: 10%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .section-2-row-2 img.img-1, .section-2-row-2 img.img-4, .section-2-row-2 img.img-5, .section-2-row-2 img.img-6, .section-2-row-2 img.img-7 {
        width: 40px;
        margin-bottom: 5%;
    }
    .section-2-row-2 img.img-2, .section-2-row-2 img.img-3 {
        width: 80px;
        margin-bottom: 5%;
    }
}

.section-3{
    padding: 70px 0 70px 5%;
}
.section-3-slider-buttons{
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}
.section-3-slider-buttons button {
  width: 40px;
  height: 40px;
  background: #222;
  border: 0;
  box-shadow: none;
  outline: 0;
  border-radius: 20px;
  padding: 0;
  color: white;
  margin-right: 10px;
}
.section-3-slider-buttons button i {
  font-size: 24px;
}
.section-3-row{
    display: flex;
}
.section-3-title-row{
    display: flex;
}
.section-3-title-row-left{
    width: 70%;
}
.section-3-title-row-right{
    width: 30%;
    padding-right: 5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.section-3-title-row-left h2{
    font-family: 'GilroyBold';
    font-size: 32px;
  margin: 0 0 30px 0;
  color: #05c;
}
.section-3-title-row-right button{
    background: transparent;
  border: 0;
  font-family: 'GilroyMedium';
  font-size: 18px;
  color: #444;
  text-align: right;
}
.section-3-title-row-right button img{
    width: 40px;
    padding-left: 10px;
    transition: all 0.5s ease-in-out;
}
.section-3-title-row-right button:hover img{
    padding-left: 15px;
    width: 40px;
}
.section-3-card-new {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.section-3-card-new img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease-in-out;
}
.section-3-card-new:hover img {
  transform: scale(1.1); /* Scales the image to 110% of its original size on hover */
}
.section-3-card-new-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 15%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content:center;
    background: rgb(0 0 0 / 25%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 100%); /* linear-gradient(0deg, rgb(0 55 133 / 75%) 0%, rgba(0, 0, 0, 0.15) 100%) */
}
.section-3-card-new-overlay h2{
    font-size: 22px;
    color: white;
    font-family: 'GilroyMedium';
}
.section-3-card-new-overlay p{
    color: white;
    font-size: 14px;
}
.section-3-card-new-overlay button{
    padding: 7px 14px;
    font-size: 14px;
    border: 0;
    background: #c9244a;
    color: white;
    font-family: 'GilroyBold';
}
.section-3-card-new-overlay-hover{
    max-height: 0;
    overflow: hidden;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.section-3-card-new:hover .section-3-card-new-overlay-hover {
    /*padding-top: clamp(15px, 1.5625vw, 30px);*/
    max-height: clamp(280px, 16.6666666667vw, 320px);
}
.section-3-card {
	width: 100%;
	display: flex;
	padding: 30px;
	background: rgba(0, 85, 204, 0.05);
	border-radius: 15px;
	min-height: 300px;
	align-items: center;
}
.section-3-card-left{
    width: 70%;
}
.section-3-card-right{
    width: 30%;
}
.section-3-card-left h2{
    font-family: 'GilroyBold';
  font-size: 24px;
  color: #444;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.section-3-card-left p{
    font-size: 14px;
    color: #000;
}
.section-3-card-right img{
    width: 100%;
}
.services-slider .swiper-button-next, .services-slider .swiper-button-prev {
    color: #444 !important;
}
.services-slider .swiper-button-next::after, .services-slider .swiper-button-prev::after {
    font-size: 24px !important;
}
.services-slider .swiper-pagination-bullet-active {
  background: #05c !important;
}
.services-slider .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}
@media (max-width: 768px) {
    .section-3 {
        padding: 50px 5%;
    }
    .section-3-title-row-left {
        width: 50%;
    }
    .section-3-title-row-left h2 {
        font-size: 28px;
        margin: 0;
    }
    .section-3-title-row-right {
        width: 50%;
        padding-right: 0;
    }
    .section-3-title-row-right button {
        font-size: 14px;
    }
    .section-3-title-row {
        margin: 0 0 30px 0;
    }
    .section-3-card-new-overlay h2{
        font-size: 18px;
    }
    .section-3-card-new{
        height: 300px;
    }
}
@media (max-width: 575px) {
    .section-3 {
        padding: 50px 10%;
    }
    .section-3-title-row-left {
        width: 50%;
    }
    .section-3-title-row-left h2 {
        font-size: 28px;
        margin: 0;
    }
    .section-3-title-row-right {
        width: 50%;
        padding-right: 0;
    }
    .section-3-title-row-right button {
        font-size: 14px;
    }
    .section-3-title-row {
        margin: 0 0 30px 0;
    }
}


.section-4{
    padding: 70px 5%;
    background: rgba(0, 85, 204, 0.05);
}
.section-4-body{
    display: flex;
}
.section-4-left{
    width: 50%;
}
.section-4-right{
    width: 50%;
}
.section-4-header h2{
    font-family: 'GilroyBold';
    font-size: 32px;
  margin: 0 0 15px 0;
  color: #05c;
    text-align: center;
}
.section-4-header p {
	font-family: 'GilroyMedium';
  font-size: 18px;
  color: #444;
  margin: 30px 0 30px 0;
  line-height: 1.6;
  width: 60%;
  margin: auto auto 50px auto;
  text-align: center;
}
.section-4-left img{
    width: 100%;
}
.section-4-left h2, .section-4-right h2{
    font-family: 'GilroyMedium';
  font-size: 24px;
  margin: 0 0 15px 0;
  color: #777;
  text-align: center;
}
.section-4-right img{
    width: 100%;
}
@media (max-width: 992px) {
    .section-4-header p {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .section-4 {
        padding: 50px 5%;
    }
    .section-4-header h2 {
        font-size: 28px;
    }
    .section-4-header p {
        font-size: 16px;
        width: 100%;
    }
    .section-4-body {
        flex-wrap: wrap;
    }
    .section-4-left, .section-4-right {
        width: 100%;
    }
    .section-4-left h2, .section-4-right h2 {
        font-size: 22px;
    }
    .section-4-right {
        margin: 40px 0 0 0;
    }
}
@media (max-width: 575px) {
    .section-4 {
        padding: 50px 5%;
    }
    .section-4-header h2 {
        font-size: 28px;
    }
    .section-4-header p {
        font-size: 16px;
        width: 90%;
    }
    .section-4-body {
        flex-wrap: wrap;
    }
    .section-4-left, .section-4-right {
        width: 100%;
    }
    .section-4-left h2, .section-4-right h2 {
        font-size: 22px;
    }
    .section-4-right {
        margin: 40px 0 0 0;
    }
}


.section-5{
    padding: 70px 5%;
    display: flex;
}
.section-5-col-1, .section-5-col-2, .section-5-col-3{
    width: 33.33%;
}
.section-5-col-1 h2, .section-5-col-2 h2, .section-5-col-3 h2 {
  font-size: 24px;
  margin: 0 0 15px 0;
  color: #05c;
}
.section-5-col-1 p, .section-5-col-2 p, .section-5-col-3 p {
  font-size: 14px;
  color: #000;
  margin: 0;
  line-height: 1.6;
  width: 75%;
}



.section-6 {
    padding: 70px 5%;
}
.section-6 h3{
    color: #05c;
  font-size: 28px;
  font-family: 'GilroyBold';
  margin: 0 0 10px 0;
}
.section-6 h2{
    color: #444;
  font-size: 24px;
  font-family: 'GilroyMedium';
    margin: 0 0 10px 0;
}
.section-6 p{
    color: #444;
  font-size: 16px;
  margin: 0 0 30px 0;
}
.slider {
  height: auto;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slider-buttons-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-wrap: wrap;
}
.slider-buttons{
    width: 175px;
}
.slider-buttons a{
    text-decoration: none;
}
.slider-buttons button{
    font-family: 'GilroyMedium';
    width: 100%;
  font-size: 14px;
  color: white;
  border: 0;
  padding: 10px;
    border-radius: 7px;
}
.slider-buttons .linkedin-button{
    background:#0A66C2;
  margin: 0 0 10px 0;
}
.slider-buttons .youtube-button{
    background:#E1306C;
    margin: 0;
}
.slider::before,
.slider::after{
  position:absolute;
  background-image:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
  content:'';
  height:100%;width:75%;
  z-index:2;pointer-events:none;
}
.slider::before{
  left:0;
  top:0;
}
.slider::after{
  right:0;
  top:0;
  transform:rotateZ(180deg);
}

/*  IMPORTANT CODE BELOW */

.slide-track {
  width: calc(150px * 20);
  display: flex;
  animation: scroll 30s linear infinite;
  justify-content: space-between;
  margin: 0 0 7px 0;
}
.client-slide-track {
  width: calc(150px * 36);
  margin: 40px 0;
}

.slide-track2 {
  width: calc(150px * 20);
  display: flex;
  animation: scroll2 30s linear infinite;
  justify-content: space-between;
}

.slide {
  width: 150px;
  height: auto;
  display: grid;
  place-items: center;
  transition:0.5s;
  cursor:pointer;
    margin: 0 4px;
}
.slide img{
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-150px * 10));
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(calc(-150px * 10));
  }
  100% {
    transform: translateX(0px);
  }
}

@media screen and (max-width: 768px) {
  .slide-track {
    width: calc(80px * 20);
  }

  .slide-track2 {
    width: calc(80px * 20);
  }

  .slide {
    width: 80px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-80px * 10));
    }
  }

  @keyframes scroll2 {
    0% {
      transform: translateX(calc(-80px * 10));
    }
    100% {
      transform: translateX(0px);
    }
  }
}
@media screen and (max-width: 768px) {
    .section-6 {
        padding: 50px 10%;
    }
    .client-slide-track .slide {
        width: 120px;
    }
    .client-slide-track {
        width: calc(120px * 36);
    }
}
@media screen and (max-width: 575px) {
    .section-6 {
        padding: 50px 10%;
    }
    .client-slide-track .slide {
        width: 120px;
    }
    .client-slide-track {
        width: calc(120px * 36);
    }
}


.section-7{
    display: flex;
}
.s7-col-1, .s7-col-2, .s7-col-3{
    width: 33.33%;
}
.s7-col-1, .s7-col-3{
    background: rgba(0, 85, 204, 0.05);
    padding: 5%;
}
.s7-col-1 h2, .s7-col-3 h2{
    color: #05c;
    font-size: 28px;
    font-family: 'GilroyBold';
    margin: 0 0 10px 0;
}
.s7-col-1 p, .s7-col-3 p {
    color: #444;
    font-size: 16px;
    margin: 0 0 30px 0;
}
.s7-col-1 img{
    width: 60%;
}
.s7-col-2{
    background: rgba(0, 85, 204, 1);
    padding: 5%;
}
.s7-col-2 h2{
    color: #fff;
    font-size: 28px;
    font-family: 'GilroyBold';
    margin: 0 0 10px 0;
}
.s7-col-2 p{
    color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin: 0 0 30px 0;
}
.s7-col-2 a, .s7-col-2 a:hover, .s7-col-2 a:focus, .s7-col-2 a:active{
    font-family: 'GilroyMedium';
    padding: 10px 20px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-decoration: none;
  color: white;
  border-radius: 7px;
}
.s7-col-icon-row {
    display: flex;
    margin: 0 0 15px 0;
}
.s7-col-icon-row-left{
    width: 10%;
}
.s7-col-icon-row-right{
    width: 90%;
    padding-left: 15px;
    display: flex;
    align-items: center;
}
.s7-col-icon-row-left img{
    width: 100%;
}
.s7-col-icon-row-right p{
    font-size: 16px;
    margin: 0;
}
@media screen and (max-width: 768px) {
    .section-7 {
        flex-wrap: wrap;
    }
    .s7-col-1, .s7-col-2, .s7-col-3{
        width: 100%;
        padding: 10%;
    }
    .s7-col-icon-row-left {
        width: 5%;
    }
    .s7-col-icon-row-right {
        width: 95%;
    }
}
@media screen and (max-width: 575px) {
    .section-7 {
        flex-wrap: wrap;
    }
    .s7-col-1, .s7-col-2, .s7-col-3{
        width: 100%;
        padding: 10%;
    }
    .s7-col-icon-row-left {
        width: 10%;
    }
    .s7-col-icon-row-right {
        width: 90%;
    }
}


.section-8{
    padding: 70px 0;
    /*background: rgba(0, 85, 204, 0.1);*/
}
.section-8-title-row {
    padding: 0 5%;
    display: flex;
    margin: 0 0 15px 0;
}
.section-8-title-row-left, .section-8-title-row-right{
    width: 50%;
}
.section-8-title-row-right{
    display: flex;
  justify-content: flex-end;
}
.section-8-title-row-right button{
    width: 40px;
  height: 40px;
  background: #222;
  border: 0;
  box-shadow: none;
  outline: 0;
  border-radius: 20px;
  padding: 0;
  color: white;
   margin-right: 10px;
}
.section-8-title-row-right button i{
    font-size: 24px;
}
.section-8-title-row-left h2 {
    font-family: 'GilroyBold';
    font-size: 32px;
    margin: 0 0 15px 0;
    color: #05c;
}
.section-8-title-row-left p {
  font-family: 'GilroyMedium';
  font-size: 24px;
  color: #444;
  margin: 30px 0 30px 0;
  line-height: 1.6;
}
.section-8-slider-card {
  background: rgba(0, 85, 204, 0.05);
  padding: 10%;
}
.section-8-slider-card img{
    width: 100%;
}
@media screen and (max-width: 768px) {
    .section-8 {
        padding: 50px 0;
    }
    .section-8-title-row-left h2 {
        font-size: 28px;
    }
}
@media screen and (max-width: 575px) {
    .section-8-title-row-right button {
        width: 35px;
        height: 35px;
    }
    .section-8-title-row-right button i {
        font-size: 16px;
    }
    .section-8-title-row{
        padding: 0 10%;
    }
    .section-8 {
        padding: 50px 0;
    }
    .section-8-title-row-left h2 {
        font-size: 28px;
    }
}

.section-9{
    display: flex;
}
.s9-col-1, .s9-col-2{
    width: 50%;
}
.s9-col-1{
    text-align: center;
    background: rgba(0, 85, 204, 0.05);
}
.s9-col-1 img{
    width: 60%;
}
.s9-col-2{
    background: #222;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.s9-col-2 h2{
    color: white;
  font-size: 24px;
  font-family: 'GilroyMedium';
    margin: 0 0 20px 0;
}
.s9-col-2 p{
    color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0 0 10px 0;
}
.s9-col-2 a, .s9-col-2 a:hover, .s9-col-2 a:focus, .s9-col-2 a:active{
    font-family: 'GilroyMedium';
    padding: 10px 20px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-decoration: none;
  color: white;
  border-radius: 7px;
}
@media screen and (max-width: 992px) {
    .s9-col-1 img {
      width: 75%;
    }
}
@media screen and (max-width: 768px) {
    .section-9 {
        flex-wrap: wrap;
    }
    .s9-col-1, .s9-col-2 {
        width: 50%;
    }
    .s9-col-2 {
        padding: 10%;
    }
    .s9-col-2 h2 {
        font-size: 22px;
    }
    .s9-col-1 img {
      width: 90%;
    }
}
@media screen and (max-width: 575px) {
    .section-9 {
        flex-wrap: wrap;
    }
    .s9-col-1, .s9-col-2 {
        width: 100%;
    }
    .s9-col-2 {
        padding: 10%;
    }
    .s9-col-2 h2 {
        font-size: 22px;
    }
    .s9-col-1 img {
      width: 60%;
    }
}