/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.services-extend {
    display: flex;
    flex-direction: column;
    
    align-items: center;
    
    margin-top: 100px;
    margin-bottom: 100px;
}

#toggle {
    opacity: 0;
}

.services-button {
    text-align: center;
    background: #2399da;
    color: #fff;
    box-shadow: 2px 2px 20px #aaa;
    border-radius: 5px;
    
    max-width: 1140px;
    width: 100%;
    
    padding: 20px 0px 10px 0px;
    
    transition-property: background, box-shadow;
    transition-duration: 0.5s;
    z-index: 10;
}

.services-button:hover {
    background: #25aaf2;
    box-shadow: 2px 2px 10px #aaa;
    
    transition-property: background, box-shadow;
    transition-duration: 0.2s;
}

.click-text {
    font-size: 8pt;
    font-weight: 100;
    padding: 5px 0px 5px 0px;
}

.arrow {
    transform: rotate(0deg);
    transition-duration: 0.5s;
    transition-property: transform;
    filter: invert(100);
}

#toggle:checked ~ .services-button > .arrow {
    transform: rotate(180deg);
}

#toggle:checked ~ .services-button {
    background: #0e6eb2;
}

#toggle:checked ~ .services-button > .services-title {
    color: #fff;
}

.services-title {
    width: auto;
}

.addons-frame {
    height: 200px;
}

.services-frame {
    height: 1500px;
}

#toggle:checked ~ .addons-frame {
    height: 600px;
}

#frame {
    height: 0px;
    z-index: 0;
    transition-property: height;
    transition-duration: 0.5s;
}

@media only screen and (max-width: 812px) {
    #toggle:checked ~ .addons-frame {
        height: 1510px;
    }
}

@media only screen and (max-width: 558px) {
    #toggle:checked ~ .addons-frame {
        height: 2000px;
    }
    
    .services-frame {
        height: 1600px;
    }
}
