  :root {
    --accent: rgba(255, 87, 34, 1);
    --dark-grey: #242424;
    --light-grey: rgb(242 242 242);
  }

  html,
  body {
    width: 100%;
    height: 100%;
    margin: unset;
    scroll-behavior: smooth;
  }

  header {
    width: 100%;
    background-color: rgb(241 241 241);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    margin: unset;
    padding-left: 1em;
  }

  img {
    width: 160px;
    height: 80px;
  }

  #logo-btn{
    padding: unset;
  }

  nav a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    color: rgb(255 87 34);

    padding: 0.7em
  }

  nav {
    width: 100%;
  }

  @media(min-width: 992px) {
    .navbar .nav-item .dropdown-menu{ display: none; }
    .navbar .nav-item:hover .dropdown-menu{ display: block; }
    .navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.phone-animation{
  width: 40px; height: 40px;

  animation: shake 2.82s cubic-bezier(.36,.07,.19,.97) infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  2%, 38% {
    transform: translate3d(-1px, 0, 0);
  }
  
  6%, 32% {
    transform: translate3d(2px, 0, 0);
  }

  10%, 18%, 28% {
    transform: translate3d(-4px, 0, 0);
  }

  13%, 23% {
    transform: translate3d(4px, 0, 0);
  }

  100% {
    transform: translate3d(-1px, 0, 0);
  }
}

.call-now {
  font-size: 1.2em;
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
}

.call-now > span {
  white-space: nowrap;
}

.lang-btn{
  color: var(--accent);
  font-weight: 600;
}

#eng{
  opacity: 0.4;
  padding: 0;
  text-decoration: none;
  font-size: 1rem;
}

#eng:hover{
  opacity: 0.4;
  padding: 0;
  text-decoration: none;
  font-size: 1rem;
  color: var(--accent);
}

#bg{
  padding: 0;
  text-decoration: none;
  font-size: 1rem;
}

#bg:hover{
  padding: 0;
  text-decoration: none;
  font-size: 1rem;
  color: var(--accent);
}

  #section-services-wrap {
    display: flex;
    width: 100%;
    height: 40em;
    background-image: url('/img/blue-fiber.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }

  #middle_line {
    display: flex;
    align-self: center;
    height: 40%;
    background-color: #ffffffcc;
    width: 100%;
    text-align: center;
    font-size: 3em;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;
    transition: all 650ms;
  }

  @keyframes mymove {
    0% {
        left: -100%;
        opacity: 0;
    }

    10%, 90% {
        left: 0%;
        opacity: 1;
    }

    100% {
      left: 100%;
      opacity: 0;
  }
}

  #services{
    opacity: 1;
    width: 100%;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: mymove 10s linear infinite;
    animation-fill-mode: forwards;
    text-decoration: none;
    color: var(--accent);
  }


  #main-title{
    text-align: center;
    color: var(--accent);
    font-size: xxx-large;
    margin-top: 1em;
  }

  #section-advantages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2em 5em;
  }

  .advantage {
    width: 30%;
    background: rgb(242 242 242);
    text-align: center;
    padding: 3em;
    margin: 1em;
    transition: background-color 0.5s;
  }

  .advantage:hover {
    background-color: var(--accent);
  }

  .advantage img {
    height: 100px;
    width: 100px;
  }

  .advantage-text {
    padding-top: 0.5em;
  }

  .section-article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5em 5em;
  }

  .article-img {
    width: 60%;
    min-width: none;
  }

  .article-text {
    width: 40%;
    padding-right: 1em;
  }

  .article-text div {
    border-left: 10px solid var(--accent);
    padding-left: 0.5em;
  }

  .article-text div h3 {
    text-decoration: none;
    opacity: 0.6;
    font-weight: 400;
  }

  .article-paragraph {
    margin: 2em 0em 1em 0em;
  }

  .article-paragraph span {
    font-weight: 700;
  }

  .article-img img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }

  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: var(--dark-grey);
    flex-wrap: wrap;
  }

  footer>div {
    color: white;
    width: auto;
    margin: 3em 2em;
    min-width: 15em;
    max-height: 20em;
    overflow: hidden;
  }

  footer>div h5 {
    text-align: left;
  }

  footer>div img {
    width: 50px;
    height: 50px;
  }

  .service-ref {
    text-decoration: none;
    color: var(--accent);
  }

  .service-ref:hover {
    color: var(--accent);
  }

  #copyright {
    flex-basis: 100%;
    text-align: center;
    margin: unset;
    font-weight: 100;
    opacity: 0.6;
  }

  #go-top{
    right: 0;
    position: fixed;
    bottom: 0;
  }
  
  #go-top > button{
    display: none;
    border: unset;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0.5em;
  }

  #up-arrow{
    width: 30px;
    height: 30px;
  }
  
  @media (min-width : 768px) and (max-width : 1200px) {
    .call-now, .lang-btn{
      display: none;
    }

    #section-services-wrap{
      height: 30em;
    }
    
    #middle_line {
      font-size: 2em;
    }

    #main-title{
      font-size: 2.5em;
    }

    #section-advantages {
      flex-direction: column;
      align-items: center;
    }

    .advantage {
      width: 80%;
    }

    .section-article {
      flex-direction: column;
    }

    .article-text, .article-img {
      width: auto;
    }

    footer {
      justify-content: space-around;
      padding: 1em;
    }

    footer>div {
      margin: 1em 1em;
      font-size: 0.8em;
    }

    footer>div img {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 768px){
    #section-services-wrap{
      height: 30em;
    }
    
    #middle_line {
      font-size: 2em;
    }

    #main-title{
      font-size: 2em;
    }

    #section-advantages {
      flex-direction: column;
      align-items: center;
      margin: 0;
    }

    .advantage {
      width: 100%;
      margin: 0;
    }

    .section-article {
      flex-direction: column;
      margin: 2em 1em;
    }

    .article-text, .article-img {
      width: auto;
    }

    footer {
      justify-content: space-around;
      padding: 1em;
    }

    footer>div {
      margin: 1em 1em;
      font-size: 0.6em;
    }

    footer>div img {
      width: 35px;
      height: 35px;
    }

    footer>div h5 {
      font-size: 1.2em;
    }
  }
/* 
  .skiptranslate {
display: none !important;
  }
  
  .goog-te-gadget {
    display: none !important;
  } */
