@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300&display=swap');
:root {
    box-sizing: border-box;
    --primary: #fff;
    --secondary: black;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(#ebdfdf, #6d7197);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
}


/* Preloader */

.ctn-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.ctn-preloader .loader-section {
    background-color: #000;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
    left: 0;
}

.ctn-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.animation-preloader img {
    width: 600px;
    height: auto;
}

@media only screen and (max-width: 616px) {
    .animation-preloader img {
        width: 500px;
        height: auto;
    }
}

@media only screen and (max-width: 510px) {
    .animation-preloader img {
        width: 400px;
        height: auto;
    }
}

@media only screen and (max-width: 403px) {
    .animation-preloader img {
        width: 350px;
        height: auto;
    }
}

@media only screen and (max-width: 356px) {
    .animation-preloader img {
        width: 300px;
        height: auto;
    }
}

@media only screen and (max-width: 300px) {
    .animation-preloader img {
        width: 270px;
        height: auto;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Background */

#container {
    position: fixed;
    height: 100%;
    width: 100%;
}

#output {
    width: 100%;
    height: 100%;
}


/* LANGUAGE */

.change-language>div {
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.6), 0 0 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.change-language>div:hover {
    color: #fff;
    background: rgb(87, 85, 85);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.5);
}

.change-language {
    position: fixed;
    bottom: 7vw;
    right: 2vw;
    z-index: 9;
}

@media only screen and (max-width: 1430px) {
    .change-language {
        bottom: 13vw;
    }
}

@media only screen and (max-width: 630px) {
    .change-language {
        bottom: 25vw;
    }
}

.act34 {
    animation: adr33 1.2s infinite alternate-reverse;
}

@keyframes adr33 {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}


/* TOP */

.ceing {
    box-shadow: 5px 5px 10px rgb(163 177 198 / 60%), -5px -5px 10px rgb(255 255 255 / 50%);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    font-weight: 600;
}


/* Navigation */


/* Navigation */

header {
    display: -webkit-flex;
    justify-content: flex-end;
    padding: 2em 1em;
    height: 100vh;
}

.hamburger {
    --hm-width: 2em;
    --hm-height: 0.2em;
    --spacing: calc(var(--hm-width) / 4);
    width: var(--hm-width);
    height: var(--hm-height);
    background-color: var(--primary);
    position: fixed;
    transition: transform 0.8s ease-in-out;
    z-index: 3;
}

.hamburger::after,
.hamburger::before {
    content: "";
    width: 50%;
    height: inherit;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease-in-out;
}

.hamburger::after {
    top: calc(-1 * var(--spacing));
}

.hamburger::before {
    top: var(--spacing);
    left: 50%;
}

.close.hamburger::before,
.close.hamburger::after {
    left: 50%;
    transform: translate(-50%) rotate(-450deg);
    background-color: white;
}

.close.hamburger {
    transform: rotate(45deg);
    background-color: white;
}

.nav2 {
    position:fixed;
    left: 5rem;
    z-index: 1;
}

@media only screen and (max-width: 1440px) {
    .nav2 {
        left: 1rem;
    }
}

.nav2 h1 {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .nav2 {
        display: none;
    }
}

.menu2 li {
    margin: 1rem;
    list-style: none;
    transition: all 0.3s ease;
}

.menu2 li a {
    font-size: 1.2rem;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media only screen and (max-width: 1440px) {
    .menu2 li a {
        font-size: 0.7rem;
    }
}

.menu2 li a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.menu-item2 {
    color: #fff;
}

.nav1 {
    position: absolute;
    background-color: var(--secondary);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
}

.reveal-nav {
    transform: scaleX(1);
    opacity: 1;
}

.menu {
    list-style: none;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-size: calc(0.5rem + 2vw);
    text-align: center;
    opacity: 0;
    transform: translate(-20em);
    display: block;
    transition: transform 0.8s ease-in-out, opacity 0.3s ease-in;
}

.menu li+li {
    margin-top: 2em;
}

.reveal-items .menu-item {
    transform: translate(0);
    opacity: 1;
}

.reveal-items li:nth-child(1) .menu-item {
    transition-delay: 0.1s;
}

.reveal-items li:nth-child(2) .menu-item {
    transition-delay: 0.2s;
}

.reveal-items li:nth-child(3) .menu-item {
    transition-delay: 0.3s;
}

.reveal-items li:nth-child(4) .menu-item {
    transition-delay: 0.4s;
}

.reveal-items li:nth-child(5) .menu-item {
    transition-delay: 0.5s;
}

.reveal-items li:nth-child(6) .menu-item {
    transition-delay: 0.6s;
}

.reveal-items li:nth-child(7) .menu-item {
    transition-delay: 0.7s;
}


/* Backgroun image */

.zhao {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    background: url("../img/earth.jpg") 0px 0px no-repeat;
    background-size: 200% 100%;
}

.zhao-text {
    color: #fff;
    font-size: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1000px;
}

@media only screen and (max-width: 1032px) {
    .zhao-text {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 980px) {
    .zhao-text {
        font-size: 5rem;
        margin-top: -9.5rem;
    }
}

@media only screen and (max-width: 724px) {
    .zhao-text {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 578px) {
    .zhao-text {
        font-size: 10.5vw;
    }
}


/* COOPERATE */

.active::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.active::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.active::after,
.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #000;
    opacity: 0.15;
    box-sizing: border-box;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }
    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}


/* Contact section */

.topptxt1 {
    position: relative;
    text-align: center;
    top: 7rem;
    font-size: 1.5rem;
}

h1.fudo1 {
    margin-bottom: 13rem;
}
@media only screen and (max-width: 1055px) {
 
    h1.fudo1 {
        margin-bottom: 0rem;
    }
    
    }

.spanFlex {
    display: flex;
    margin-top: 5px;
    margin-top: 2rem;
}

label.fudo38 {
    color: #8b8888;
}

.ctext {
    display: block;
    position: relative;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.danger {
    border-radius: 5px;
    color: rgb(252, 6, 6);
    padding: 3px 7px;
    margin: 0px 5px;
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.boxes {
    padding-top: 50px;
    padding-bottom: 50px;
    display: grid;
    max-width: 770px;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid #000;
    border-radius: 18px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 1rem;
    margin-bottom: 20px;
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    color: black;
    cursor: pointer;
}

input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #050505;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.error {
    color: rgb(233, 66, 66);
    font-size: 15px;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.checkboxError {
    visibility: hidden;
    color: rgb(233, 66, 66);
    font-size: 15px;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

.message-contact {
    margin-left: 20em;
}

.contact-bg {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.contact-area {
    margin: 0 auto;
    max-width: 1100px;
}

.contact-bg-text {
    margin-bottom: 7rem;
}

.contact-table {
    width: 100%;
}

.table-list {
    display: flex;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 40px;
}

.table-list th {
    font-size: 1rem;
    font-weight: 700;
    width: 250px;
    text-align: left;
    color: #000;
}

.input-area {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    padding: 0 10px;
    border: none;
}

.table-list-address .input-area1 {
    margin-bottom: 10px;
}

.input-area1 {
    display: flex;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    padding: 0 10px;
    border: none;
}

.table-list td {
    font-size: 13px;
    width: calc(100% - 250px);
}

.allr {
    position: relative;
    display: flex;
    grid-gap: 3vw;
}

.radiosText {
    margin-bottom: 2rem;
    font-size: 18px;
}

input[type="radio"] {
    appearance: none;
}

input[type="radio"]+label {
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    line-height: 20px;
}

input[type="radio"]+label::before {
    content: "";
    display: inline-block;
    width: 30px;
    aspect-ratio: 1;
    border: 1px solid #030303;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

input[type="radio"]+label::after {
    content: "";
    display: inline-block;
    width: 20px;
    aspect-ratio: 1;
    border: 1px solid #050505;
    background: #010101;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

input[type="radio"]:checked+label::after {
    opacity: 1;
}

input[type="text"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 780px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
    padding: 18px;
}

input[type="mail"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 780px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
}

.inputFlex1 {
    grid-template-columns: 1fr 1fr;
}

.inputFlex2 {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

input[name="name"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 382px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
    margin-right: 1rem;
}

input[name="secondname"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 382px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
}

input[name="hiragana"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 382px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
    margin-right: 1rem;
}

input[name="secondhiragana"] {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 382px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    border-radius: 10px;
}

textarea {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    padding: 10px;
    width: 780px;
    height: 360px;
    box-sizing: border-box;
    border: 1px solid rgb(149, 146, 146);
    resize: none;
}

.button-confirm {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    border: none;
    width: 230px;
    height: 50px;
    box-sizing: border-box;
    background-color: rgb(227, 15, 15);
    color: #fff;
    transition: all 0.5s;
    cursor: pointer;
    border-radius: 10px;
}

.button-confirm span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-size: 1.2rem;
}

.button-confirm span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button-confirm:hover span {
    padding-right: 25px;
}

.button-confirm:hover span:after {
    opacity: 1;
}

@media(max-width:1120px) {
    .contact-area {
        margin-left: -10em;
    }
}

@media(max-width:1055px) {
    .boxes {
        max-width: 1200px;
    }
    .message-contact {
        margin-left: 10rem;
    }
    .button {
        display: flex;
        justify-content: center
    }
    .inputFlex1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .inputFlex2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .contact-bg {
        margin: 50px auto 0;
        padding: 50px 0;
    }
    .contact-area {
        padding: 50px 20px;
    }
    .check-box label {
        width: 100%;
    }
    input[type="text"] {
        width: 99%;
    }
    textarea {
        width: 99%;
    }
    input[type="mail"] {
        width: 99%;
    }
    .table-list {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .table-list th {
        font-size: 12px;
        width: 200px;
        margin-bottom: 10px;
    }
    .table-list td {
        font-size: 12px;
        width: 100%;
    }
}

@media (max-width:500px) {
    input[type="checkbox"]+label:before {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 15px;
        top: 0;
    }
    input[type="checkbox"]+label {
        padding-left: 42px;
        font: 12px/20px 'Open Sans', Arial, sans-serif;
        margin: 0.5rem;
    }
    .boxes {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    position: relative;
    margin-top: 3rem;
    background-color: #808393;
    padding: 70px 0;
}

.topmenus {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    max-width: 800px;
    margin: auto;
    padding-top: 2vw;
    border-bottom: 0.8px solid white;
    padding-bottom: 1.5rem;
    color: aliceblue;
}


.topmenus a {
    text-decoration: none;
}


 .topmenus h1 {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all .5s;
}

.topmenus h1:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 2px;
}



.logoaddress {
    position: relative;
    padding-top: 2vw;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 200px 200px;
    color: aliceblue;
    margin-bottom: 3rem;
}



.logoaddress img {
    width: 105px;
}

.adresss {
    font-size: 0.9rem;
    text-align: left;
    color: aliceblue;
}
/* For Tablet View */

@media screen and (max-width: 700px) {
    .topmenus {
        display: grid;
        gap: 1.5rem;
        text-align: center;
        border-bottom: none;
    }
}

@media screen and (max-width: 486px) {
    .logoaddress {
        padding-top: 1vw;
        justify-content: center;
        align-items: center;
        display: grid;
        grid-template-columns: 140px 140px;
        color: aliceblue;
    }
    .logoaddress img {
        width: 85px;
    }
    .adresss {
        font-size: 0.7rem;
    }
}





/* 
.footer {
    position: relative;
    margin-top: 8rem;
    background-color: #808393;
    padding: 70px 0;
    cursor: pointer;
}

.footer-flex {
    display: flex;
    color: #000;
    justify-content: space-evenly;
}

.footer-flex1 {
    font-size: 4.5rem;
}

.footer-flex2 {
    font-size: 3.5rem;
}

footer p {
    width: 700px;
    margin: 1rem auto auto auto;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 6rem;
}

@media screen and (min-width:200px) and (max-width:1130px) {
    .footer-flex {
        flex-direction: column;
        padding: 30px;
    }
    .footer p {
        width: 80%;
    }
}

@media screen and (max-width:555px) {
    .footer-flex1 {
        font-size: 3.5rem;
    }
    .footer-flex2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:395px) {
    .footer-flex1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:350px) {
    .footer-flex1 {
        font-size: 2rem;
    }
    .footer-flex2 {
        font-size: 1rem;
    }
    .footer p {
        font-size: 1rem;
        width: 80%;
    }
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

@media screen and (max-width:1024px) {
    .footer-container {
        max-width: 1000px;
    }
}

.footer-img {
    display: flex;
    justify-content: center;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

}

ul {
    list-style: none;
}

.footer-col {
    cursor: pointer;
}



.footer-col h4 {
    font-size: 1rem;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #8b8986;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #fff;
}

.footer-col ul li a {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size:0.9rem;
    text-decoration: none;
    transition: all .5s;
}

.footer-col ul li a:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 8px;
}


@media screen and (max-width:1270px){
      .footer-col{
        padding: 0 35px;
      }
}


@media screen and (min-width:280px) and (max-width:768px) {

  .row {
    display: list-item;
  }

    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-text {
        display: flex;
        flex-direction: column;
        line-height: 20px;
    }
} */