:root {
    --color-primary: #fb582d;
    --color-hover: #FF7956;
}

img {
    max-width: 100%
}

/*header*/
.header {
    color: #333333;
    background-color: transparent;
    padding: 20px 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .container::before,
.header .container::after {
    display: none;
}

.sticky {
    width: 100%;
    position: fixed;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.header img {
    max-width: 200px;
}

.header p {
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-align: right;
}

.header.nav-sticky {
    background-color: #e7e7e779 !important;
    box-shadow: 0 10px 33px rgba(0, 0, 0, .1) !important;
    padding: 15px 0px;
}

.header.nav-sticky p {
    color: inherit;
}

@media(max-width:640px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header p {
        text-align: center;
        font-size: 1em;
    }

    .header img {
        max-width: 80px;
    }
}

@media(max-width:480px) {

    .header p {
        text-align: center;
        font-size: 0.8em;
    }
}

@media(max-width:320px) {
    .header img {
        max-width: 80px;
    }
}


/*form*/
.form-group {
    display: flex;
}

form .custom-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 15px;
    width: 100%;
}

form .custom-form-group input {
    margin-right: 8px;
    outline: none;
}

form .custom-form-group label {
    margin-bottom: 0;
    font-size: 12px;
    text-align: left;
}

form .custom-form-group label a {
    color: var(--color-primary);
}

.mandatory {
    color: red;
    margin-right: 5px;
}

@media(max-width:420px) {
    .form-group {
        flex-direction: column;
    }
}


/*footer*/
.footer {
    padding: 80px 0;
    background-color: #D2A296;
    text-align: left !important;
    color: #444444;
}

.footer .container .row {
    margin-bottom: 15px;
}

.footer .col-md-6 b,
.footer .col-md-3 b {
    font-size: 16px;
}

.footer img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    display: block;
}

.footer p {
    line-height: 24px;
}

.footer a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-hover);
}

.footer ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 14px;
}

.footer ul li {
    display: block;
    padding-bottom: 10px;
}

.copyright {
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 25px 0;
    }
}

@media(max-width:640px) {

    .footer .col-md-3,
    .footer .col-md-6 {
        margin-bottom: 10px;
    }

    .footer ul li {
        margin-bottom: 5px;
    }

    .copyright {
        margin-top: 0;
    }
}

/*docs*/
.wrapper {
    min-height: 100vh;
    padding: 200px 0;
}

.wrapper h1 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 22px;
    word-wrap: break-word;
}

.wrapper p,
.wrapper ul li {
    font-size: 18px;
    line-height: 22px;
}

.wrapper p:not(:last-child) {
    margin-bottom: 16px;
}

.wrapper a {
    text-decoration: none;
    cursor: pointer;
    color: var(--color-primary);
}

.wrapper a:hover {
    color: var(--color-hover);
}

@media(max-width:640px) {
    .wrapper {
        padding: 200px 50px;
        text-align: justify;
    }

    .wrapper h1 {
        font-size: 22px;
    }
}

@media(max-width:480px) {
    .wrapper {
        padding: 200px 25px;
    }

    .wrapper p,
    .wrapper ul li {
        font-size: 16px;
    }

    .wrapper h1 {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

/*thanks*/
.thanksWrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.thanks__img-box {
    text-align: center;
}

.thanksLogo {
    width: 80px;
}

.thanksTextContent {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.thanksText {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .thanksLogo {
        width: 80px;
    }

    .thanksWrapper {
        padding: 0 30px;
    }

    .thanksText {
        font-size: 14px;
    }
}

/*cookie*/
#cookPopup {
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 900px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

#cookPopup p {
    margin: 0;
    text-align: left
}

#cookPopup a {
    color: var(--color-primary);
}

.cookPopup_btn {
    padding: 7px 15px;
    cursor: pointer;
    border: 0;
    background: var(--color-primary);
    border-radius: 4px;
    font-weight: 800;
    color: #fff;
    transition: 0.5s all;
}

.cookPopup_btn:hover {
    background: var(--color-hover);
}

.cookPopup_title {
    font-size: 16px;
    font-weight: 700
}

.cookPopup_desc {
    font-size: 16px
}

.show {
    display: flex !important
}

@media(min-width:576px) {
    #cookPopup.show {
        display: flex;
        align-items: center
    }
}

@media(max-width:575px) {
    #cookPopup.show {
        display: block;
        text-align: left
    }

    .cookPopup_btn {
        margin: 10px 0 0 0
    }
}