/**
* Template Name: Techie - v3.0.0
* Template URL: https://bootstrapmade.com/techie-free-skin-bootstrap-3/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #5846f9;
  text-decoration: none;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

hr {
  height: 3rem;
}

.img {
  width: 17px;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #3095f3e6;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #1f50d6e6 ;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5846f9;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%);

  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 30px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  /* color: black; */
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}
/* 
.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
} */

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: rgb(255, 255, 255, 0.8);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #5846f9;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}



/* Get Startet Button */
.get-started-btn {
  margin-left: 25px !important;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

@media only screen and (min-width: 390px) and (max-width: 844px) {
  .get-started-btn  {
    margin: 0 60px 0 0 !important;
    
  }
  
}



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #5846f9;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
 .dep{
    display: none !important;
  }
}

@media (min-width: 768px) {
  .deps{
     display: none !important;
   }
 }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#hero .container, #hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #5846f9;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 68px;
  }
  /* #hero .animated {
    -webkit-animation: none;
    animation: none;
  } */
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  /* background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat; */
  padding-bottom: 0 !important;
}

.cliens .section-title {
  padding-bottom: 40 !important;
}

.cliens img {
  /* width: 100px; */
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 20px 0;
  -webkit-filter: grayscale(300);
  filter: grayscale(300);
}

.cliens img:hover {
  -webkit-filter: contrast(1);
  filter: contrast(1);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens .section-title h2::after {
    content: "";
    width: 38px;
    height: 2px;
    display: inline-block;
    background: #4f87c7;
    margin: 4px 10px;
  }
}

@media (max-width: 768px) {
  #cliens img {
   max-width: 100% !important; 
   padding: 15px 0;
  }
}

@media (max-width: 768px) {
  #cliens .col-lg-2 {
   width: 50%;
  }
}

/* .col-xs-2-5, 
.col-sm-2-5, 
.col-md-2-5, 
.col-lg-2-5 {
position: relative;
min-height: 1px;
padding-left: 50px;
padding-right: 50px;
}
.col-xs-2-5 {
width: 20%;
}

@media (min-width: 320px) {
  
  .col-lg-2-5 {
  width: 50%;
  padding-left: 0px !important;
padding-right: 0px !important;
  }
  }

@media (min-width: 768px) {
.col-lg-2-5 {
float: left;
padding-left: 50px !important;
padding-right: 50px !important;
}
.col-lg-2-5 {
width: 20%;
}
}

@media (min-width: 992px) {
.col-lg-2-5 {
float: left;

}
.col-lg-2-5 {
width: 20%;
}
}

@media (min-width: 1200px) {
.col-lg-2-5 {
float: left;
}
.col-lg-2-5 {
width: 20%;
}
} */




/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/


#slider {
  padding: 10px 0;
  /* background: rgba(98, 171, 240, 0.3) !important; */
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
}

.slick-slide img {
  max-width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}

.slick-track:after
{
  clear: both;
}

.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide
{
  float: right;
}

.slick-slide img
{
  display: block;
    width: 150px;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    /* padding: 15px 0; */
    /* -webkit-filter: grayscale(100);
    filter: grayscale(100); */
    filter: contrast(100);
    -webkit-filter: contrast(100);
}

#slider img:hover {
  -webkit-filter:invert(100);
  filter: invert(100);
  transform: scale(1.1);
}

.slick-slide.slick-loading img
{
  display: none;
}

.slick-slide.dragging img
{
  pointer-events: none;
}

.slick-initialized .slick-slide
{
  display: block;
}

.slick-loading .slick-slide
{
  visibility: hidden;
}

.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media (max-width: 768px) {
  .slider .section-title h2::after {
    content: "";
    width: 38px;
    height: 2px;
    display: inline-block;
    background: #4f87c7;
    margin: 4px 10px;
  }
}

@media (max-width: 768px) {
  .slick-slide img {
   max-width: 100% !important; 
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  
  padding-bottom: 40px;
}

.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .section-title p{
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1.5;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
  }

  .section-title p::after {
    content: "";
    width: 60px !important;
    height: 2px;
    display: inline-block;
    background: #4f87c7;
    margin: 4px 10px;
    
  }
  }

.section-title p::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #4f87c7;
  margin: 4px 10px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #485664;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-title h3 {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  color: #7c7a7a;
  font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 40 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
  text-align: center;
}

.about .icon-box {
  margin-top: 30px;
}

#about .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1acc8d;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1acc8d;
  border-color: #1acc8d;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}

.about .icon-box .description {
  margin-top: auto;
  /* margin-left: 50px !important;
  margin-right: 50px !important; */
  line-height: 30px;
  font-size: 18px;
  text-align: center;
}

.about img {
  background-size: contain;
  /* height: 400px; */
  /* width: 600px; */
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  #about p {
      margin-left: 20px;
      margin-right: 20px;
  }
  }
  


@media (min-width: 992px) {
.order-lg-2 {
    order: 2!important;
}
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-lg .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-top: 1.5rem;
}

.services-lg img {
  max-width: 400px;
}

.services-lg .icon-box .icon {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services-lg .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services-lg .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services-lg .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services-lg .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-lg .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.services-lg .icon-box p {
  line-height: 24px;
  font-size: 15.5px;
  margin-bottom: 0;
  /* height: 170px; */
}

/* .services-lg .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
} */

.services-lg .iconbox-blue i {
  color: #47aeff;
}

.services-lg .iconbox-blue:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services-lg .iconbox-orange i {
  color: #ffa76e;
}

.services-lg .iconbox-orange:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services-lg .iconbox-pink i {
  color: #e80368;
}

.services-lg .iconbox-pink:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services-lg .iconbox-yellow i {
  color: #ffbb2c;
}

.services-lg .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services-lg .iconbox-red i {
  color: #ff5828;
}

.services-lg .iconbox-red:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services-lg .iconbox-teal i {
  color: #11dbcf;
}

.services-lg .iconbox-teal:hover .icon i {
  color: #fff;
}

.services-lg .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

#services-lg .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color:  rgb(21, 233, 194);
  border: 2px solid rgb(21, 233, 194);
}

#services-lg .btn-get-started2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: rgb(255, 110, 182);
  border: 2px solid rgb(255, 110, 182);
}

#services-lg .btn-get-started3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: rgb(109, 207, 230);
  border: 2px solid rgb(109, 207, 230);
}

#services-lg .btn-get-started:hover {
  background: linear-gradient(25deg, rgb(23, 255, 211) 0%, rgb(168, 232, 17) 95%);;
  color: white;
  border: none;
}

#services-lg .btn-get-started2:hover {
  background: linear-gradient(25deg, rgb(255, 110, 182) 0%, rgb(111, 0, 255) 95%);
  color: white;
  border: none;
}

#services-lg .btn-get-started3:hover {
  background: linear-gradient(25deg, rgb(109, 207, 230) 0%, rgb(16, 69, 104) 95%);
  color: white;
  border: none
  ;
}


@media (max-width: 992px) { 
  .services-lg .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }
  .services-lg img {
    max-width: 100px;
    margin-bottom: 20px;
  }
    }



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-top: 1.5rem;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 15.5px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

#services .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #3095f3e6;
  border: 2px solid #3095f3e6;
}

#services .btn-get-started:hover {
  background: #3095f3e6;
  color: white;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  background: #fff;
  padding-top: 50px;
}

.team .member img {
  max-width: 100%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 17px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: rgba(41, 141, 235, 0.9);
}

.team .member .social i {
  font-size: 25px;
  margin: 0 2px;
}

/* @media (max-width: 575px) {
  #team .order {
    
  }
} */



/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
  padding-top: 80px;
  background: #f7f9fc;
}

.why-us .img-bg {
  /* min-height: 400px;
  background-size: cover; */

  min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}


/* .why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: rgb(132, 138, 139);
} */

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3095f3e6;
}





@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

.why-us a {
  display: inline-block;
  background: #3095f3e6;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .why-us .section-title .item1 {
    display: none;
  }
}

@media (min-width: 900px) {
  .why-us .section-title .item2 {
    display: none;
  }
}

@media (max-width: 900px) {
  .why-us  {
    padding-top: 50px;
  }
}

/*-- Le nostre competenze digitali --*/


.radix-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}
.radix-section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 0.98rem;
}

/* Testi + micro-animazioni */
.radix-service-item {
  position: relative;
  padding: 16px 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.radix-service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111827;
}
.radix-service-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  position: relative;
}
.radix-service-item p::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  width: 2px;
  height: 1.2em;
  background: #8b5cf6;
  opacity: 0;
}

/* effetto “scrittura” con leggera scalatura */
@keyframes radix-reveal {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; transform: scale(0.99); }
  30%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); }
}
@keyframes radix-caret {
  0%,40% { opacity: 1; }
  50%,100% { opacity: 0; }
}

/* tempi sfalsati per ogni blocco */
.type-1 p { animation: radix-reveal 2s ease forwards; animation-delay: .3s; }
.type-1 p::after { animation: radix-caret .9s step-end infinite; animation-delay: .3s; }

.type-2 p { animation: radix-reveal 2s ease forwards; animation-delay: .7s; }
.type-2 p::after { animation: radix-caret .9s step-end infinite; animation-delay: .7s; }

.type-3 p { animation: radix-reveal 2s ease forwards; animation-delay: 1.1s; }
.type-3 p::after { animation: radix-caret .9s step-end infinite; animation-delay: 1.1s; }

.type-4 p { animation: radix-reveal 2s ease forwards; animation-delay: 1.5s; }
.type-4 p::after { animation: radix-caret .9s step-end infinite; animation-delay: 1.5s; }

/* hover morbido su desktop */
@media (hover: hover) and (pointer: fine) {
  .radix-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }
}

/* Colonne con linee di collegamento come nell’immagine (solo desktop) */
.radix-service-item-top { padding-top: 38px; }
.radix-service-item-bottom { padding-bottom: 38px; }

@media (min-width: 992px) {
  .radix-col-left .radix-service-item-top::before,
  .radix-col-left .radix-service-item-bottom::before,
  .radix-col-right .radix-service-item-top::before,
  .radix-col-right .radix-service-item-bottom::before {
    content: "";
    position: absolute;
    width: 120px;
    border-top: 3px solid #8b5cf6;
  }
  .radix-col-left .radix-service-item-top::before {
    top: 18px;
    right: -125px;
  }
  .radix-col-left .radix-service-item-bottom::before {
    bottom: 18px;
    right: -125px;
  }
  .radix-col-right .radix-service-item-top::before {
    top: 18px;
    left: -125px;
  }
  .radix-col-right .radix-service-item-bottom::before {
    bottom: 18px;
    left: -125px;
  }
}


/* icona centrale con micro-animazioni */
.radix-icon {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(129, 140, 248, 0.35);
  animation:
    radix-icon-float 4s ease-in-out infinite,
    radix-icon-fade 1.2s ease-out forwards;
  opacity: 0;
}
@keyframes radix-icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes radix-icon-fade {
  to { opacity: 1; }
}
.radix-icon svg {
  width: 78%;
  height: 78%;
}
.radix-icon rect,
.radix-icon circle,
.radix-icon path,
.radix-icon line,
.radix-icon polyline {
  stroke: #ffffff;
  stroke-width: 2.4;
  fill: none;
}

/* RESPONSIVE: come nella prima versione Bootstrap */
@media (max-width: 991.98px) {
  .radix-col-left,
  .radix-col-right {
    text-align: center;
  }
  .radix-services-center {
    margin: 24px 0;
    min-height: 260px;
  }
  .radix-circle {
    width: 260px;
    height: 260px;
  }
  .radix-icon {
    width: 150px;
    height: 150px;
  }
}

/* Accessibilità: riduci le animazioni se richiesto */
@media (prefers-reduced-motion: reduce) {
  .radix-circle::before,
  .radix-icon,
  .radix-service-item p,
  .radix-service-item p::after {
    animation: none !important;
  }
  .radix-service-item p {
    opacity: 1;
    clip-path: none;
  }
}

/* ================================
   CERCHIO CENTRALE – versione unica
================================ */

.radix-services-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

/* usa SOLO .radix-circle (come nel tuo HTML) */
.radix-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid #e5e7eb; /* bordo grigio sottile */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* arco colorato sottile con gap */
.radix-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    #8b5cf6 0deg 120deg,
    #f59e0b 120deg 210deg,
    #10b981 210deg 260deg,
    transparent 260deg 360deg
  );
  /* linea lungo il bordo esterno */
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 4px));

  animation:
    radix-circle-rotate 16s linear infinite,
    radix-circle-hue 10s ease-in-out infinite alternate;
  transform-origin: center center;
}

/* rotazione perfettamente uniforme */
@keyframes radix-circle-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* variazione di colore leggera */
@keyframes radix-circle-hue {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(160deg); }
}

/* icona centrale (puoi lasciare la tua versione, questa è coerente con il tuo CSS) */
.radix-icon {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(129, 140, 248, 0.35);
  animation:
    radix-icon-float 4s ease-in-out infinite,
    radix-icon-fade 1.2s ease-out forwards;
  opacity: 0;
}
@keyframes radix-icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes radix-icon-fade {
  to { opacity: 1; }
}
.radix-icon svg {
  width: 78%;
  height: 78%;
}
.radix-icon rect,
.radix-icon circle,
.radix-icon path,
.radix-icon line,
.radix-icon polyline {
  stroke: #ffffff;
  stroke-width: 2.4;
  fill: none;
}

/* RESPONSIVE per il cerchio */
@media (max-width: 4000px) {
  .radix-col-left,
  .radix-col-right {
    text-align: center;
  }
  .radix-services-center {
    margin: 24px 0;
    min-height: 260px;
  }
  .radix-circle {
    width: 260px;
    height: 260px;
  }
  .radix-icon {
    width: 150px;
    height: 150px;
  }
}

/* Accessibilità */
@media (prefers-reduced-motion: reduce) {
  .radix-circle::before,
  .radix-icon,
  .radix-service-item p,
  .radix-service-item p::after {
    animation: none !important;
  }
  .radix-service-item p {
    opacity: 1;
    clip-path: none;
  }
}


/*-- end --*/


/* ===========================================================
   SECTION: CLOUD COMPUTING – stile Radix (come mock)
=========================================================== */

.radix-cloud {
  background: #ffffff;
}

/* ========================= */
/*  COLONNA SINISTRA         */
/* ========================= */

.radix-cloud-left {
  display: flex;
  flex-direction: column;
}

/* Icona + titolo sulla stessa riga */
.radix-cloud-header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

/* Icona cloud 3D */
.radix-cloud-icon-wrapper {
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cloudFloat 5s ease-in-out infinite;
}
.radix-cloud-icon {
  width: 100%;
  height: auto;
  display: block;
}

/* Titolo */
.radix-cloud-title {
  flex: 1 1 auto;
  font-weight: 800;
  font-size: clamp(2.6rem, 3.5vw, 3.8rem);
  line-height: 1.05;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: cloudTitleIn 0.8s cubic-bezier(.22,.8,.25,1) 0.15s forwards;
}

/* Feature list (più vicina al titolo) */
.radix-cloud-features {
  margin-top: 2.8rem;
}

/* Singola feature */
.radix-cloud-feature {
  align-items: flex-start;
  margin-bottom: 2.1rem;
}
.radix-cloud-feature:last-child {
  margin-bottom: 0;
}
.radix-cloud-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.radix-cloud-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Icone check stile “pill” */
.radix-cloud-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0 12px 22px rgba(148, 163, 184, 0.25);
  animation: checkIdle 3.2s ease-in-out infinite alternate;
}
.radix-cloud-feature-icon.purple {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.5);
  color: #8b5cf6;
}
.radix-cloud-feature-icon.yellow {
  background: #fffbeb;
  border-color: rgba(234, 179, 8, 0.5);
  color: #eab308;
}

/* Hover leggero sui check */
@media (hover:hover) and (pointer:fine) {
  .radix-cloud-feature:hover .radix-cloud-feature-icon {
    animation: checkHover 0.35s ease-out forwards;
  }
}

/* ========================= */
/*  COLONNA DESTRA – CARDS   */
/* ========================= */

.radix-cloud-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Card container */
.radix-cloud-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(20px);
  animation: cloudCardIn 0.7s ease-out forwards;
}
.radix-cloud-card:nth-child(2) {
  animation-delay: 0.2s;
}

.radix-cloud-card-inner {
  padding: 30px 32px;
}

/* Pill sopra card */
.radix-cloud-pill {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.radix-cloud-pill.red {
  border: 1px solid #ef4444;
  color: #b91c1c;
  background: #fee2e2;
}
.radix-cloud-pill.green {
  border: 1px solid #22c55e;
  color: #15803d;
  background: #dcfce7;
}

/* Valore % */
.radix-cloud-value {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.radix-cloud-card-text p {
  margin: 0;
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Arc + quadrato a destra */
.radix-cloud-visual {
  width: 120px;
  height: 90px;
  position: relative;
}

/* arco sottile, purple/cyan con stessa forma */
/* .radix-cloud-arc {
  position: absolute;
  inset: 0;
  border-radius: 100%;
  mask: radial-gradient(farthest-side, transparent 62%, #000 63%);
  opacity: 1;
}
.radix-cloud-arc.purple {
  background: conic-gradient(#8b5cf6 0deg 120deg, transparent 120deg 360deg);
}
.radix-cloud-arc.cyan {
  background: conic-gradient(#38bdf8 0deg 120deg, transparent 120deg 360deg);
} */

.radix-cloud-arc-svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radix-cloud-arc-svg svg {
  width: 100%;
  height: 100%;
}


/* Quadrato icona – sempre visibile, niente animazione rischiosa */
.radix-cloud-square {
  position: absolute;
  bottom: 10px;
  right: 38px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #8b5cf6;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 14px 24px rgba(129, 140, 248, 0.45);
  opacity: 1;          /* <— icone sempre visibili */
  transform: scale(1); /* nessuna animazione */
}

/* Hover card (desktop) */
@media (hover:hover) and (pointer:fine) {
  .radix-cloud-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  }
}

/* ========================= */
/*  ANIMAZIONI KEYFRAMES     */
/* ========================= */

@keyframes cloudFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* titolo che entra dal basso */
@keyframes cloudTitleIn {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* card che sale e appare */
@keyframes cloudCardIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* idle leggera check */
@keyframes checkIdle {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(148, 163, 184, 0.0);
  }
  100% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 22px rgba(148, 163, 184, 0.30);
  }
}

/* micro-bounce on hover */
@keyframes checkHover {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.03); }
}

/* ========================= */
/*  RESPONSIVE               */
/* ========================= */

@media (max-width: 991.98px) {
  .radix-cloud-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .radix-cloud-title {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .radix-cloud-header {
    align-items: center;
    text-align: center;
  }
  .radix-cloud-title {
    text-align: center;
  }
  .radix-cloud-feature {
    justify-content: center;
    text-align: left;
  }
}

/* Accessibilità */
@media (prefers-reduced-motion: reduce) {
  .radix-cloud-icon-wrapper,
  .radix-cloud-title,
  .radix-cloud-feature-icon,
  .radix-cloud-card {
    animation: none !important;
    transition: none !important;
  }
  .radix-cloud-title,
  .radix-cloud-card {
    opacity: 1;
    transform: none;
  }
}


.radix-services-stack .radix-cloud-block + .radix-cloud-block {
  margin-top: 4rem;
}


.radix-services-all section.radix-cloud {
  position: relative;
  overflow: hidden;
}

/* tutte le sfumature usano un ::before con opacità bassa */
.radix-services-all section.radix-cloud::before {
  content: "";
  position: absolute;
  inset: -80px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

/* Disattivo l'uso di ::before per le sfumature */
.radix-services-all section.radix-cloud::before {
  content: none;
}

.radix-services-all section.radix-cloud {
  position: relative;
  overflow: visible;
}

.radix-services-all section.radix-cloud::before {
  content: "";
  position: absolute;
  inset: -120px 0;      /* molto grande per sovrapporsi tra le sezioni */
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;         /* controlla intensità globale */
}

/* Cloud: leggero viola-azzurro in alto a sinistra */
.radix-cloud--cloud::before {
  background:
    radial-gradient(circle at 5% 0%, rgba(129, 140, 248, 0.28) 0, transparent 60%);
}

/* DevOps: blu leggero dalla metà */
.radix-cloud--devops::before {
  background:
    radial-gradient(circle at 10% 40%, rgba(59, 130, 246, 0.24) 0, transparent 60%);
}

/* AI: viola/verde molto soft */
.radix-cloud--ai::before {
  background:
    radial-gradient(circle at 8% 30%, rgba(168, 85, 247, 0.24) 0, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.16) 0, transparent 60%);
}

/* Web & Mobile: azzurrino in basso a sinistra */
.radix-cloud--web::before {
  background:
    radial-gradient(circle at 5% 100%, rgba(56, 189, 248, 0.26) 0, transparent 60%);
}


.radix-services-all {
  position: relative;
  padding-block: 4rem;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(129, 140, 248, 0.42) 0%,
      rgba(147, 51, 234, 0.28) 25%,
      rgba(129, 140, 248, 0.12) 55%,
      transparent 75%
    ),

    radial-gradient(
      circle at 90% 70%,
      rgba(56, 189, 248, 0.35) 0%,
      rgba(56, 189, 248, 0.15) 40%,
      transparent 70%
    ),

    linear-gradient(90deg, #ffffff 0%, #f9fafb 35%, #eef2ff 100%);
}


/* tutte le sotto-sezioni: niente colore pieno,
   lasciamo vedere il gradient del wrapper */
.radix-services-all section.radix-cloud {
  background: transparent;
}

/* opzionale: bordo superiore molto leggero per separare un minimo */
.radix-services-all section.radix-cloud + section.radix-cloud {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  margin-top: 3rem;
  padding-top: 3rem;
}








/* ---------------------------
   MISSION – layout & stile
---------------------------- */

/* ===========================================
   EFFETTO TESTO: DA GRIGIO A SCURO + HIGHLIGHT
   (senza mask-image, compatibile ovunque)
=========================================== */

.radix-mission-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  
  /* stato iniziale: testo “spento” */
  color: transparent;
  background-image: linear-gradient(90deg, #bfc3ca 0%, #bfc3ca 50%, #111827 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* pennellata/highlight viola semplice */
.radix-mission-title::before {
  content: "";
  position: absolute;
  inset: 0 -4px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0.25) 20%,
    rgba(139, 92, 246, 0.55) 50%,
    rgba(139, 92, 246, 0.25) 80%,
    rgba(139, 92, 246, 0) 100%
  );
  transform-origin: left center;
  transform: scaleX(0.1);
  opacity: 0;
  pointer-events: none;
}

/* quando entra in viewport, parte l'effetto */
.radix-mission-title.in-view {
  animation: radix-text-wipe 1.8s ease-out forwards;
}
.radix-mission-title.in-view::before {
  animation: radix-highlight-swipe 1.4s ease-out forwards;
  animation-delay: 0.15s;
}

/* Testo che si “colora” leggendo */
@keyframes radix-text-wipe {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

/* Highlight viola che scorre sopra il testo */
@keyframes radix-highlight-swipe {
  0% {
    opacity: 0;
    transform: scaleX(0.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleX(1.1);
  }
}

:root {
  --radix-purple: #8b5cf6;
  --radix-dark: #111827;
  --radix-gray: #4b5563;
}

/* ---- Testo sinistra ---- */

.radix-mission-label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.radix-mission-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--radix-dark);
  line-height: 1.25;
}

/* ---- Grafica destra ---- */

.mission-graphic {
  position: relative;
  min-height: 380px;
}

/* cerchio morbido dietro il razzo */
.mission-bg-circle {
  position: absolute;
  inset: 12% 20%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 20%, #e5e7eb, transparent 65%);
  filter: blur(0.5px);
}

/* wrapper razzo */
.mission-rocket-wrapper {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
  width: 260px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: rocket-float 4s ease-in-out infinite;
}

.mission-rocket-img {
  width: 100%;
  height: auto;
  display: block;
}

/* fiamma */
.mission-flame {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 42px;
  height: 72px;
  background: radial-gradient(circle at 50% 0, #fef3c7 0, #f97316 40%, #7c2d12 80%);
  border-radius: 999px 999px 40% 40%;
  filter: blur(1px);
  opacity: 0.9;
  animation: flame-flicker 0.4s ease-in-out infinite alternate;
}

/* fumo/ombra */
.mission-smoke {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 70px;
  background: radial-gradient(circle at 50% 0, rgba(148, 163, 184, .45), transparent 65%);
  filter: blur(3px);
  opacity: 0.9;
}

/* ---- Esagoni + testo ---- */

.mission-badge {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 280px;
  animation: badge-float 6s ease-in-out infinite;
}

.badge-hex {
  position: relative;
  width: 70px;
  aspect-ratio: 1 / 1;
  clip-path: polygon(25% 4%, 75% 4%, 96% 50%, 75% 96%, 25% 96%, 4% 50%);
  background: var(--radix-purple);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-hex::before {
  content: "";
  position: absolute;
  inset: 8px;
  clip-path: inherit;
  border-radius: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.9);
}
.badge-icon {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.3rem;
}

.badge-text h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--radix-dark);
}
.badge-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--radix-gray);
}

/* posizionamento simile al visual */
.badge-top-right {
  right: 2%;
  top: 12%;
}
.badge-bottom-left {
  left: 4%;
  bottom: 8%;
}
.badge-bottom-right {
  right: 4%;
  bottom: 8%;
}

/* ---- Linee tratteggiate ---- */

.mission-curve {
  position: absolute;
  border: 2px dashed rgba(156, 163, 175, 0.9);
  border-color: rgba(156, 163, 175, 0.9) transparent transparent transparent;
  border-radius: 50%;
  animation: curve-pulse 3s ease-in-out infinite;
}

.curve-top {
  width: 240px;
  height: 160px;
  right: 10%;
  top: 6%;
  transform: rotate(-12deg);
}
.curve-bottom-left {
  width: 230px;
  height: 140px;
  left: 4%;
  bottom: 6%;
  transform: rotate(195deg);
}
.curve-bottom-right {
  width: 230px;
  height: 140px;
  right: 4%;
  bottom: 6%;
  transform: rotate(345deg);
}

/* ---- Animazioni micro ---- */

@keyframes rocket-float {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}

@keyframes flame-flicker {
  0% { transform: translate(-50%, 40%) scaleY(0.95); opacity: 0.8; }
  100% { transform: translate(-50%, 42%) scaleY(1.05); opacity: 1; }
}

@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

@keyframes curve-pulse {
  0%,100% { opacity: .7; }
  50%     { opacity: 1; }
}

/* hover leggero su desktop */
@media (hover: hover) and (pointer: fine) {
  .mission-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
  }
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {
  .mission-graphic {
    margin-top: 24px;
    min-height: 420px;
  }

  .mission-rocket-wrapper {
    position: relative;
    top: 0;
  }

  .mission-bg-circle {
    inset: 8% 10%;
  }

  .mission-badge {
    position: static;
    margin-top: 18px;
  }

  .mission-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mission-curve {
    display: none !important; /* niente curve su mobile */
  }

  .badge-bottom-left,
  .badge-bottom-right,
  .badge-top-right {
    animation-delay: 0s; /* animazioni più lineari su mobile */
  }
}

@media (max-width: 575.98px) {
  .radix-mission-title {
    font-size: 1.6rem;
  }
  .mission-rocket-wrapper {
    width: 210px;
  }
}



/* ================================
   STACK TECNOLOGICO
================================ */

.radix-stack {
  position: relative;
}

/* Blocchi testo sinistra/destra */
.radix-stack-item {
  position: relative;
  max-width: 360px;
}

.radix-stack-item--left {
  padding-right: 48px;   /* spazio per la linea verso il centro */
}

.radix-stack-item--right {
  padding-left: 48px;    /* spazio per la linea verso il centro */
}

.radix-stack-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: #111827;
}

.radix-stack-item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* ================================
   CENTRO: immagine stack
================================ */

.radix-stack-center {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.radix-stack-image {
  max-width: 100%;
  height: auto;
  /* filter: drop-shadow(0 24px 45px rgba(15,23,42,.25)); */
  animation: radix-stack-float 6s ease-in-out infinite;
}

@keyframes radix-stack-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ================================
   OFFSET POSIZIONI (DESKTOP)
   – ogni blocco ha posizione diversa
================================ */

@media (min-width: 992px) {

  /* Terraform – alto e verso il centro */
  .pos-terraform {
    margin-top: 10px;
    transform: translateX(60px);
  }

  /* Flutter – più in basso e verso il centro */
  .pos-flutter {
    margin-top: 70px;
    transform: translateX(-60px);
  }

  /* Bedrock – in basso a sinistra */
  .pos-bedrock {
    margin-top: 170px;
    transform: translateX(0);
  }

  /* Serverless – intermedio a destra */
  .pos-serverless {
    margin-top: 110px;
    transform: translateX(-10px);
  }

  /* altezze minime per dare respiro */
  .radix-stack-item--terraform { min-height: 130px; }
  .radix-stack-item--flutter   { min-height: 150px; }
  .radix-stack-item--bedrock   { min-height: 170px; }
  .radix-stack-item--serverless{ min-height: 150px; }
}

/* ================================
   MOBILE / TABLET
================================ */

@media (max-width: 991.98px) {

  .radix-stack {
    text-align: center;
  }

  .radix-stack-item {
    margin-inline: auto;
  }

  .radix-stack-image {
    max-width: 260px;
    margin-bottom: 2rem;
  }

  .radix-stack-item + .radix-stack-item {
    margin-top: 2rem;
  }

  /* reset offset/transform su mobile */
  .pos-terraform,
  .pos-flutter,
  .pos-bedrock,
  .pos-serverless {
    margin-top: 20px;
    transform: none;
  }
}

/* ================================
   TITOLO + LINEA
   (sostituisce totalmente ::before/::after)
================================ */

/* wrapper titolo + linea */
.radix-stack-heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* sinistra: titolo → linea */
.radix-stack-item--left .radix-stack-heading {
  justify-content: flex-start;
}

/* destra: linea ← titolo */
.radix-stack-item--right .radix-stack-heading {
  justify-content: flex-end;
}

/* linea orizzontale */
.radix-stack-line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  min-width: 130px;
  max-width: 190px;
}

/* puntino alla fine della linea */
.radix-stack-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translate(50%, -50%);
  background: currentColor;
  box-shadow: 0 0 0 10px currentColor;
  opacity: 0.16;
}

/* colori per ogni tecnologia (linea + puntino) */
.radix-stack-line--terraform {
  background: #a855f7;
  color: #a855f7;
}

.radix-stack-line--bedrock {
  background: #22c55e;
  color: #22c55e;
}

.radix-stack-line--flutter {
  background: #f59e0b;
  color: #f59e0b;
}

.radix-stack-line--serverless {
  background: #fb923c;
  color: #fb923c;
}


/* ============
   STACK ITEMS
================ */

.radix-stack-item {
  position: relative;
  max-width: 380px;
}

.radix-stack-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: #111827;
}

/* LINEA SOTTO IL TITOLO */
.stack-line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* PALLINO (esterno) */
.stack-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: currentColor;
  box-shadow: 0 0 0 10px rgba(0,0,0,0.06);
}

/* SINISTRA → pallino a destra */
.stack-line-left::after {
  right: -10px;
}

/* DESTRA → pallino a sinistra */
.stack-line-right::after {
  left: -10px;
}

/* COLORI */
.stack-color-terraform { background: #a855f7; color: #a855f7; }
.stack-color-bedrock { background: #22c55e; color: #22c55e; }
.stack-color-flutter { background: #f59e0b; color: #f59e0b; }
.stack-color-serverless { background: #fb923c; color: #fb923c; }

/* POSIZIONI PERSONALIZZATE (offset verticali) */
.pos-terraform { margin-top: 10px; }
.pos-flutter { margin-top: 80px; }
.pos-bedrock { margin-top: 140px; }
.pos-serverless { margin-top: 90px; }

/* MOBILE: reset posizioni */
@media (max-width: 991px) {
  .stack-line::after { display: none; }
  .pos-terraform, .pos-flutter, .pos-bedrock, .pos-serverless {
    margin-top: 20px;
  }
}




/*--------------------------------------------------------------
# AboutUs
--------------------------------------------------------------*/
.aboutUs .content h2 {
  font-weight: 700;
  font-size: 25px;
  /* line-height: 50px; */
  margin-bottom: 30px;
  color: #434175;
}



.aboutUs .content h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 30px;

}

.aboutUs .content ul {
  list-style: none;
  padding: 0;
}

.aboutUs .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.aboutUs .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

.aboutUs .content p:last-child {
  margin-bottom: 0;
}

.aboutUs .content .more-btn {
  display: inline-block;
  background: #3095f3e6;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-top: 30px;
}
/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid rgb(230, 227, 227);
  cursor: pointer;
}

.departments .nav-link h2 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h2 {
  text-decoration: underline;
}

.departments .nav-link.active {
  background: #f7fafc;
  border-color: #298debe6;
  
}

.departments .nav-link.active h2 {
  color: #298debe6;
  text-decoration: none !important;
}

.departments .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #298debe6;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



@media (max-width: 768px) {
  .departments  {
    display: none;
  }
}

#departments .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #3095f3e6;
  border: 2px solid #3095f3e6;
}

#departments .btn-get-started:hover {
  background: #3095f3e6;
  color: white;
}

.departments .more-btn {
  display: inline-block;
  background: #3095f3e6;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-top: 30px;
}



/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
  /* padding-top: 120px; */
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq img {
  max-width: 50%;
  /* margin-left: 60px !important; */
  margin-bottom: 12px;
}

.faq .title {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.faq h3 {
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  color: #7c7a7a;
}

.faq .collapse.active {
  background: #f7fafc;
  border-color: #298debe6;
}

.faq .faq-list li {
  /* border-bottom: 1px solid #d9f1f2; */
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #298debe6;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 20px;
  position: absolute;
  left: 0;
  /* top: -2px; */
}

.faq .faq-list p {
  font-size: 14px;
  margin-bottom: 10px;
}

.faq .faq-list .activity {
  margin-bottom: 10px;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #298debe6;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (min-width: 768px) {
  .faq  {
    display: none;
  }
}

.faq .more-btn {
  display: inline-block;
  background: #3095f3e6;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-top: 30px;
}




#faq .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #3095f3e6;
  border: 2px solid #3095f3e6;
}

#faq .btn-get-started:hover {
  background: #3095f3e6;
  color: white;
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
  /* background: rgba(142, 186, 230, 0.5); */
}

.cta .container {
  padding: 80px;
  background: rgba(142, 186, 230, 0.5);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 20px;
  }
}

.cta .content h3 {
  color: #485664;
  font-size: 48px;
  font-weight: 700;
}

.cta .content h3 em {
  font-style: normal;
  position: relative;
}

.cta .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(48, 149, 243, 0.5);
  z-index: -1;
}

.cta .content p {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
}

.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
  background: var(--color-primary);
}

.cta .img {
  position: relative;
}

.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

.cta a {
  display: inline-block;
  background: #3095f3e6;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #298debe6 100%;
  border-radius: 50%;
  padding: 8px;
}

.contact i {
  color: #3095f3e6;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}


.contact .form {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 30px 30px 30px;
  background: #fff;
}

.contact .form input {
  padding: 10px 15px;
}

.contact .form textarea {
  padding: 12px 15px;
}

.contact .form button[type="submit"] {
  background: #3095f3e6 !important;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .form button[type="submit"]:hover {
  background: #1f50d6e6 !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(41, 141, 235, 0.9) 100%;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: rgba(41, 141, 235, 0.9) 100%;
}

#footer .copyright-wrap {
  border-top: 1px solid #8577fb;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 768px) {
  #footer .credits {
    position: center !important;
  }
}


#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

#footer .btn-outline-primary {
  color: white;
  border-color: white;
  padding: 0.2rem 0.4rem;
  font-size: 14px;
}

#footer .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}





/*--------------------------------------------------------------
# Page Thanks
--------------------------------------------------------------*/

.jumbotron {
	position: static !important;
	padding: 2rem 1rem !important;
	/* margin-bottom: 2rem !important; */
	margin-top: 0rem !important;
	background-color: rgba(41, 141, 235, 0.9) !important;
	border-radius: 0rem !important;
	color: black !important;
  height: 800px !important;
	max-width: 100% !important;
}

.jumbotron hr {
  max-width: 100px;
  border-width: 1px;
  border-color: #fcfdff;
  margin: auto !important;
}



/*--------------------------------------------------------------
# effetto luminoso
--------------------------------------------------------------*/

sub, sup {
  font-size: 22px;
  opacity: 0.8;
}

sub {
  font-size: 36px;
  animation: flash 2s infinite;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@keyframes flash {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}


 



/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
/* .services-cards {
  background: #f7f9fc;
} */

.services-cards .card-item {
  /* border: 1px solid rgba(27, 47, 69, 0.1); */
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}



@media (max-width: 768px) {
  #services-cards .card-item .card-body {
    padding: 20px !important;
  }
}
@media (max-width: 768px) {
  #services-cards .card-bg {
    padding-bottom: 20px !important;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(41, 141, 235, 0.9) 100%);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  /* font-family: var(--font-secondary); */
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  /* color: var(--color-primary); */
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}



/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

.blog a {
  color: black;
}

.blog a:hover{
  color: #467ab3;
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.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: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.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: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}


