.int {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    color: #666666;
}

/* == fonts == */

.int .f-qs {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
}
.int .f-brl {
    font-family: "Barlow", sans-serif;
    font-optical-sizing: auto;
}
.int .f-brl-c {
    font-family: "Barlow Condensed", sans-serif;
    font-optical-sizing: auto;
}

/* == | elements | == */
.int input, .int textarea {
    font-family: 'Open Sans', sans-serif;
}

/* == | anm | == */
.int .anm.off {
    bottom: -30px;
    opacity: 0;
    transition-delay: 0.5s;
    transition: all 0.5s ease-in-out;
}
.int .anm.on {
    bottom: 0;
    opacity: 1;
}

/* == | colors | == */
.int .dark {
  background-color: #262F3C;
  color: #fff;
}
.int .orange {
  background-color: #6BC4D0;
  color: #fff;
}
.int .white {
  background-color: #fff;
}
.int .light {
  background-color: #f3f3f3;
}
.int .f-dark {
  color: #262F3C;
}
.int .f-orange {
  color: #6BC4D0;
}
.int .f-white {
  color: #fff;
}
.int .f-light {
  color: #f3f3f3;
}

/* == | logo | == */
.int .logo {
    
}
.int .logo::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../image/logo.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
    aspect-ratio: 1 / 0.871;
    content: '';
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.int .logo a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* == | lines - top-menu - logo | == */
.int .line .top-menu .logo {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 5%;
    max-width: 400px;
    z-index: 30;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1600px) {
    .int .line .top-menu .logo {
        width: 7%;
        top: 50px;
        left: 50px;
    }
}
@media screen and (max-width: 1000px) {
    .int .line .top-menu .logo {
        top: 30px;
        left: 30px;
        width: 7%;
        min-width: 100px;
    }
}
@media screen and (max-width: 700px) {
    .int .line .top-menu .logo {
        width: 10%;
        min-width: 80px;
    }
    .int .line .top-menu .logo.on {
        position: fixed;
    }
}

/* == | lines - top-menu - language | == */
.int .line .top-menu .language {
    display: none;
}

/* == | menu | == */
.menu {
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-in-out;
}
.menu ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 0 0;
    list-style: none;
    transition: all 0.3s ease-in-out;
    clear: both;
    float: right;
}
.menu ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
}
.menu ul li a {
    position: relative;
    display: block;
    padding: 0 20px;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 85px;
    white-space: nowrap;
    z-index: 29;
    transition: all 0.2s ease-in-out;
}
.menu ul li::before {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: calc(100% - 10px);
    height: 0px;
    border-radius: 8px;
    background: #fff;
    transform: translate(-50%, -50%);
    content: '';
    transition: all 0.2s ease-in-out;
    z-index: 28;
    opacity: 0;
}
.menu ul li:hover a {
    color: #262F3C;
}
.menu ul li:hover::before {
    top: 50%;
    height: 50px;
    opacity: 1;
}
.menu ul li.parent::after {
    position: absolute;
    display: block;
    top: calc(100% - 10px);
    left:50%;
    width: 20px;
    height: 20px;
    background-image: url(../image/ico-arrow.svg);
    background-size: 500% 300%;
    background-position: 75% 50%;
    transform: translate(-50%, -50%);
    content: '';
    z-index: 30;
    transition: all 0.2s ease-in-out;
}
.menu ul li.parent:hover::after {
    top: calc(100% - 17px);
}
.menu ul ul {
    position: absolute;
    display: flex;
    top: calc(100% - 0px);
    left: 50%;
    max-height: 0;
    border-radius:8px;
    transform: translate(-50%, 0);
    background-color: #f3f3f3;
    z-index: 27;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events:none;
    padding: 0 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.menu ul li:hover ul {
    top: calc(100% - 5px);
    max-height: 500px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events:auto
}
.menu ul ul::before {
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    width: 100%;
    padding: 13.9% 0 0 0;
    transform: translate(-50%, 0%);
    background-image: url(../image/ico-triangle-dark-green.svg);
    background-size: 100% 100%;
    background-position: 0 0;
    transition: all 0.3s ease-in-out;
    content: '';
    z-index: 1;
}
.menu ul li:hover ul::before {
    bottom: -20px;
}
.menu ul ul::after {
    display: none;
}
.menu ul ul li {
    position: relative;
    display: block;
    min-width: 100%;
    float: none;
    z-index: 3;
}
.menu ul ul li::before {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius:8px;
    overflow: hidden;
    transform: translate(-50%, -50%);
    background-color: #6BC4D0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    content: '';
}
.menu ul ul li:hover::before {
    top: 50%;
    width: calc(100% + 40px);
    border-radius:8px;
    opacity: 1;
}
.menu ul ul li a {
    position: relative;
    width: calc(100% - 60px);
    padding: 0 20px;
    font-size: 1.2em;
    line-height: 40px;
    font-weight: 300;
    color: #666666;
    text-transform: lowercase;
    z-index: 2;
}
.menu ul ul li:hover a {
    color: #fff;
}
@media screen and (max-width: 1600px) {
    .menu {
        margin: 30px 50px 0 0;
    }
}
@media screen and (max-width: 1350px) {
    .menu ul li a {
        font-size: 18px;
        line-height: 80px;
    }
    .menu ul ul {
    }
    .menu ul ul li a {
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    .menu {
        display: none;
    }
}
@media screen and (max-width: 700px) {

}

/* == | menu - mobile | == */
.int .menu-mobile {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    background-color: #262F3C;
    z-index: 19;
    transition: all 0.4s ease-in-out;
    pointer-events:none;
}
.int .menu-mobile .arrow {
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    top: 100px;
    left: 50%;
    background-image: url(../image/ico-nav.svg);
    background-size: 600% 300%;
    background-position: 60% 100%;
    transform: translate(-50%, -50%) rotate(-90deg);
    pointer-events:none;
    content: '';
    z-index: 4;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.int .menu-mobile .arrow.on {
    opacity: 1;
}
.int .menu-mobile.on {
    left: 0;
    pointer-events:auto;
}
.int .menu-mobile .m-elm {
    visibility: visible;
}
.int .menu-mobile .m-elm.off {
    visibility: hidden;
    pointer-events:none;
    opacity: 0;
}
.int .menu-mobile .m-elm::before {
    opacity: 1!important;
    transition-delay: 0.2s;
}
.int .menu-mobile .m-elm.off::before {
    display: none!important;
}
.int .menu-mobile .outer {
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    top: 100px;
    left: 0px;
    overflow-y: auto;
}
.int .menu-mobile .inner {
    position: relative;
    width: calc(100% - 60px);
    min-height: 100%;
    margin: 0 30px;
    padding: 0;
    float: left;
}
.int .menu-mobile .inner ul {
    position: relative;
    display: block;
    list-style: none;
    margin: 0;
    padding: 50px 0 0 0;
}
.int .menu-mobile .inner ul li {
    position: relative;
    display: block;
    overflow: hidden;
    list-style: none;
    max-height: 40px;
    margin: 0 0 20px 0;
    transition: all 0.3s ease-in-out;
}
.int .menu-mobile .inner ul li.parent.on {
    max-height: 700px;
}
.int .menu-mobile .inner ul li.parent::before {
    position: absolute;
    display: block;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    background-image: url(../image/ico-arrow.svg);
    background-position: 0% 100%;
    background-size: 500% 300%;
    transform: rotate(90deg);
    content: '';
    z-index: 4;
    transition: all 0.2s ease-in-out;
}
.int .menu-mobile .inner ul li.parent.on::before {
    transform: rotate(-90deg);
}
.int .menu-mobile .inner ul li a {
    position: relative;
    display: block;
    width: calc(100% - 20px);
    padding: 0 20px 0 0;
    float: right;
    border-radius: 8px;
    background-color: #fff;
    line-height: 40px;
    text-align: right;
    font-size: 1.5em;
    color: #262F3C;
    z-index: 3;
    transition: all 0.2s ease-in-out;
}
.int .menu-mobile .inner ul li ul {
    margin: 0;
    padding: 40px 0 10px 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius:8px;
}
.int .menu-mobile .inner ul li ul li {
    margin: 10px 0 0 0;
}
.int .menu-mobile .inner ul li ul li a {
    position: relative;
    display: block;
    width: calc(100% - 20px);
    padding: 0 20px 0 0;
    float: right;
    border-radius: 5px;
    background: none;
    line-height: 30px;
    text-align: right;
    font-size: 1.5em;
    color: #fff;
    z-index: 3;
    transition: all 0.2s ease-in-out;
}
.int .menu-mobile .inner .contact {
    position: absolute;
    display: block;
    bottom: 100px;
    left: 0;
    width: 100%;
    border-radius: 8px;
    background-color: #666;
    text-align: right;
    font-size: 1.1em;
    color: #fff;
}
.int .menu-mobile .inner .contact::before {
    position: absolute;
    display: block;
    width: 90%;
    height: 30%;
    top: 75%;
    left: 50%;
    border-radius: 100%;
    background-color: #000;
    filter: blur(10px);
    z-index: -1;
    transform: translate(-50%, -50%);
    content: '';
    transition: all 0.2s ease-in-out;
}
.int .menu-mobile .inner .contact .address {
    position: relative;
    display: block;
    width: calc(100% - 60px);
    float: left;
    padding: 0 60px 0 0;
    margin: 20px 0;
    font-size: 1.2em;
    line-height: 30px;
}
.int .menu-mobile .inner .contact .address::after {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 18px;
    background-image: url(../image/ico-contact.svg);
    background-size: 600% 300%;
    background-position: 100% 0%;
    transform: translate(0%, -50%);
    content: '';
}
.int .menu-mobile .inner .mail {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    bottom: 30px;
    border-radius: 8px;
    background-color: #fff;
}
.int .menu-mobile .inner .mail::before {
    position: absolute;
    display: block;
    width: 90%;
    height: 30%;
    top: 75%;
    left: 50%;
    border-radius: 100%;
    background-color: #000;
    filter: blur(10px);
    z-index: -1;
    transform: translate(-50%, -50%);
    content: '';
    transition: all 0.2s ease-in-out;
}
.int .menu-mobile .inner .mail::after {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    background-image: url(../image/ico-contact.svg);
    background-size: 600% 300%;
    background-position: 60% 100%;
    transform: translate(-50%, -50%);
    content: '';
}
.int .menu-mobile .inner .phone {
    position: absolute;
    display: block;
    width: calc(100% - 130px);
    bottom: 30px;
    right: 0px;
    padding: 0 60px 0 0;
    border-radius: 8px;
    background-color: #6BC4D0;
    text-align: right;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
}
.int .menu-mobile .inner .phone::after {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 15px;
    background-image: url(../image/ico-contact.svg);
    background-size: 600% 300%;
    background-position: 40% 0%;
    transform: translate(0%, -50%);
    content: '';
}
@media screen and (max-width: 1000px) {
    .int .menu-mobile {
        display: block;
        width: 450px;
        height: auto;
        top: 10px;
        border-radius: 5px;
        overflow: hidden;
        padding: 0 0 30px 0;
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
    }
    .int .menu-mobile.on {
        left: calc(100% - 460px);
    }
    .int .menu-mobile .outer {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
        overflow-y: auto;
        border-radius: 5px;
    }
    .int .menu-mobile .inner ul {
        padding: 75px 0 0 0;
    }
    .int .menu-mobile .inner .contact {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        float: left;
        margin: 0 0 20px 0;
    }
    .int .menu-mobile .inner .mail, .int .menu-mobile .inner .phone {
        position: relative;
        float: left;
        bottom: auto;
        left: auto;
        right: auto;
    }
    .int .menu-mobile .inner .phone {
        float: right;
    }
}
@media screen and (max-width: 700px) {
    .int .menu-mobile {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 100%;
        border-radius: 0px;
        padding: 0;
    }
    .int .menu-mobile .outer {
        position: absolute;
        width: 100%;
        height: calc(100% - 100px);
        top: 100px;
        left: 0px;
        overflow-y: auto;
        border-radius: 0px;
    }
    .int .menu-mobile.on {
        left: 0;
    }
    .int .menu-mobile .inner ul {
        padding: 50px 0 0 0;
    }
    .int .menu-mobile .inner .contact {
        position: absolute;
        display: block;
        bottom: 100px;
        left: 0;
        width: 100%;
        float: none;
        margin: 0;
    }
    .int .menu-mobile .inner .mail, .int .menu-mobile .inner .phone {
        position: absolute;
        float: none;
    }
    .int .menu-mobile .inner .mail {
        left: 0;
        bottom: 30px;
    }
    .int .menu-mobile .inner .phone {
        bottom: 30px;
        right: 0px;
    }
}

/* == | top - social | == */
.int .top-menu .social {
    position: absolute;
    display: block;
    top: 50px;
    right:50px;
    z-index: 30;
    cursor: pointer;
}
.int .top-menu .social a {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #fff;
    float: left;
    margin: 0 0 0 15px;
    transition: all 0.2s ease-in-out;
}
.int .top-menu .social a::before, .int .top-menu .social a::after {
    position: absolute;
    display: block;
    width: 60%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/ico-contact.svg);
    background-size: 600% 300%;
    opacity:1;
    content: '';
    transition: all 0.3s ease-in-out;
}
.int .top-menu .social a:hover::before {
    opacity:0;
    width: 20%;
    height: 20%;
}
.int .top-menu .social a::after {
    opacity:0;
    width: 20%;
    height: 20%;
}
.int .top-menu .social a:hover::after {
    opacity:1;
    width: 60%;
    height: 60%;
}
.int .top-menu .social a.fb::before {
    background-position: 20% 0%;
}
.int .top-menu .social a.fb::after {
    background-position: 20% 50%;
}
.int .top-menu .social a.insta::before {
    background-position: 0% 0%;
}
.int .top-menu .social a.insta::after {
    background-position: 0% 50%;
}
@media screen and (max-width: 1000px) {
     .int .top-menu .social {
          top: 30px;
          right:80px;
          display: none;
      }
      .int .top-menu .social a {
          width: 38px;
          height: 38px;
          border-radius: 8px;
          margin: 0 0 0 10px;
      }
}

/* == | menu-button | == */
.int .menu-button {
    position: fixed;
    display: none;
    top: 30px;
    right:30px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #fff;
    z-index: 30;
    cursor: pointer;
}
.int .menu-button.off {
    display: none;
}
.int .menu-button::before, .int .menu-button::after {
    position: absolute;
    display: block;
    width: 60%;
    height: 60%;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/ico-menu.svg);
    background-size: 200% 300%;
    background-position: 0% 0%;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    content: '';
}
.int .menu-button::after {
    background-position: 100% 0%;
}
.int .menu-button.on::before, .int .menu-button::after {
    transform: translate(-50%, -50%) scale(0.5) rotate(25deg);
    opacity: 0;
}
.int .menu-button::before, .int .menu-button.on::after {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

@media screen and (max-width: 1000px) {
    .int .menu-button {
        display: block;
    }
    .int .menu-button {
    }
    .int .menu-button .backdrop {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        background-color: #262F3C;
        border-radius: 10px;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    .int .menu-button .backdrop::before {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-radius: 8px;
        border: 1px solid #fff;
        transform: translate(-50%, -50%);
        content: '';
    }
}
@media screen and (max-width: 700px) {
    .int .menu-button {

    }
}
@media screen and (max-width: 500px) {
    .int .menu-button {
    }
}

/* == | quote-button | == */
.int .top .quote-button {
    position: relative;
    float: right;
    line-height: 35px;
    padding: 0 20px;
    margin: 33px 0 0 0;
    color: #fff;
    border-radius: 3px;
    background-color: #666666;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    transition: all 0.3s ease-in-out;
}
.int .top .quote-button .no {
    position: absolute;
    display: block;
    line-height: 25px;
    width: 25px;
    top: 0;
    left: 0;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #6BC4D0;
    font-size: 14px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.int .top .quote-button .no.on {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .int .top .quote-button {
        position: fixed;
        float: none;
        line-height: 35px;
        padding: 0 20px;
        margin:0;
        top: 20px;
        left: calc(50% + 40px);
        z-index: 30;
        opacity: 0;
        background-color: #fff;
        color: #666666;
        pointer-events:none;
    }
    .int .top .quote-button.on {
        opacity: 1;
        pointer-events:auto;
    }
}
@media screen and (max-width: 700px) {
    .int .top .quote-button {
        top: auto;
        bottom: 125px;
        left: auto;
        right: 100px;
    }
}

/* == | ico | == */
.int .ico {
    border-radius: 3px;
}

/* == | ico - contacts | == */
.int .ico.contacts::before {
    width: 70%;
    height: 70%;
    background-size: 600% 300%;
    background-image: url(../image/ico-contact.svg);
}
.int .ico.contacts.insta::before {
    background-position: 0% 0%;
}
.int .ico.contacts.fb::before {
    background-position: 20% 0%;
}
.int .ico.contacts.phone::before {
    background-position: 40% 0%;
}
.int .ico.contacts.mail::before {
    background-position: 60% 0%;
}
.int .ico.contacts.clock::before {
    background-position: 80% 0%;
}
.int .ico.contacts.address::before {
    background-position: 100% 0%;
}

/* == | lines | == */
.int .line {
    border-radius: 1px;
}

/* == | lines - bar | == */
.int .line .bar.bf::before, .int .line .bar.af::after {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    content: '';
}
.int .line .bar.white.bf::before, .int .line .bar.white.af::after {
    background: #fff;
}
.int .line .bar.light.bf::before, .int .line .bar.light.af::after {
    background: #fff;
}
.int .line .bar.orange.bf::before, .int .line .bar.orange.af::after {
    background: #6BC4D0;
}
.int .line .bar.dark.bf::before, .int .line .bar.dark.af::after {
    background: #262F3C;
}
.int .line .bar.bf::before {
    top: 0;
}
.int .line .bar.af::after {
    top: 100%;
}
@media screen and (max-width: 1000px) {
    .int .line .bar.bf::before, .int .line .bar.af::after {

    }
}


/* == | lines - content - box - info | == */
.int .content .box.info {
    margin: 15px;
    border-radius: 8px;
}
.int .content .box.info.one-one {
    width: calc(100% - 30px);
    margin: 15px auto;
}
.int .content .box.one-one.backg {
    width: calc(100% - 80px);
}
.int .content .box.info.one-two {
    width: calc(50% - 30px);
}
.int .content .box.info.one-two.backg {
    width: calc(50% - 80px);
}
.int .content .box.info.one-three {
    width: calc(33.33% - 30px);
}
.int .content .box.info.one-three.backg {
    width: calc(33.33% - 80px);
}
.int .content .box.info.two-three {
    width: calc(66.66% - 30px);
}
.int .content .box.info.one-four {
    width: calc(25% - 30px);
}
.int .content .box.info.one-four.backg {
    width: calc(25% - 80px);
}
.int .content .box.info.one-five {
    width: calc(20% - 30px);
}
.int .content .box.info.one-five.backg {
    width: calc(20% - 80px);
}
.int .content .box.info.two-five {
    width: calc(40% - 30px);
}
.int .content .box.info.two-five.backg {
    width: calc(40% - 80px);
}
.int .content .box.info.three-five {
    width: calc(60% - 30px);
}
.int .content .box.info.three-five.backg {
    width: calc(60% - 80px);
}
.int .content .box.info .ico {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    clear: both;
    margin: 0 0 20px 0;
}
.int .content .box.info .check {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 30px;
    right: 30px;
    background-image: url(../image/ico/ico-check-mark.svg);
    background-size: 100% 100%;
    background-position: 0 0;
}
.int .content .box.info .nav {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    margin: 0;
}
.int .content .box.info a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}
@media screen and (max-width: 1600px) {

}
@media screen and (max-width: 1400px) {
    
}
@media screen and (max-width: 1000px) {
    .int .content .box.info {
        margin: 10px;
    }
    .int .content .box.info.one-one {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .int .content .box.one-one.backg {
        width: calc(100% - 80px);
    }
    .int .content .box.info.one-two {
        width: calc(50% - 20px);
    }
    .int .content .box.info.one-two.backg {
        width: calc(50% - 80px);
    }
    .int .content .box.info.one-three {
        width: calc(50% - 20px);
    }
    .int .content .box.info.one-three.backg {
        width: calc(50% - 80px);
    }
    .int .content .box.info.two-three {
        width: calc(66.66% - 20px);
    }
    .int .content .box.info.one-four {
        width: calc(25% - 20px);
    }
    .int .content .box.info.one-four.backg {
        width: calc(25% - 80px);
    }
    .int .content .box.info.one-five {
        width: calc(20% - 20px);
    }
    .int .content .box.info.one-five.backg {
        width: calc(20% - 80px);
    }
    .int .content .box.info.two-five {
        width: calc(40% - 20px);
    }
    .int .content .box.info.two-five.backg {
        width: calc(40% - 80px);
    }
    .int .content .box.info.three-five {
        width: calc(60% - 20px);
    }
    .int .content .box.info.three-five.backg {
        width: calc(60% - 80px);
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.info {
        margin: 10px;
    }
    .int .content .box.info.one-one {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .int .content .box.info.one-one.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-two {
        width: calc(100% - 20px);
    }
    .int .content .box.info.one-two.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-three {
        width: calc(100% - 20px);
    }
    .int .content .box.info.two-three {
        width: calc(100% - 20px);
    }
    .int .content .box.info.one-three.backg {
        width: calc(100% - 60px);
    }
    .int .content .box.info.one-four {
        width: calc(25% - 20px);
    }
    .int .content .box.info.one-four.backg {
        width: calc(25% - 60px);
    }
    .int .content .box.info.one-five {
        width: calc(20% - 20px);
    }
    .int .content .box.info.one-five.backg {
        width: calc(20% - 60px);
    }
    .int .content .box.info.two-five {
        width: calc(40% - 20px);
    }
    .int .content .box.info.two-five.backg {
        width: calc(40% - 60px);
    }
    .int .content .box.info.three-five {
        width: calc(60% - 20px);
    }
    .int .content .box.info.three-five.backg {
        width: calc(60% - 60px);
    }
}
@media screen and (max-width: 700px) {
    
}

/* == | lines - content - box - heading | == */
.int .line .content .box h1.underline,
.int .line .content .box h2.underline,
.int .line .content .box h3.underline,
.int .line .content .box h4.underline,
.int .line .content .box h5.underline,
.int .line .content .box .heading.underline {
    padding: 0 0 60px 0; 
}
.int .line .content .box h1.underline::before,
.int .line .content .box h2.underline::before,
.int .line .content .box h3.underline::before,
.int .line .content .box h4.underline::before,
.int .line .content .box h5.underline::before,
.int .line .content .box .heading.underline::before {
    position: absolute;
    display: block;
    width: 70px; 
    height: 2px;
    border-radius: 3px;
    bottom: 30px;
    transform: translate(0%, -50%);
    background: #6BC4D0;
    content: '';
}
.int .line .content .box.center h1.underline::before,
.int .line .content .box.center h2.underline::before,
.int .line .content .box.center h3.underline::before,
.int .line .content .box.center h4.underline::before,
.int .line .content .box.center h5.underline::before,
.int .line .content .box.center .heading.underline::before {
    left: 50%;
}
.int .line.dark .content .box h1.underline::before,
.int .line.dark .content .box h2.underline::before,
.int .line.dark .content .box h3.underline::before,
.int .line.dark .content .box h4.underline::before,
.int .line.dark .content .box h5.underline::before,
.int .line.dark .content .box .heading.underline::before {
    background: #6BC4D0;
}
.int .line .content .box.center h1.underline::before,
.int .line .content .box.center h2.underline::before,
.int .line .content .box.center h3.underline::before,
.int .line .content .box.center h4.underline::before,
.int .line .content .box.center h5.underline::before,
.int .line .content .box.center .heading.underline::before {
    left: calc(50% - 10px);
}
.int .line .content .box.right h1.underline::before,
.int .line .content .box.right h2.underline::before,
.int .line .content .box.right h3.underline::before,
.int .line .content .box.right h4.underline::before,
.int .line .content .box.right h5.underline::before,
.int .line .content .box.right .heading.underline::before {
    right: -10px;
}
.int .line .content .box.left h1.underline::before,
.int .line .content .box.left h2.underline::before,
.int .line .content .box.left h3.underline::before,
.int .line .content .box.left h4.underline::before,
.int .line .content .box.left h5.underline::before,
.int .line .content .box.left .heading.underline::before {
    left: -10px;
}
.int .line .content .box h1.backg,
.int .line .content .box h2.backg,
.int .line .content .box h3.backg,
.int .line .content .box h4.backg,
.int .line .content .box h5.backg,
.int .line .content .box .heading.backg {
    border-radius: 5px;
    padding: 0 10px;
}
.int .line .content .box h1.icon-container,
.int .line .content .box h2.icon-container,
.int .line .content .box h3.icon-container,
.int .line .content .box h4.icon-container,
.int .line .content .box h5.icon-container,
.int .line .content .box .heading.icon-container{
    line-height: 60px;
}
@media screen and (max-width: 1600px) {
    
}
@media screen and (max-width: 1350px) {
    .int .line .content .box h1.underline,
    .int .line .content .box h2.underline,
    .int .line .content .box h3.underline,
    .int .line .content .box h4.underline,
    .int .line .content .box h5.underline,
    .int .line .content .box .heading.underline {
        padding: 0 0 50px 0; 
    }
    .int .line .content .box h1.underline::before,
    .int .line .content .box h2.underline::before,
    .int .line .content .box h3.underline::before,
    .int .line .content .box h4.underline::before,
    .int .line .content .box h5.underline::before,
    .int .line .content .box .heading.underline::before,
    .int .line .content .box h1.underline::after,
    .int .line .content .box h2.underline::after,
    .int .line .content .box h3.underline::after,
    .int .line .content .box h4.underline::after,
    .int .line .content .box h5.underline::after,
    .int .line .content .box .heading.underline::after {
        bottom: 25px;
    }
}
@media screen and (max-width: 700px) {

  .int .line .content .box h1.underline,
    .int .line .content .box h1.underline,
    .int .line .content .box h2.underline,
    .int .line .content .box h3.underline,
    .int .line .content .box h4.underline,
    .int .line .content .box h5.underline,
    .int .line .content .box .heading.underline {
        padding: 0 0 40px 0; 
    }
  .int .line .content .box h1.underline::before,
  .int .line .content .box h2.underline::before,
  .int .line .content .box h3.underline::before,
  .int .line .content .box h4.underline::before,
  .int .line .content .box h5.underline::before,
  .int .line .content .box .heading.underline::before,
  .int .line .content .box h1.underline::after,
  .int .line .content .box h2.underline::after,
  .int .line .content .box h3.underline::after,
  .int .line .content .box h4.underline::after,
  .int .line .content .box h5.underline::after,
  .int .line .content .box .heading.underline::after {
      bottom: 20px;
  }
  .int .line .content .box.right h1.underline::before,
  .int .line .content .box.right h2.underline::before,
  .int .line .content .box.right h3.underline::before,
  .int .line .content .box.right h4.underline::before,
  .int .line .content .box.right h5.underline::before,
  .int .line .content .box.right .heading.underline::before {
      left: 10px;
  }
  .int .line .content .box.right h1.underline::after,
  .int .line .content .box.right h2.underline::after,
  .int .line .content .box.right h3.underline::after,
  .int .line .content .box.right h4.underline::after,
  .int .line .content .box.right h5.underline::after,
  .int .line .content .box.right .heading.underline::after {
      left: 30px;
  }
  .int .line .content .box.center h1.underline::before,
  .int .line .content .box.center h2.underline::before,
  .int .line .content .box.center h3.underline::before,
  .int .line .content .box.center h4.underline::before,
  .int .line .content .box.center h5.underline::before,
  .int .line .content .box.center .heading.underline::before {
      bottom: -3px;
  }
  .int .line .content .box.center h1.underline::after,
  .int .line .content .box.center h2.underline::after,
  .int .line .content .box.center h3.underline::after,
  .int .line .content .box.center h4.underline::after,
  .int .line .content .box.center h5.underline::after,
  .int .line .content .box.center .heading.underline::after {
      bottom: -3px;
  }
}
@media screen and (max-width: 500px) {
  .int .right h1,
  .int .right h2,
  .int .right h3,
  .int .right h4,
  .int .right h5,
  .int .right .heading {
      text-align: left!important;
  }
}

/* == | lines - content - box - heading - ico | == */
.int .line .content .box h1 .ico,
.int .line .content .box h2 .ico,
.int .line .content .box h3 .ico,
.int .line .content .box h4 .ico,
.int .line .content .box h5 .ico,
.int .line .content .box .heading .ico {
    position: relative;
    width: 40px;
    height: 40px;
    float: left;
    margin: 0 20px 0 0;
}
.int .line .content .box h1 .ico::before,
.int .line .content .box h2 .ico::before,
.int .line .content .box h3 .ico::before,
.int .line .content .box h4 .ico::before,
.int .line .content .box h5 .ico::before,
.int .line .content .box .heading .ico::before {
    width: 70%;
}

/* == | lines - content - box - txt - block | == */
.int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 3px;
}
.int .line .content .box.txt .block.white p, .int .line .content .box.txt .block.light p, .int .line .content .box.txt .block.red p, .int .line .content .box.txt .block.dark p  {
    margin: 0;
}
.int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
    content: '';
    z-index: -1;
}
.int .line .content .box.txt.left .block::before {
    top: 50%;
    left: 5px;
}
.int .line .content .box.txt.right .block::before {
    top: 50%;
    left: calc(100% - 5px);
}
.int .line .content .box.txt.center .block::before {
    top: 5px;
    left: 50%;
}
.int .line .content .box.txt .block.white::before  {
    background-color: #fff;
}
.int .line .content .box.txt .block.light::before  {
    background-color: #f3f3f3;
}
.int .line .content .box.txt .block.red::before  {
    background-color: #6BC4D0;
}
.int .line .content .box.txt .block.dark::before  {
    background-color: #262F3C;
}
.int .line .content .box.txt.center .block ul.horizontal {
    text-align: center;
}

.int .line .content .box.txt .block ul.horizontal li {
    display: inline-block;
    width: auto;
    float: left;
    margin: 0 5px;
}
.int .line .content .box.txt.center .block ul.horizontal li {
    float: none;
}
.int .line .content .box.txt .block.selectable  {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 3px;
    cursor: pointer;
}
.int .line .content .box.txt .block.selectable.on  {
    background-color: #6BC4D0;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    color: #fff;
}
.int .line .content .box.txt .block.selectable.on p  {
    margin: 0;
}
.int .line .content .box.txt .block.selectable.on::before  {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
    content: '';
    z-index: -1;
    background-color: #6BC4D0;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
}
.int .line .content .box.txt.left .block.selectable.on::before  {
    left: calc(100% - 5px);
}
.int .line .content .box.txt.right .block.selectable.on::before  {
    left: 5px;
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 3px;
        content: '';
        z-index: -1;
    }
    .int .line .content .box.txt.left .block::before {
        top: 50%;
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        top: 50%;
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-radius: 3px;
        content: '';
        z-index: -1;
    }
    .int .line .content .box.txt.left .block::before {
        top: 50%;
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        top: 50%;
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 1000px) {
    .int .line .content .box.txt .block.white, .int .line .content .box.txt .block.light, .int .line .content .box.txt .block.red, .int .line .content .box.txt .block.dark  {
        width: calc(100% - 20px);
        padding: 10px;
    }
    .int .line .content .box.txt .block.white::before, .int .line .content .box.txt .block.light::before, .int .line .content .box.txt .block.red::before, .int .line .content .box.txt .block.dark::before  {
        width: 20px;
        height: 20px;
    }
    .int .line .content .box.txt.left .block::before {
        left: 5px;
    }
    .int .line .content .box.txt.right .block::before {
        left: calc(100% - 5px);
    }
    .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content .box.txt.left .block::before, .int .line .content .box.txt.right .block::before, .int .line .content .box.txt.center .block::before {
        top: 5px;
        left: 50%;
    }
}
@media screen and (max-width: 600px) {
}

/* == | lines - content - box - corner | == */
.int .line .content .box .corner  {
    position: absolute;
    width: 25px;
    height: 25px;
    transform: translate(-50%, -50%) rotate(135deg);
    background-image: url(../image/ico-arrow.svg);
    background-size: 500% 300%;
    background-position: 75% 50%;
    z-index: 4;
}
.int .line .content .box .corner.t-0  {
    top: 0;
}
.int .line .content .box .corner.t-100  {
    top: 100%;
}
.int .line .content .box .corner.l-0  {
    left: 0%;
}
.int .line .content .box .corner.l-100  {
    left: 100%;
}
.int .line .content .box .corner.t-0.l-100  {
    transform: translate(-50%, -50%) rotate(225deg);
}
.int .line .content .box .corner.t-100.l-0  {
    transform: translate(-50%, -50%) rotate(45deg);
}
.int .line .content .box .corner.t-100.l-100  {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* == | lines - content - box - txt - icon | == */
.int .line .content .box.txt .icon  {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    margin: 0 20px 0 0;
}
.int .line .content .box.txt .icon img  {
    position: relative;
    width: 100%;
    aspect-ratio:1/1;
}
.int .line .content .box.txt .icon + .heading, .int .line .content .box.txt .icon + .heading + .heading {
    width: calc(100% - 100px);
}
@media screen and (max-width: 700px) {
    .int .line .content .box.txt .icon  {
        width: 50px;
        height: 50px;
        margin: 0 20px 0 0;
    }
}


/* == | lines - content - box - txt - buttons | == */
.int .line .content .box .buttons .button {
    font-size: 1.2em;
    line-height: 35px;
    min-height: 35px;
    padding: 0 40px 0 20px;
    border-radius:8px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    float: left;
}
.int .line .content .box .buttons .button + .button {
    margin: 0 0 0 20px;
}
.int .line .content .box .buttons .button::before {
    position: absolute;
    display: block;
    top: 50%;
    height: 50%;
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    background-image: url(../image/ico-arrow.svg);
    background-position: 0% 0%;
    background-size: 500% 300%;
    content: '';
}
.int .line .content .box.left .buttons .button::before, .int .line .content .box.right .buttons .button::before {
    right: 10px;
}
.int .line .content .box.center .buttons .button::before {
    right: 10px;
}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 700px) {

}

/* == | lines - home-screen | == */
.int .line.home-screen .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.int .line.home-screen .content.full-height {
    max-width: 1500px;
    height: 80%;
    top: 55%;
}
.int .line.home-screen .content.full-height .box.image {
    
}
.int .line.home-screen .content.full-height .box:last-of-type {
    align-content: flex-end;
}
@media screen and (max-width: 700px) {
    .int .line.home-screen .content {
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
    }
    .int .line.home-screen .content.full-height .box.image {
        height: 40%;
    }
}

/* == | lines - slide | == */
.int .line .slide {
    overflow: hidden;
}
.int .line .slide img.parallax {
    height: 120%;
}
.int .line .slide.transparent img {
    opacity: 0.1;
    filter: grayscale(100%);
}
.int .line .slide.transparent::before {
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/background-cover-dark.png);
    background-position: 0 100%;
    background-repeat: repeat-x;
    content: '';
    z-index: 2;
}
.int .line .slide.transparent::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/noise.png);
    background-position: 0 0;
    background-repeat: repeat;
    content: '';
    z-index: 2;
}
.int .line .slide .arrow {
    position: absolute;
    top: 90%;
    left: 50%;
    width: 85px;
    height: 35px;
    border-radius: 3px;
    transform: translate(-50%, -50%);
    background-color: #6BC4D0;
    background-image: url(../image/noise.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    z-index: 3;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}
.int .line .slide .arrow:hover {
    width: 85px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.int .line .slide .arrow::before {
    position: absolute;
    display: block;
    top: 25%;
    left: 50%;
    width: 70px;
    height: 70px;
    background-image: url(../image/ico-nav.svg);
    background-size: 600% 200%;
    background-position: 60% 0%;
    transform: translate(-50%, -50%) rotate(90deg);
    filter: invert(100%) brightness(200%);
    content: '';
    transition: all 0.2s ease-in-out;
    pointer-events:none;
}
.int .line .slide .arrow:hover::before {
    top: 75%;
}
@media screen and (max-width: 1000px) {
    .int .line .slide .arrow {
        width: 50px;
        height: 25px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    .int .line .slide .arrow:hover {
        height: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .int .line .slide .arrow::before {
        width: 40px;
        height: 40px;
    }
    .int .line .slide .arrow:hover::before {
        top: 80%;
    }
}


/* == | lines - content - banner | == */
.int .line .content.banner {
}
.int .line.full-height .content.banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
    .int .line.full-height .content.banner {
        top: 40%;
    }
}


/* == | lines - content - box - image | == */
.int .line .content .box.image .buttons {
    position: absolute;
    z-index: 3;
    bottom: 30px;
}
.int .line .content .box.image.extended .buttons {
    width: 80%;
    left: 10%;
}
.int .line .content .box.image.right .buttons .button {
    float: right;
}
.int .line .content .box.image.left .buttons .button {
    float: left;
}

/* == | lines - content - box - image - selactable | == */
.int .line .content .box.image.selectable-image img {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.image.selectable-image img.on {
    opacity: 1;
}


/* == | lines - content - box - news - box | == */
.int .line .content .box.news-box .image {
    position: relative;
    width: calc(100% + 50px);
    left: -25px;
    top: -25px;
    float: left;
    aspect-ratio: 1/0.6;
    overflow: hidden;
    margin: 0 0 30px 0;
    border-radius: 10px 10px 0 0;
}
.int .line .content .box.news-box .image img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
@media screen and (max-width: 1000px) {
     .int .line .content .box.news-box .image {
          width: calc(100% + 60px);
          left: -30px;
          top: -30px;
          margin: 0 0 30px 0;
      }
}
@media screen and (max-width: 700px) {
     .int .line .content .box.news-box .image {
          width: calc(100% + 40px);
          left: -20px;
          top: -20px;
          margin: 0 0 20px 0;
      }
}

/* == | lines - content - box - filters | == */
.int .line .content .box .filters {
    position: relative;
    width: 100%;
    float: left;
    padding: 100px 0 0 0;
}
.int .line .content .box .filters::before {
    position: absolute;
    display: block;
    width: 2px;
    height: 60px;
    top: 50px;
    left: 0;
    background-color: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content .box .filters .filter {
    position: relative;
    line-height: 50px;
    padding: 0 50px 0 20px;
    float: left;
    margin: 0 20px 0 0;
    border-radius: 8px;
    background-color: #f3f3f3;
    color: #262F3C;
    font-size: 1.1em;
    cursor: pointer;
}
.int .line .content .box .filters .filter::before {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    top:50%;
    left: calc(100% - 25px);
    border-radius: 3px;
    background-color: #262F3C;
    transform: translate(-50%, -50%);
    content: '';
    z-index: 1;
}
.int .line .content .box .filters .filter::after {
    position: absolute;
    display: block;
    top: calc(50% - 3px);
    left: calc(100% - 25px);
    font-size: 1.5em;
    color: #6BC4D0;
    transform: translate(-50%, -50%);
    content: '✔';
    z-index: 2;
    opacity: 0;
}
.int .line .content .box .filters .filter.on::after {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .int .line .content .box .filters .filter {
        font-size: 1.0em;
    }
}
@media screen and (max-width: 500px) {
    .int .line .content .box .filters .filter {
        width: calc(100% - 70px);
        margin: 0 0 20px 0;
    }
    .int .line .content .box .filters .filter:last-of-type {
        margin: 0;
    }
}

/* == | lines - content - gallery-list | == */
.int .line .content.gallery-list .box {
    overflow: hidden;
    border-radius: 8px;
}
.int .line .content.gallery-list .box a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.int .line .content.gallery-list .box::before {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio:1/1.3;
    float: left;
    z-index: 1;
    content: '';
}
.int .line .content.gallery-list .box img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    object-fit: cover;
}
.int .line .content.gallery-list .box .title {
    position: absolute;
    display: block;
    width: calc(100% - 60px);
    bottom: -50%;
    left: 0%;
    padding: 30px;
    z-index: 3;
    background-color: #6BC4D0;
    transition: all 0.3s ease-in-out;
}
.int .line .content.gallery-list .box:hover .title {
    bottom: 0%;
}
.int .line .content.gallery-list .box .title::before {
    position: absolute;
    display: block;
    top: 50%;
    right: 40px;
    height: 25px;
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    background-image: url(../image/ico-arrow.svg);
    background-position: 25% 100%;
    background-size: 500% 300%;
    content: '';
}
.int .line .content.gallery-list .box .title .heading:first-of-type {
    padding: 0 0 30px 0;
}
.int .line .content.gallery-list .box .title .heading:first-of-type::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 3px;
    bottom: 14px;
    left: 0px;
    transform: translate(0%, -50%);
    background: #262F3C;
    content: '';
}
@media screen and (max-width: 700px) {
    .int .line .content.gallery-list .box .title {
        bottom: 0%;
    }
}




/* == | line - content - contact | == */
.int .line .content .box.contact {
    line-height: 30px;
    font-size: 1.2em;
    z-index: 2;
}
.int .line .content .box.contact .ico {
    position: relative;
    display: block;
    width: auto!important;
    height: 1em!important;
    aspect-ratio:1/1;
    float: left;
    margin: 0 10px 0 0;
}
.int .line .content .box.contact .social-accounts {
    position: relative;
    display: block;
    padding: 0 0 0 40px;
    margin: 0 0 20px 0;
}
.int .line .content .box.contact .social-accounts .ico {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color: #1A5156;
}
.int .line .content .box.contact .social-accounts .ico::before {
    position: absolute;
    display: block;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 100%;
    background-position: 50% 50%;
    transform: translate(-50%, -50%);
    content: '';
}
.int .line .content .box.contact .social-accounts.fb .ico::before {
    background-image: url(../image/ico-social-fb.svg);
}
.int .line .content .box.contact .social-accounts.insta .ico::before {
    background-image: url(../image/ico-social-insta.svg);
}
.int .line .content .box.contact .social-accounts.linkedin .ico::before {
    background-image: url(../image/ico-social-linkedin.svg);
}
.int .line .content .box.contact.map {
    position: absolute;
    display: block;
    width: calc(50% + 26px);
    height: calc(100% - 100px);
    top: 50%;
    right:0;
    padding: 0;
    margin: 0;
    transform: translate(0, -50%);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    z-index: 1;
}
.int .line .content .box.contact.map iframe {
    border-radius: 0 8px 8px 0;
    filter: grayscale(100%) brightness(0.9);
}
@media screen and (max-width: 700px) {
    .int .line .content .box.contact.map {
        position: relative;
        display: block;
        width: calc(100% - 30px);
        height: auto;
        top: auto;
        right: auto;
        float: left;
        padding: 0;
        margin: 15px;
        transform: translate(0, 0);
        border-radius: 8px;
    }
}


/* == | line - content - map | == */
.int .line .content .box.map {
    transform-origin: 50% 50%;
}
.int .line .slide .content .box.map {
    position: absolute;
    height: calc(100% - 120px);
    right: 0;
}
.int .line .content .box.map::after {
    position: relative;
    display: block;
    width: 100%;
    padding: 0% 0 0 0;
    content: '';
}
.int .line .content .box.map iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius:10px;
    border: 0;
    transform-origin: 50% 50%;
    box-shadow:2px 3px 8px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
}
.int .line .content .box.map.big iframe {
    width: 100%;
    height: 100%;
}
.int .line .content .box.map.left iframe {
    transform: translate(-50%, -60%) rotate(-3.7deg);
}
.int .line .content .box.map.right iframe {
    transform: translate(-50%, -60%) rotate(3.7deg);
}
.int .line .content .box.map.extend-both iframe {
    height: calc(100% + 180px);
    top: calc(50% - 25px);
}
.int .line .content .box.map.extend-top iframe {
    height: calc(100% + 90px);
    top:auto;
    bottom: 0;
    transform: translate(-50%, 0%);
}
.int .line .content .box.map.extend-bottom iframe {
    height: calc(100% + 90px);
    top: 0;
    transform: translate(-50%, 0%);
}
@media screen and (max-width: 700px) {
    .int .line .content .box.map::after {
      position: relative;
      display: block;
      width: 100%;
      padding: 100% 0 0 0;
      content: '';
  }
  .int .line .content .box.map.big iframe {
      width: 80%;
      height: 80%;
  }
  .int .line .content .box.map.left iframe {
      transform: translate(-50%, -50%) rotate(-3.7deg);
  }
  .int .line .content .box.map.right iframe {
      transform: translate(-50%, -50%) rotate(3.7deg);
  }
}

/* == | line - content - box - section | == */
.int .line .content .box .section {
    position: relative;
    width: 100%;
}
.int .line .content .box .section::before {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio:1/1;
    margin: auto;
    background-image: url(../image/ico-arrow.svg);
    background-size: 500% 300%;
    background-position: 50% 50%;
    transform: rotate(90deg);
    content: '';
}
.int .line .content .box .section.up::before {
    transform: rotate(-90deg);
}

/* == | line - content - staff | == */
.int .line .content .box.staff {
    transition: all 0.2s ease-in-out;
    color: #666666;
    text-align: left;
}
.int .line .content .box.staff:hover {
    background: #6BC4D0;
    color: #fff;
}
.int .line .content .box.staff .image {
    position: relative;
    width: calc(100% + 60px);
    left: -30px;
    top: -30px;
}
.int .line .content .box.staff .image img {
    position: relative;
    display: block;
    width: 100%;
}
.int .line .content .box.staff .name {
    position: relative;
    width: 100%;
    font-size: 18px;
    padding: 0 0 8px 0;
}
.int .line .content .box.staff .job {
    position: relative;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 0 0 25px 0;
    margin: 0 0 30px 0;
    color:#6BC4D0;
    transition: all 0.2s ease-in-out;
}
.int .line .content .box.staff:hover .job {
    color:#fff;
}
.int .line .content .box.staff .job::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 6px;
    border-radius: 3px;
    left: 0;
    bottom: -10px;
    transform: translate(0, -50%);
    background: #6BC4D0;
    content: '';
}
.int .line .content .box.staff a {
    color: inherit;
    line-height: 30px;
}
@media screen and (max-width: 1600px) {
  .int .line .content .box.staff .image {
      width: calc(100% + 50px);
      left: -25px;
      top: -25px;
  }
}
@media screen and (max-width: 1400px) {
    .int .line .content .box.staff .image {
      width: calc(100% + 40px);
      left: -20px;
      top: -20px;
  }
    .int .line .content .box.staff .name {
      position: relative;
      width: 100%;
      font-size: 20px;
      text-transform: uppercase;
      padding: 0 0 8px 0;
  }
  .int .line .content .box.staff .job {
      font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
    .int .line .content .box.staff .name {
      font-size: 18px;
  }
  .int .line .content .box.staff .job {
      font-size: 14px;
  }
}

/* == | line - content - image - scroll | == */
.int .line .content.image-scroll .inner {
    width: 100%;
    aspect-ratio: 4 / 1.77;
    overflow: hidden;
}
.int .line .content.image-scroll .inner .box {
}
.int .line .content.image-scroll .inner .box {
    width: 0;
    margin: 0;
    padding: 0;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.int .line .content.image-scroll .inner .box.on {
    width: calc(33.33% - 50px);
    margin: 25px;
    opacity: 1;
}
.int .line .content.image-scroll .inner .box.image::before {
    position: relative;
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
    content: '';
}
.int .line .content.image-scroll .inner .box.image img {
    position: absolute;
    display: block;
    max-width: 50%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}
.int .line .content.image-scroll .inner .box.image:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.int .line .content.image-scroll .directions {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.int .line .content.image-scroll .directions div {
    position: absolute;
    top: 0%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.int .line .content.image-scroll .directions div.prev {
    left: -50px;
}
.int .line .content.image-scroll .directions div.next {
    left: calc(100% + 50px);
}
.int .line .content.image-scroll .directions div.prev::before, .int .line .content.image-scroll .directions div.next::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/ico-nav.svg);
    background-size: 600% 300%;
    background-position: 60% 100%;
    content: '';
}
.int .line .content.image-scroll .directions div.prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}
@media screen and (max-width: 1450px) {
    .int .line .content.image-scroll .directions {
        width: 87%;
    }
}
@media screen and (max-width: 1000px) {
    .int .line .content.image-scroll .inner {
        aspect-ratio: 2 / 1.35;
    }
    .int .line .content.image-scroll .inner .box.on {
        width: calc(50% - 30px);
        margin: 15px 15px 30px 15px;
        opacity: 1;
    }
    .int .line .content.image-scroll .directions {
        width: 84%;
    }
}
@media screen and (max-width: 700px) {
    .int .line .content.image-scroll .inner {
        aspect-ratio: 2 / 1.35;
    }
    .int .line .content.image-scroll .inner .box.on {
        width: calc(50% - 30px);
        margin: 15px 15px 30px 15px;
        opacity: 1;
    }
    .int .line .content.image-scroll .directions {
        width: 78%;
    }
}
@media screen and (max-width: 500px) {
    .int .line .content.image-scroll .inner {
        aspect-ratio: 1 / 1.35;
    }
    .int .line .content.image-scroll .inner .box.on {
        width: calc(100% - 30px);
        margin: 15px 15px 30px 15px;
        opacity: 1;
    }
    .int .line .content.image-scroll .directions {
        width: 67%;
    }
}

/* == cookies == */
.freeprivacypolicy-com---nb {
  z-index: 29!important;
  
}
.freeprivacypolicy-com---nb-simple {
	bottom: 30px!important;
	right: 30px!important;
	width: 450px!important;
	overflow: hidden;
	border-radius: 4px;
}
.freeprivacypolicy-com---nb .cc-nb-main-container {
	padding: 30px!important;
}
.cc-nb-buttons-container button {
	width: 100%!important;
	padding: 0!important;
	line-height: 40px!important;
	color: #fff!important;
  background: #6BC4D0!important;
	border-radius: 2px!important;
	font-weight: 300!important;
	margin: 0 0 10px 0!important;
}
.cc-nb-buttons-container button:nth-of-type(1) {
	margin: 0 10px 10px 0!important;
}
.cc-nb-buttons-container button:nth-of-type(1), .cc-nb-buttons-container button:nth-of-type(2) {
	width: calc(50% - 5px)!important;
}
.cc-nb-buttons-container button:last-of-type {
	margin: 0!important;
	background: #262F3C!important;
}
.cc-nb-buttons-container button.cc-nb-changep {
	background: #262F3C!important;
}
.cc-cp-foot-button button {
	width: 100%!important;
	padding: 0 20px!important;
	line-height: 40px!important;
	color: #fff!important;
  background: #6BC4D0!important;
	border-radius: 2px!important;
	font-weight: 300!important;
	margin: 0 10px 0 0!important;
	float: right;
}
.freeprivacypolicy-com---pc-dialog {
	overflow: hidden;
	border-radius: 4px;
}
@media screen and (max-width: 700px) {
  .freeprivacypolicy-com---nb-simple {
    bottom: 0px!important;
    right: 0px!important;
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 0px;
    height: auto!important;
  }
  .freeprivacypolicy-com---nb .cc-nb-main-container {
    padding: 20px!important;
    overflow: hidden;
  }
  .cc-nb-buttons-container button {
    width: 100%!important;
    padding: 0!important;
    line-height: 30px!important;
    margin: 0 0 10px 0!important;
    float: left;
  }
  .cc-nb-title {
    font-size: 16px!important;
  }
  .cc-nb-text {
    font-size: 14px!important;
  }
}