@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format('truetype');
}

@font-face {
    font-family: "PoppinsBold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf") format('truetype');
}

@font-face {
    font-family: "PoppinsSemiBold";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format('truetype');
}

@font-face {
    font-family: "PoppinsMedium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf") format('truetype');
}

@font-face {
    font-family: "PoppinsThin";
    src: url("../fonts/Poppins/Poppins-Thin.ttf") format('truetype');
}


html{
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: black;
    font-family: "PoppinsSemiBold";
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

p {
    color: #666666;
    font-family: "Poppins";
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
p.centered{
    line-height: 1.3;
    font-size: 0.95em;
}

.logo {
    max-height: 87px;
}
.footer-logo {
    opacity: 0.8;
    filter: grayscale(100%);
    max-height: 125px;
}


.intro{
    line-height: 1.8;
}

.methods{
    padding-right: 20%;
}

.container {
    padding: 0;
    margin: 0;
}

.nav-primary {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: white;
    background-color: #00CCFF;
    font-size: 1em;
    font-family: "PoppinsMedium";
    border-radius: 10px;
}

.nav-primary:hover {
    color: black;
    text-decoration: none;
}

.nav-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: white;
    background-color: #00CCFF;
    font-size: 21px;
    font-family: "PoppinsMedium";
    border-radius: 10px;

}

.nav-button:hover {
    color: black;
    text-decoration: none;
}

nav.navbar {
    background-color: rgba(218, 218, 218, 0.5) !important;
    padding-left: 10%;
    padding-right: 10%;
}

.navbar {
    transition: all 0.4s;
}



.navbar .nav-link:hover,
.navbar .nav-link:focus {
    text-decoration: none;
}

/* Change navbar styling on scroll */
nav.navbar.active {
    background-color: rgba(218, 218, 218) !important;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    text-decoration: none;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item .nav-link {
    color: black;
    font-size: 21px;
    border-bottom: 3px solid transparent;
    font-family: "PoppinsSemiBold";
    padding-top: 30px;
    padding-bottom: 30px;
}

.nav-item .nav-link:focus,
.nav-item .nav-link:hover {
    color: black;
    border-bottom: 3px solid #00CCFF;
    margin-bottom: -5;
}

.nav-item .nav-link.active{
    color: black;
    border-bottom: 3px solid #00CCFF;
    margin-bottom: -5;
}

.toggler {
    border: none;
    outline: none;
    background-color: transparent;
}
.toggler:focus {
    border: none;
    outline: none;
    background-color: transparent;
}

/* #app {
    padding-top: 20px;
} */

.header-img {
    width: 100%;
    margin-top: -100px;
}

.carousel {
    width: 100%;
    margin-top: -100px;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.tales {
    width: 100%;
}

.team-image {
    border-radius: 50%;
    max-height: 250px;
    max-width: 250px;
}

.method {
    color: black;
    background-color: transparent;
    width: 100%;
    text-align: left;
    outline: none!important;
    border: none!important;
}

.method.clickable:hover,
.method.clickable.focus,
.method.clickable.active {
    color: #00CCFF;
    background-color: transparent;
    outline: none;
    border: none!important;
}

.method-card {
    background-color: transparent;
    outline: none;
    border: none;
    padding-right: 10%;
}

.method-span {
    color: #666666;
    font-family: "Poppins";
    outline: none;
    border: none;
}

.rotate {
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.rotate.down {
    -ms-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.contacs {
    font-size: 1.2em;
}

.mail-link {
    font-family: "PoppinsMedium";
    color: #0ACEFF;
    text-decoration: none;
}

.mail-link:hover {
    color: black;
    text-decoration: none;
}

.phone-link {
    color: #666666;
    font-family: "Poppins";
    text-decoration: none;
    pointer-events: none;
}

.phone-link:hover {
    color: #666666;
    cursor: text;
    text-decoration: none;
}

.phone-link-footer {
    font-family: "PoppinsMedium";
    color: #0ACEFF;
    text-decoration: none;
    pointer-events: none;
}

.phone-link-footer:hover {
    color: black;
}

.primary, a.primary{
    color: #0ACEFF;
    font-family: "PoppinsMedium";
}
a.primary:hover{
    text-decoration: none;
    color:black
}

.white {
    color:rgb(218, 218, 218); 
    font-family: "PoppinsMedium";
}

footer {
    background-color: #3a3a3a;
    margin-top: auto;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .phone-link {
        -webkit-appearance: button;
        -moz-appearance: button;
        appearance: button;

        text-decoration: none;
        color: white;
        background-color: #00CCFF;
        font-family: "PoppinsMedium";
        border-radius: 10px;
        pointer-events: auto;
    }
    .phone-link-footer {
        pointer-events: auto;
    }
    footer {
        height: 310px;
    }
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
    .header-img {
        margin-top: 0;
    }

    .nav-item .nav-link,
    .nav-item .nav-button {
        color: black;
        background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        font-family: "PoppinsSemiBold";
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        max-height: 50px;
    }
    .footer-logo {
        align-self: center;
        max-height: 100px;
    }


    nav.navbar {
        padding-left: 5%;
        padding-right: 5%;
    }

    .centered {
        text-align: center;
    }
    .carousel {
        margin-top: 0;
    }
    .methods{
        padding-right: 0%;
    }
    .method-card {
        padding-right: 0%;
    }


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    footer {
        height: 170px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 2000px) {}