/*!
Theme Name: CSCRecruitment
*/

@import "tailwindcss";
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,500,700);

@source "./templates/**/*.php";
@source "./*.php";

@plugin "@tailwindcss/typography";
@plugin "@tailwindcss/forms";

@theme static {
    --color-primary: #006687;
    --color-secondary: #0DA3BA;
    --color-tertiary: #FEDB00;
    --color-green: #44c87e;

    --color-teal: #009191;
    --color-yellow: #fedb00;
    --color-pink: #f15ab0;

    --color-orange: #f18033;
    --color-gray: #979797;
    --color-gray-mid: #747373;
    --color-gray-dark: #212529;
    --color-gray-light: #d8d8d8;

    --font-primary: 'Quicksand', sans-serif;

    --shadow-app: 0 5px 20px 0 rgba(29, 29, 29, .3);
    --shadow-app-sm: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}


.container {
    @media (width >= 80rem) {
        max-width: 71.5rem;
    }
}

.contact-form .forminator-ui .forminator-label,
.contact-form .forminator-ui label {
    font-size: 1.3125rem !important;
    @apply font-bold text-primary text-lg mb-2;
}

.forminator-description {
    display: none !important;
}

.contact-form .forminator-ui .forminator-field-html .forminator-label, .contact-form .forminator-ui .forminator-field-html label {
    font-size: 16px !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-button:last-child {
    float: right;
    border-radius: 8px;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-left: 32px;
    padding-right: 32px;
}

.contact-form .forminator-ui input[type="text"],
.contact-form .forminator-ui input[type="email"],
.contact-form .forminator-ui input[type="tel"],
.contact-form .forminator-ui textarea {
    @apply w-full border border-gray-light bg-white px-3 py-2 text-primary
    focus:border-teal focus:outline-none rounded-none;
}

.contact-form .forminator-ui textarea {
    @apply min-h-[120px];
}

.contact-form .forminator-ui .forminator-button-submit,
.contact-form .forminator-ui button[type="submit"] {
    @apply inline-flex min-w-[180px] justify-center rounded-lg bg-green
    px-6 py-3 text-base font-bold text-white transition
    hover:bg-[#2eb276] border-0;
}


select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><path fill="%23006687" d="M119.5 326.9L3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0L128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17L136.5 327c-4.7 4.6-12.3 4.6-17-.1z"/></svg>');
}

.animated-title-with-button {
    text-align: left;
    position: relative;
}

.animated-title-with-button h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.animated-title-with-button a {
    max-width: 100%;
    font-size: 1rem;
}


.cd-title {
    position: relative;
    height: 160px;
    line-height: 230px;
    text-align: center;
}

.cd-intro {
    width: 90%;
    text-align: center;
}

.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}


.cd-headline.scale b {
    opacity: 0;
}

.cd-headline.scale i {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
}

.cd-headline.scale i .is-visible {
    opacity: 1;
}

.cd-headline.scale i.in {
    animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
    animation: scale-down 0.6s forwards;
}


.no-csstransitions .cd-headline.scale i {
    transform: scale(1);
    opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
    opacity: 1;
}


@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-down {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(0);
        opacity: 0;
    }
}

.not-found h2 {
    font-size: 18rem;
    letter-spacing: -1.6rem;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1;
}

.not-found h3 {
    font-size: 3rem;
    font-weight: 500;
}

.not-found h2, .not-found h3 {
    position: relative;
    z-index: 2;
    color: #006687;
}

.not-found {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/404.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 90%;
    font-size: 10px;
}

@media (max-width: 768px) {
    .not-found {
        padding: 4rem 2rem;
        margin-top: 3rem;
    }

    .not-found h2 {
        font-size: 4rem;
        line-height: 4rem;
        letter-spacing: -0.2rem;
    }

    .not-found h3 {
        font-size: 2rem;
    }
}
