/* CSS
  1. GENERAL
  2 .COLORS
  5. Menu
  6. cta-quotes
  7. icon-boxes
  8. service
  9. form
 10. footer
  
 11. home
 
*/


/* 1. GENERAL */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {font-family: "Open Sans", sans-serif;color: #444444;transition: 2s;}
a {text-decoration: none;color: #0880e8;}
a:hover {color: #2b99f8;text-decoration: none;}
h1, h2, h3, h4, h5, h6 {font-family: "Raleway", sans-serif;}

.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}


.img-logo {padding: 10px 0; height: 10vh;}
.container-fluid {margin: 0; padding: 0;}
.display-4 {font-size: 2.5rem;}
.img-circle {border-radius: 50%; display: flex; align-items: center}
.img-circle-1 {height: 5vh;width: 5vh;} .img-circle-1 img {height: 4vh;width: 4vh;margin: 0 auto;}
.img-circle-2 {height: 7vh;width: 7vh;}.img-circle-2 img {height: 5vh;width: 5vh;margin: 0 auto;}
.img-circle-3 {height: 12vh;width: 12vh;}.img-circle-3 img {height: 8vh;width: 8vh;margin: 0 auto;}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0880e8;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2194f7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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 #0880e8;
  border-top-color: #bfe0fd;
  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) {
  .img-logo {margin-left: 10px; padding: 7px 0; height: 7vh;}
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* 2. COLORS */
.bg-bluette {background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9));}
.bg-mygreen {background-color: #387E34;}
.bg-mygreen-1 {background-color: #EBF2EA;}
.bg-mygreen-2 {background-color: #D7E5D6;}
.bg-mygreen-3 {background-color: #C3D8C1;}
.bg-mygreen-4 {background-color: #AFCBAE;}
.bg-mygreen-5 {background-color: #9CBF9A;}
.bg-mygreen-6 {background-color: #87B185;}
.bg-mygreen-7 {background-color: #387E34;}
.text-mygreen {color: #387E34;}
.text-mygreen-1 {color: #EBF2EA;}
.text-mygreen-2 {color: #D7E5D6;}
.text-mygreen-3 {color: #C3D8C1;}
.text-mygreen-4 {color: #AFCBAE;}
.text-mygreen-5 {color: #9CBF9A;}
.text-mygreen-6 {color: #87B185;}
.text-mygreen-7 {color: #387E34;}

.bg-myblue {background-color: #193C70;}
.bg-myblue-1 {background-color: #e6efef;}
.bg-myblue-2 {background-color: #cde0e0;}
.bg-myblue-3 {background-color: #b4d0d1;}
.bg-myblue-4 {background-color: #9dc2c2;}
.bg-myblue-5 {background-color: #86b4b4;}
.bg-myblue-6 {background-color: #61a7a7;}
.bg-myblue-7 {background-color: #519c9c;}
.text-myblue {color: #193C70 !important;}


/* 5. MENU */
.main-menu {height: 10vh;}
.main-menu .container{padding-left: 0; padding-right: 0;}
.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

/* mobile */
.navbar-collapse.collapse.show {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px;
}
.navbar-collapse.collapse.show li a {
  color: white;
  padding-left: 25px;
}

.mobile-menu{
	position: absolute;
	width: 100%;
	opacity:0;
	text-align: center;
	margin-top: 221px;
	background-color: white;   
   -webkit-transition:0.4s;
    -moz-transition:0.4s;
    -ms-transition:0.4s;
    -o-transition:0.4s;
    transition:0.4s; 
}
.mobile-menu.opened{
	opacity:1;
}

@media (min-width: 992px) {
  .mobile-menu{
    display:none;
  }
}



/* 11. HOME */
.hero {margin-top: 10vh;}
.hero a {border-radius: 0;}
.hero a:hover {background-color: #05365F; color: #fff !important;}
.main-topic {
  background-image: url(../img/main_page.jpg);
  background-position: center top; 
  background-size: cover;
  min-height: 70vh;  
}

.skill {width: 10rem; height: 10rem;}

/* 6. cta-quotes */
.cta-quotes {
  background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9)), url("../img/cta-quotes-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta-quotes h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta-quotes p {
  color: #fff;
}
.cta-quotes .cta-quotes-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
}
.cta-quotes .cta-quotes-btn:hover {background: #387E34;}

.privacy-service {
  background: url(../img/box-privacy.png) center center;
  background-size: cover;
  position: relative;
  top:0; right:0;bottom:0;left:0;
}

@media (max-width: 1024px) {
  .cta-quotes {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta-quotes .cta-quotes-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/* 7. icon-boxes */
a.icon-box {
  position: relative;
  top:0; right:0;bottom:0;left:0;
  width: 100%; height: 100%;
}

.icon-box {min-height: 40vh;margin-top: 2vh;padding-left: 2vh;}
.icon-box ul li {margin-left: -1.3vh;}

/* 8. service */
.servicebox {
}
.service {
  background: #EAEAEA; 
  border: 10px solid white; 
  min-height: 10vh; 
  margin: 0; 
  /* box-shadow: 2px 2px 1px 0px #193C70;
  padding: 10px;  */
}
.service img {
  height: 5rem; 
  /*position: relative; top: -50px;*/
  margin-bottom: 2rem;
}
.service p {padding: 10px; min-height: 22vh; 
  /*position: relative; top: -50px;*/
}
.img-eddiliziainfune {
  height: 12vh !important; 
  width: 12vh !important;
}

.img-eddiliziainfune-tiny {
  height: 8vh !important; 
  width: 8vh !important;
}

@media screen and (max-width: 768px) {
  .service p {width: 80%;}
}

/* 9. FORM */
.form-control, .btn {border-radius: 0 !important;}
#contactForm a {}
#contactForm > a:hover {background-color: #30699A; color: white !important; }


/* 10 footer */
.copyright,.credits {font-size: 0.9rem;}
footer {margin: 0;}
#footer .footer-top {
  background: #065fad;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  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: #5db1f9;
  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.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
.copyright {
  text-align: center;
  padding-top: 30px;
}
.credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;

}
.credits, .credits a {
  color: #f6b024;
}