@font-face {
    font-family: "Montserrat Regular";
    font-style: normal;
    font-weight: 400;
    src: url("/font/Montserrat-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat Semi Bold";
    font-style: normal;
    font-weight: 500;
    src: url("/font/Montserrat-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat Bold";
    font-style: normal;
    font-weight: 700;
    src: url("/font/Montserrat-Bold.woff2") format("woff2");
}

.montserrat-regular {
    font-family: "Montserrat Regular";
}

.montserrat-semibold {
    font-family: "Montserrat Semi Bold";
}

.montserrat-bold {
    font-family: "Montserrat Bold";
}

:root {
    --color-light-black: #1D1E1C;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #c10b25;
    --color-gray: #737373;
    --color-light-gray: #D8D8D8;
}

body {
    color: var(--color-black);
    font-family: "Montserrat Regular";
    font-size: 18px;
}

.center-content {
    margin: 0 auto;
    max-width: 1300px;
}

a:hover {
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    color: var(--color-red);
    text-decoration: none;
}

.fs-18 {
    font-size: 18px;
}

.fs-25 {
    font-size: 25px;
}

.fs-20 {
    font-size: 20px;
}

.text-red {
    color: var(--color-red);
}

.text-gray {
    color: var(--color-gray);
}

.text-highlights {
    color: var(--color-red);
}

.bg-highlights {
    background-color: var(--color-red);
}

.swal2-styled:focus {
    outline: 0;
    box-shadow: none;
}

.swal2-styled {
    padding: 0.5em 1em;
}

.swal2-title {
    color: var(--color-black);
    font-size: 1.5em;
}

.swal2-content {
    color: var(--color-black);
}

.swal2-label {
    font-family: "Montserrat Regular";
    font-size: 0.8em;
}

.swal2-input:focus {
    border: 1px solid #87adbd;
    outline: none;
    box-shadow: none;
}

.swal2-input {
    margin: 0 auto;
    margin-top: 1em;
    width: auto;
}

.swal2-validation-message {
    margin-top: 1em;
}

/*--- header ---*/
#page-header-ptone {
    height: 64px;
}

#page-header-pttwo {
    width: 100%;
    position: fixed;
    padding: 20px 0;
    margin-top: -64px;
}

#page-header-pttwo,
#page-header-ptone {
    z-index: 999;
    background-color: var(--color-black);
}

#page-header-pttwo .center-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subitem-header-div {
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-white);
    text-align: center;
}

#page-header-pttwo-btn-carrer {
    max-width: 190px;
    width: 100%;
    min-height: 40px;
    border-radius: 40px;
    border: none;
    padding: 0 15px;
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.1;
    font-family: "Montserrat Bold";
    font-size: 16px;
    transition: 0.3s ease all;
}

#page-header-pttwo-btn-carrer:hover {
    background: var(--color-red);
    color: var(--color-white);
}

#page-header-mobile-ptone {
    height: 65px;
}

#page-header-mobile-pttwo {
    position: fixed;
    width: 100%;
    padding: 18px 0;
    margin-top: -65px;
}

#page-header-mobile-ptone,
#page-header-mobile-pttwo {
    background-color: var(--color-black);
    z-index: 999;
}

#page-header-mobile-pttwo .navbar {
    padding: 0;
}

#nav-button {
    background-color: var(--color-black);
    border: none;
    padding: 0 28px 29px 3px;
    height: 25px;
    width: 25px;
}

#submenu-mobile {
    padding-left: 5px;
}

.nav-item .nav-link {
    font-family: "Montserrat Bold";
    font-size: 16px;
    color: var(--color-white);
}

/*--- header ---*/

/*--- footer ---*/
#page-footer-ptone {
    background-color: var(--color-red);
    font-family: "Montserrat Bold";
    font-size: 16px;
    color: #fff;
    padding: 27px 10px;
    word-wrap: break-word;
}

#page-footer-pttwo {
    background-color: var(--color-white);
    text-align: center;
    color: var(--color-red);
    font-family: "Montserrat Bold";
    font-size: 16px;
    padding: 20px 0;
}

.footer-item,
.footer-item-sep {
    display: inline-block;
}

.footer-item-sep {
    padding: 0 5px;
    color: var(--color-black);
}

/*--- footer ---*/

@media only screen and (max-width: 600px) {

    .footer-item,
    .footer-item-sep {
        display: block;
    }

    .footer-item-sep {
        display: none;
    }
}