/* GLOBAL */

body {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px;
    background-color: #ffffff;
}

.wrapper {
    box-sizing: border-box;
    position: relative;
    display: block;
    padding: 136px 0px 0px 0px;
    margin: 0px auto;
    width: 100%;
    max-width: 1920px;
    min-width: 320px;
}

/* BACKGROUND */

.bg {
    box-sizing: border-box;
    position: fixed;
    display: block;
    top: 0px;
    width: 100%;
    height: 100vh;
    max-width: inherit;
    min-width: inherit;
    background-color: #ffffff;
    z-index: 1;
}

/* TOPBAR */

.topbar {
    box-sizing: border-box;
    position: fixed;
    display: block;
    top: 0px;
    width: 100%;
    height: 136px;
    max-width: inherit;
    min-width: inherit;
    background-color: #ffffff;
    z-index: 3;
}

.topbar .topbar-body {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px auto;
    padding: 0px 190px 0px 326px;
    width: 100%;
    max-width: 1420px;
    text-align: right;
}

.topbar .topbar-body .logo {
    box-sizing: border-box;
    position: absolute;
    display: block;
    left: 12px;
    top: 20px;
    width: 300px;
    text-decoration: none;
    z-index: 1;
}

.topbar .topbar-body .logo img {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 100%;
}

.topbar .topbar-body .menu {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    padding: 84px 20px 0px 20px;
    width: 100%;
    max-width: 900px;
}

.topbar .topbar-body .menu .link-btn {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    padding: 0px 24px;
    text-decoration: none;
    text-align: center;
    width: auto;
}

.topbar .topbar-body .menu .link-btn .txt {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: top;
    top: 0px;
    text-transform: uppercase;
    font-family: 'MontserratMedium';
    font-size: 16px;
    font-weight: 500;
    color: #486273;
}

.topbar .topbar-body .menu .link-btn .line {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 5px 0px 0px 0px;
    width: 100%;
    max-width: 76px;
    height: 4px;
    border-radius: 2px;
    background: #486273;
    opacity: 0;
}

.topbar .topbar-body .menu .link-btn.selected .line {
    opacity: 1;
    animation: fadeIn 1s;
}

.topbar .topbar-body .contact-btn {
    box-sizing: border-box;
    position: absolute;
    display: block;
    right: 20px;
    top: 74px;
    width: 150px;
    padding: 10px 0px;
    border-radius: 19px;
    background: #d8d8d8;
    text-align: center;
}

.topbar .topbar-body .contact-btn:hover {
    background: #486273;
}

.topbar .topbar-body .contact-btn .txt {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: 'MontserratMedium';
    font-size: 14px;
    color: #486273;
}

.topbar .topbar-body .contact-btn:hover .txt {
    color: #d8d8d8;
}

@media only screen and (max-width: 1276px) {
    .topbar .topbar-body {
        padding: 0px;
        text-align: center;
    }

    .topbar .topbar-body .logo {
        width: 202px;
    }

    .topbar .topbar-body .menu {
        padding: 100px 10px 0px 10px;
    }

    .topbar .topbar-body .contact-btn {
        top: 36px;
    }
}

@media only screen and (max-width: 748px) {
    .topbar .topbar-body .menu .link-btn {
        padding: 0px 2px;
        width: 20%;
    }
}

@media only screen and (max-width: 680px) {
    .topbar .topbar-body .menu {
        padding: 97px 10px 0px 10px;
    }

    .topbar .topbar-body .menu .link-btn {
        padding: 0px 5px;
    }

    .topbar .topbar-body .menu .link-btn:first-child {
        display: none;
    }

    .topbar .topbar-body .menu .link-btn .txt {
        font-size: 12px;
    }

    .topbar .topbar-body .contact-btn {
        display: none;
    }
}

@media only screen and (max-width: 390px) {
    .topbar .topbar-body .menu .link-btn {
        width: 25%;
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
}

/* CONTENT */

.content {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    z-index: 2;
}

.content.disable {
    position: fixed;
}

.content footer {
    box-sizing: border-box;
    position: relative;
    display: block;
    padding: 60px 20px;
}

.content footer .contact-details {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px auto 60px auto;
    width: 100%;
    max-width: 1080px;
}

.content footer .contact-details span {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-family: 'MontserratMedium';
    font-size: 14px;
    color: #486273;
}

.content footer .contact-details .phone {
    padding: 0px 60px 0px 0px;
    border-right: 1px solid #486273;
    text-align: right;
}

.content footer .contact-details .email {
    padding: 0px 0px 0px 60px;
    text-align: left;
    text-decoration: underline;
}
.content footer .contact-details .email a {
   
   color:#486273 !important;
}

@media only screen and (max-width: 650px) {
    .content footer .contact-details span {
        width: 100%;
    }

    .content footer .contact-details .phone {
        padding: 0px;
        border-right: none;
        text-align: center;
    }
      .content footer .contact-details .phone a {
         color:#486273 !important;
    }

    .content footer .contact-details .email {
        padding: 20px 0px 0px 0px;
        text-align: center;
        text-decoration: underline;
    }
}

.content footer .paragraphs-holder {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 60px auto 0px auto;
    width: 100%;
    max-width: 1080px;
}

.content footer .paragraphs-holder p {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 10px 0px 0px 0px;
    width: 100%;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    color: #486273;
    text-align: center;
}

/* OVERLAY */

.overlay {
    box-sizing: border-box;
    position: fixed;
    display: none;
    top: 0px;
    width: 100%;
    height: 100vh;
    max-width: inherit;
    min-width: inherit;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 4;
}

.overlay.show {
    display: block;
}

/* POPUP */

.popup {
    box-sizing: border-box;
    position: absolute;
    display: none;
    padding: 180px 20px 60px 20px;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 5;
}

.popup.show {
    display: block;
}

.popup .popup-body {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px auto;
    padding: 60px;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .popup .popup-body {
        padding: 60px 25px 25px 25px;
    }
}

.popup .popup-body h1 {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px;
    font-family: 'LibreBaskervilleRegular';
    font-size: 22px;
    text-align: center;
    color: #486273;
}

.popup .popup-body form {
    box-sizing: border-box;
    position: relative;
    display: block;
}

.popup .popup-body form .row {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 20px 0px 0px 0px;
    width: 100%;
}

.popup .popup-body form .row .phone-holder {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    padding: 0px 7px 0px 0px;
    width: 40%;
}

.popup .popup-body form .row .email-holder {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    padding: 0px 0px 0px 7px;
    width: 60%;
}

.popup .popup-body form .row label {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0px;
    width: 100%;
    font-family: 'LibreBaskervilleRegular';
    font-size: 14px;
    color: #486273;
}

.popup .popup-body form .row input {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 8px 0px 0px 0px;
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #486273;
    outline: none;
    width: 100%;
    border-radius: 5px;
    font-family: 'LibreBaskervilleRegular';
    font-size: 14px;
    color: #486273;
}

.popup .popup-body form .row textarea {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 8px 0px 0px 0px;
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #486273;
    outline: none;
    resize: none;
    border-radius: 5px;
    font-family: 'LibreBaskervilleRegular';
    font-size: 14px;
    color: #486273;
}

.popup .popup-body form .send-btn {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 20px auto 0px auto;
    padding: 6px 15px;
    border: none;
    outline: none;
    width: 100%;
    max-width: 150px;
    padding: 10px 0px;
    border-radius: 19px;
    background: #486273;
    font-family: 'MontserratSemiBold';
    font-size: 14px;
    text-align: center;
    color: #d8d8d8;
    cursor: pointer;
}

.popup .popup-body form .send-btn:hover {
    background: #d8d8d8;
    color: #486273;
}

.popup .popup-body .close-btn {
    box-sizing: border-box;
    position: absolute;
    display: block;
    padding: 6px 15px;
    right: 25px;
    top: 25px;
    width: 32px;
    height: 32px;
    text-decoration: none;
    text-align: left;
    border-radius: 16px;
    background-color: #486273;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M19.899,17.071 L17.071,19.899 L10.000,12.828 L2.929,19.899 L0.101,17.071 L7.172,10.000 L0.101,2.929 L2.929,0.100 L10.000,7.172 L17.071,0.100 L19.899,2.929 L12.828,10.000 L19.899,17.071 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center;
}
