/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

 *{
   font-family: "Robobo",sans-serif;
 }

body {
  font-family: "Roboto", sans-serif;
  color: #444444;
  margin-top: 3%;
}

a {
  color: #1A9FE0;
}

a:hover {
  color: #0896c8;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

h2 {
  font-size: 39px;
  color: #1A9FE0;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
}

h5 {
  color: #1A9FE0;
  font-weight: bold;
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

::-moz-selection {
  /* Code for Firefox */
  color: #252626;
  background: #1A9FE0;
}

::selection {
  color: #252626;
  background: #1A9FE0;
}

/*--------------------------------------------------------------
# Contatore
--------------------------------------------------------------*/
.counts {
  padding: 75px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
  border-radius: 15px;
  border: 3px solid #1A9FE0;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 27px;
  background: #1A9FE0;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #1A9FE0;
}

.counts .count-box p {
  padding: 2;
  margin: 0;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-size: 27px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #f5f5f5;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #1A9FE0;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #929292;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #000;
}

.highlighted {
  background-color: trasparent;
  border: solid #1A9FE0 3px;
  border-radius: 12px;
  padding: 12px;
}
.highlighted-yellow {
  background-color: trasparent;
  border: solid #1A9FE0 3px;
  background-color: #f1f6fe;
  color: black;
  border-radius: 12px;
  padding: 12px;
}

/*--------------------------------------------------------------
# List
--------------------------------------------------------------*/
li {
  font-size: 25px;
  font-weight: 600;
  padding: .5em;
}

ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}

ol li {
  counter-increment: my-awesome-counter;
}

ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: #1A9FE0;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #1A9FE0;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    /* padding: 15px; */
    top: 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 28px;
}

.nav-menu a {
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  position: relative;
  color: #4c4c4c;
  transition: 0.3s;
  font-size: 15px;
  padding: 0 3px;
  font-family: "Roboto", sans-serif;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #1A9FE0;
  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: #1A9FE0;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  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;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active>a, .nav-menu .drop-down ul li:hover>a {
  color: #1A9FE0;
}

.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";
  }
}

/* Navigazione Mobile */
.mobile-nav-toggle {
  position: fixed;
  right: 17px;
  top: 22px;
  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: #222222;
}

.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: #222222;
  padding: 10px 20px;
  font-weight: normal;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
  color: #1A9FE0;
  text-decoration: none;
  font-weight: bold;
}

.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(9, 9, 9, 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;
}

.note {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  padding: 5px;
  background: #eee;
  max-width: 400px;
  border: 1px dotted #bbb;
}

/*--------------------------------------------------------------
# Scroll Bar Custom
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1A9FE0;
}

::-webkit-scrollbar-thumb:hover {
  background: #1285ba;
}

/*--------------------------------------------------------------
# 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 #1A9FE0;
  border-top-color: #e2eefd;
  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);
  }
}

/*--------------------------------------------------------------
# Selettori Modals
--------------------------------------------------------------*/
.modal-success .modal-footer {
  background-color: green;
}

.modal-error .modal-footer {
  background-color: red;
}

.modal-help .modal-footer {
  background-color: #1A9FE0;
}

.help-modals-title {
  color: rgba(0, 0, 0, .8);
  font-size: 2.2em;
}

.error-modals-title {}

.success-modals-title {}

.modal-header .close {
  padding: 1rem 0rem;
  margin: -1rem -1rem -1rem auto;
}

/*--------------------------------------------------------------
# Selettori Generali
--------------------------------------------------------------*/
button:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

form {
  margin: 0 auto;
}

.general-terms {
  font-size: 1.3em;
  letter-spacing: 2.3px;
}

.text-terms {
  font-weight: normal;
  letter-spacing: normal;
  line-height: auto;
}

.input-group-text {
  padding: .1em;
  background-color: rgba(0, 0, 0, 0);
}

.form-check {
  display: inline-block;
  text-align: center;
  padding: inherit;
}

.form-check label {
  display: block;
}

/*--------------------------------------------------------------
# checkbox e radio
--------------------------------------------------------------*/
@keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }

  100% {
    height: 180px;
    width: 180px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
  margin-bottom: 1em;
}

.option-input:hover {
  background: #9faab7;
}

.option-input:checked {
  background: #1A9FE0;
}

.option-input:checked::before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 20px;
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #1A9FE0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 5%;
}

.option-input.radio::after {
  border-radius: 50%;
}

.img-responsive {
  width: 100%;
}

.standard-text {
  font-size: 30px;
  margin-top: 18px;
    margin-bottom: 18px;
}

.armec-logo img {
  margin: auto;
  display: block;
  width: 100%;
}

@media (min-width:480px) {
  .armec-logo img {
    width: 55%;
  }
}

.navbar-nav.navbar-center {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}

.img-r-8 {
  align-items: center;
  width: 80%;
}

.img-pad-10 {
  padding-bottom: 5%;
}

.margin-top {
  margin-top: 8%;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #1A9FE0;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #1A9FE0;
}

.form-control:focus {
  color: #000;
  background-color: #fff;
  border-color: #b8d8f9;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .02);
}

.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control, .input-group>.form-control-plaintext {
  border-right: 0px;
}

.green-text {
  color: green;
  font-weight: bold;
}

.green-text, bigger {
  font-size: 1.2em;
}

.submit-btn {
  color: #fff;
  background-color: #1A9FE0;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 1.1em;
  padding: 1em;
  border: 3px solid rgba(0, 0, 0, 0);
}

.submit-btn:focus, .submit-btn:hover, .submit-btn:active {
  background-color: white !important;
  color: #000 !important;
  border: 3px solid #1A9FE0 !important;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

footer {
  background-color: #1A9FE0;
  color: #fff;
  width: 100%;
height: 100px;
position: fixed;
bottom: 0px;
left: 0px;

}

.footer-copyright {
  padding: 1em;
}
