/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    background-position: 0 0;
    position: relative;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 375px;
    background-image: url('/assets/images/background1.png');
    background-size: 100%;
    background-position: 0 -370px;
    opacity: 0.7;
    z-index: -1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS Reset End */
/* Custom Styles Start */

.wrap_head {
    border-bottom: 1px solid #97271B;
    box-shadow: #97271B 0px 0px 10px 0px;
    background-color: #f8f8f8;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
    margin: 6px 10px 6px 10px;
}

.adress,
.phone,
.mail,
.lang_switcher {
    margin: 10px 10px 20px 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-family: 'Montserrat';
    font-weight: 500;
    cursor: pointer;
    display: flex;
    gap: 6px;
}

.lang_switcher img {
    width: 25px;
    cursor: pointer;
    border: 2px solid transparent;
}

/* .lang_switcher img:hover {
    border-color: #97271B;
} */

.wrap_body {
    margin: 50px auto 0;
}

/* .site_form {
    margin: 30px auto 0;
    max-width: 1400px;
} */

.site_form {
    max-width: 1350px;
    margin: 0 auto;
}

.footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #333;
    font-family: 'Montserrat';
    font-weight: normal;
    margin-top: 40px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tours_search_frame {
    width: 100%;
    height: 280px;
}

.promo_prices_site_title > h1 {
    font-size: 38px;
    font-weight: 600;
    font-family: Montserrat;
    text-align: center;
    margin: 30px 10px;
    color: #7D1814;
}

a,
a:hover {
    color: #97271B;
    text-decoration: none;
}

.delimeter {
    color: #97271B;
}

@media screen and (max-width: 992px) {
    body::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 538px;
        background-image: url('/assets/images/background.png');
        background-size: 100%;
        background-position: 0 0;
        opacity: 0.7;
        z-index: -1;
    }

    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 100px;
        margin-top: 14px;
    }

    .adress,
    .phone,
    .mail {
        margin: 4px 0;
        font-size: 14px;
    }

    #tours_search_frame {
        width: 100%;
        height: 375px;
    }

    body::after {
        display: none;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/images/background.png');
        background-size: 100%;
        background-position: 0 0;
        opacity: 0.2;
        z-index: -1;
    }
}

@media screen and (max-width: 595px) {
        #tours_search_frame {
        height: 550px;
    }
}