/* Buttons*/

/* custom */

.custom .form-group {
    margin-bottom: 24px;
}

.custom .form-group .form-control {
    background-color: var(--light-green);
    border: 1px solid var(--green);
    font: 400 24px;
    height: 56px;
    font-size: 16px;
    padding: 14px 8px 14px 24px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 4px;
    color: var(--green);
    display: inline-block;
    outline: none !important;
    box-shadow: none;
}

.custom .form-group textarea.form-control {
    min-height: 200px;
}

.custom .form-group .form-control::placeholder {
    color: var(--green);
    font-size: 14.4px;
    font-weight: 400;
    line-height: 1.5;
}

/*RESPONSIVE*/
/* Medium devices(md) (tablets, less than 992px)*/
@media (max-width: 991.98px) {}

/* Small devices(sm) devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {}

/* Extra small(xs) devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {}

/*#new add (only for desktop screens)*/
@media all and (min-width: 992px) {}

/* Large(lg) devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {}

/*Extra large(xl) devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/*Extra extra large (xxl) devices (large desktops, 1200px and up)*/
@media (min-width: 1400px) and (max-width: 1920.98px) {}

/*#new add (full hd, 1920px and up)*/
@media all and (min-width: 1921px) {}