html,
body {
  padding: 0;
  margin: 0;
  font-size: 15px;
}

figure,
ul {
  margin: 0;
}

img, svg {
  vertical-align: inherit !important;
}

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 600 !important;
}

a {
  text-decoration: none;
  color: black;
}

.handCursor {
  cursor: pointer;
}

.hideMobile {
  display: none;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 550px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 700px;
  }

  .hideDesktop {
    display: none;
  }

  .hideMobile {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 800px;
  }
}
header > nav {
  width: 100%;
  background: white;
  background-size: cover;
  z-index: 100;
}
header > nav figure#logo {
  height: 1rem;
}
header > nav figure#logo > img {
  height: 100%;
}
header > nav ul {
  list-style-type: none;
}
header > nav ul > li {
  display: inline;
}
header > nav ul > li::after {
  font-weight: 400 !important;
}
header > nav ul > li > a {
  font-weight: 400 !important;
}
header > #sliderContainer {
  height: 40rem;
  position: relative;
}
header > #sliderContainer .arroNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 100%;
  color: #5a7274;
  z-index: 50;
  transition: all ease-in-out 0.25s;
}
header > #sliderContainer .arroNavigation:hover {
  transform: scale(1.25);
  color: #6ccdd3;
}
header > #sliderContainer .arroNavigation#goNext {
  right: 0;
}
header > #sliderContainer .arroNavigation#goPrev {
  left: 0;
}
header > #sliderContainer .arroNavigation svg {
  height: 3rem;
}
header > #sliderContainer .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 52px);
  background-size: cover;
  background-position: center center;
  margin-top: 52px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
header > #sliderContainer .slide .cover {
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}
header > #sliderContainer .slide .boxText {
  width: 100%;
  height: 100%;
  border: 3px solid #6ccdd3;
  border-radius: 3rem;
  z-index: 2;
  text-align: center;
}
header > #sliderContainer .slide .boxText .text {
  font-size: 1.5rem;
}
header > #sliderContainer .slide .boxText .cit {
  font-size: 1.25rem;
  margin-top: 1rem;
}
header > #sliderContainer .slide.active {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}
header > #sliderContainer > #mainLogo {
  width: 100%;
  height: 100%;
  padding: 10rem 0 5rem 0;
  position: relative;
}
header > #sliderContainer > #mainLogo > #externalCircle {
  height: 30rem;
  width: 30rem;
  max-height: calc(100vw - 3rem);
  max-width: calc(100vw - 3rem);
  border-radius: 100%;
  border: 1px solid white;
  animation: blowExternalCircle 3s infinite;
  animation-delay: 1.5s;
}
header > #sliderContainer > #mainLogo > #externalCircle > #middleCircle {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  border: 1px solid white;
  animation: blowMiddleCircle 3s infinite;
  animation-delay: 0.75s;
}
header > #sliderContainer > #mainLogo > #externalCircle > #middleCircle > #internalCircle {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  border: 1px solid white;
  animation: blowInternalCircle 3s infinite;
}
header > #sliderContainer > #mainLogo > #externalCircle > #middleCircle > #internalCircle > figure > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%);
}

@keyframes blowExternalCircle {
  0% {
    border: 1px solid white;
  }
  33% {
    border: 1px solid rgba(108, 205, 211, 0.33);
  }
  100% {
    border: 1px solid white;
  }
}
@keyframes blowMiddleCircle {
  0% {
    border: 1px solid white;
  }
  33% {
    border: 1px solid rgba(108, 205, 211, 0.66);
  }
  100% {
    border: 1px solid white;
  }
}
@keyframes blowInternalCircle {
  0% {
    border: 1px solid white;
  }
  33% {
    border: 1px solid #6ccdd3;
  }
  100% {
    border: 1px solid white;
  }
}
.txt-rotate > .wrap {
  border-right: 0.08em solid #333;
  margin-left: 4px;
}

main > #icons {
  background: #6ccdd3;
}
main > #icons div.boxIcon {
  background: white;
  height: 9rem;
  width: 9rem;
  padding: 2rem;
  border-radius: 100%;
  transition: all 1s ease-in-out;
  overflow: hidden;
}
main > #icons div.boxIcon:hover {
  width: 22rem;
  height: 22rem;
}
main > #icons div.boxIcon:hover > svg {
  animation: fadeIcon 1s ease-in-out forwards;
}
main > #icons div.boxIcon:hover > .textIcon {
  position: center;
  animation: fadeTextIcon 1s ease-in-out forwards;
}
main > #icons div.boxIcon:hover + h1 {
  display: none;
}
main > #icons div.boxIcon > svg {
  height: 4rem;
  color: #366668;
  position: absolute;
  opacity: 1;
}
main > #icons div.boxIcon > .textIcon {
  transition: all 1s ease-in-out;
  opacity: 0;
}
main > #icons div.boxIcon > .textIcon b {
  color: #366668;
  font-weight: 800;
}
main > #icons h1 {
  font-size: 1.25rem;
  color: #366668;
}
@keyframes fadeTextIcon {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIcon {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
main > #iconsMobile {
  background: #6ccdd3;
}
main > #iconsMobile #voce, main > #iconsMobile #connettivita, main > #iconsMobile #unified {
  padding: 0 1rem 3rem 1rem;
  width: calc(100% - 2rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  margin: 1rem;
}
main > #iconsMobile div.boxIcon {
  background: white;
  height: 9rem;
  width: 9rem;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 2rem !important;
  border-radius: 100%;
  transition: all 1s ease-in-out;
  overflow: hidden;
}
main > #iconsMobile div.boxIcon > svg {
  height: 4rem;
  color: #366668;
  position: absolute;
  opacity: 1;
}
main > #iconsMobile div.boxIcon > .textIcon {
  transition: all 1s ease-in-out;
  opacity: 0;
}
main > #iconsMobile div.boxIcon > .textIcon b {
  color: #366668;
  font-weight: 800;
}
main > #iconsMobile h1 {
  font-size: 1.25rem;
  color: #366668;
}
@keyframes fadeTextIcon {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIcon {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
main > #about h1 {
  font-size: 1.25rem;
}
main > #about #textAbout .row > div {
  font-weight: 400 !important;
}
main > #about #textAbout .row > div h2 {
  font-size: 1.25rem;
}
main > #about #textAbout .row > div .title, main > #about #textAbout .row > div .txt-rotate {
  font-size: 1.75rem;
}
main > #about #textAbout .row > div .txt-rotate {
  color: #6ccdd3;
}
main > #prices h1 {
  font-size: 1.25rem;
}
main > #prices #priceContainer > .singlePrice > .priceBox {
  height: 15rem;
  width: 15rem;
  font-size: 2rem;
  color: #366668;
  background: #6ccdd3;
  border-radius: 2rem;
}
main > #prices #priceContainer > .singlePrice > .priceValue {
  font-size: 2rem;
}
main > #downloadBrochure {
  background: #6ccdd3;
  height: 20rem;
  overflow: hidden;
}
main > #downloadBrochure a {
  background-color: rgba(0, 0, 0, 0.125);
  border: 1px solid white;
  color: white;
  padding: 1rem;
  font-size: 1.25rem;
}
main > #contacts {
  background: #b7e7eb;
}
main > #contacts h1 {
  font-size: 1.25rem;
  color: #5a7274;
}
main > #contacts form > input, main > #contacts form > textArea {
  font-weight: 400 !important;
  font-size: 1.5rem;
  border-radius: 1rem;
  border: none;
}
main > #contacts form > button {
  width: 7rem;
  height: 7rem;
  background: #666666;
  border-radius: 100%;
  font-size: 1.5rem;
  color: white;
  border: none;
}
main > #contacts #containerMsgSend {
  font-size: 1.5rem;
  font-weight: 400 !important;
}

@media screen and (max-width: 768px) {
  #gtco-footer * {
    text-align: center !important;
  }
}
footer {
  padding: 2rem;
  background: #6ccdd3;
  font-size: 1rem;
}
footer .footerTitle {
  font-size: 1.25rem !important;
}
footer .gtco-container {
  max-width: 1140px;
  position: relative;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
footer .footerBlockimgContainer img, footer .footerBlockimgContainer svg {
  height: 2rem;
}
footer .footerBlock {
  height: auto;
}
footer .footerBtn {
  border-radius: 1.25rem;
  font-size: 1.5rem;
  padding: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}
footer a:hover {
  color: #366668;
}
footer svg {
  height: 2rem;
}
footer ul {
  list-style-type: none;
}
footer ul li {
  display: inline;
}
footer * {
  color: #ffffff;
}

.btn-primary {
  background: #6ccdd3;
  color: #fff;
  border: 2px solid #6ccdd3;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: rgba(108, 205, 211, 0.33) !important;
  border-color: rgba(108, 205, 211, 0.33) !important;
}

.btn-primary.btn-outline {
  background: transparent;
  color: #6ccdd3;
  border: 2px solid #6ccdd3;
}

.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: rgba(108, 205, 211, 0.33);
  color: #fff;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #366668;
  border-color: #366668;
}

/*# sourceMappingURL=style.css.map */
