@font-face {
    font-family: "Source Sans Pro Regular";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Source Sans Pro Italic";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-RegularItalic.ttf) format("truetype");
}

@font-face {
    font-family: "Source Sans Pro SemiBold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Source Sans Pro Bold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Bold.ttf) format("truetype");
}

html {
    scroll-behavior: smooth;
}

body.login-page {
    background-image: url("../images/background_admin.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: cover;
    color: #606468;
    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
    position: relative;
}

.login_title_cw {
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #1d97e2;
    font-weight: bold;
}

.login-box-msg {
    color: #1d97e2;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

:root {
    --wallis-textgrey: #8b8b8b;
    --wallis-lightgrey: #eaeff1;
    --wallis-lightgreen: #10bf7a;
    --wallis-darkgreen: #02ac69;
    --wallis-lightblue: #d3e2e8;
    --wallis-dark: #1f1e1c;
}

a:hover {
    text-decoration: none;
}

.grey-shadow {
    -webkit-box-shadow: 0px 0px 44px 2px var(--wallis-textgrey);
    -moz-box-shadow: 0px 0px 44px 2px var(--wallis-textgrey);
    box-shadow: 0px 0px 44px 2px var(--wallis-textgrey);
}

body {
    font-family: "Source Sans Pro Regular";
    font-size: 16px;
    color: var(--wallis-textgrey);
    overflow-x: hidden;
    position: relative;
}

.language-menu a {
    font-size: 17px;
    text-transform: uppercase;
}

.language-menu a,
nav .nav-link {
    color: var(--wallis-textgrey);
}

nav .nav-link {
    font-family: "Source Sans Pro SemiBold";
    display: inline-block;
    position: relative;
    transition: color 0.25s ease-out;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-right: .5rem;
    margin-left: .5rem;
}

nav .nav-link::after {
    display: inline-block;
    position: relative;
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--wallis-darkgreen);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav .nav-link.active-link::after,
nav .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

nav .nav-link.active-link,
nav .nav-link:hover {
    color: var(--wallis-dark) !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.circle-holder {
    position: relative;
    overflow: hidden;
}

.blue-circle {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 0;
}

.blue-circle::before,
.blue-circle::after {
    background-color: var(--wallis-lightblue);
    position: absolute;
    z-index: -5;
    display: block;
    content: "";
}

.blue-circle::before {
    border-radius: 50%;
    width: 1200px;
    height: 1200px;
    top: -105px;
    right: -400px;
}

.blue-circle::after {
    border-top-right-radius: 600px;
    width: 600px;
    height: 600px;
    left: 0;
    bottom: 0;
}

.navbar-brand img {
    width: 140px;
}

.language-menu img {
    margin-right: 0.3em;
}

.language-menu span {
    padding: 0 0.1em;
}

.language-menu a.current {
    font-family: "Source Sans Pro Bold";
    color: var(--wallis-dark);
}

.language-menu {
    margin-left: 1em;
    width: 130px;
    text-align: right;
}

#navbarSupportedContent {
    z-index: 20;
}

.navbar {
    margin-bottom: 1em;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: var(--wallis-lightgrey);
    border-radius: 50%;
    opacity: 1;
    transition: background-color 0.6s ease;
    margin-right: 4px;
    margin-left: 4px;
}

.carousel-indicators .active {
    background-color: var(--wallis-darkgreen);
}

#carouselTop .carousel-indicators {
    bottom: -60px;
    margin-left: 0;
    margin-right: 0;
    width: 83%;
}

#carouselTop .carousel-item > img {
    width: 83%;
    border-radius: 15px;
    height: 385px;
    object-fit: cover;
}

#carouselTop.home {
    margin-bottom: 6em;
}

#carouselTop .carousel-caption {
    font-family: "Source Sans Pro Bold";
    text-transform: uppercase;
    left: unset;
    right: 35px;
    top: 20px;
    width: 78%;
    text-align: right;
}

#carouselTop .carousel-caption h1 {
    font-size: 75px;
    padding-right: 70px;
    text-shadow: 0px 0px 30px var(--wallis-textgrey);
}

.carousel-link {
    font-family: "Source Sans Pro Bold";
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: var(--wallis-lightgreen);
    padding: 1em 2em;
    -webkit-box-shadow: 0px 0px 15px 2px var(--wallis-textgrey);
    -moz-box-shadow: 0px 0px 15px 2px var(--wallis-textgrey);
    box-shadow: 0px 0px 15px 2px var(--wallis-textgrey);
    z-index: 15;
    position: absolute;
    right: 30px;
    bottom: 8%;
    display: flex;
    align-items: center;
}

.carousel-link:hover {
    color: #fff;
}

.block-caption-small,
.block-caption-big {
    font-family: "Source Sans Pro SemiBold";
    color: var(--wallis-dark);
    font-size: 40px;
    margin-bottom: 1rem;
}

.block-caption-small {
    font-size: 22px;
}

.arrow-link {
    font-family: "Source Sans Pro SemiBold";
    color: var(--wallis-dark);
    display: flex;
    align-items: center;
}

.arrow-link:hover {
    color: var(--wallis-dark);
}

.arrow-link img {
    margin-left: 1em;
}

.grey-block {
    background-color: var(--wallis-lightgrey);
    border-radius: 15px;
    padding: 3em 2em;
}

.green-logo-block {
    background-color: var(--wallis-darkgreen);
    border-radius: 15px;
    color: #fff;
    padding: 2.5em 2em 2.5em 8em;
    margin: 5em -30% 5em 30%;
    position: relative;
}

.green-logo-block img {
    position: absolute;
    left: -25%;
    top: calc(50% - 242px / 2);
}

.sheep-img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 15px;
}

.sheep-title {
    font-family: "Source Sans Pro Bold";
    color: var(--wallis-dark);
    font-size: 18px;
    margin-top: 1em;
}

.green-block {
    background-color: var(--wallis-darkgreen);
    color: #fff;
    border-radius: 15px;
    padding: 2em;
}

.bottom-section,
.green-side-row {
    margin-top: 5em;
}

.bottom-section-img {
    width: 100%;
    border-radius: 15px;
}

.bottom-section {
    align-items: center;
}

.reservation-block {
    margin: 5em 0;
    align-items: center;
}

.contact-us form .form-group,
.reservation-block .form-group {
    margin-bottom: 1.5em;
}

.contact-us form .form-group .label-input,
.reservation-block .form-group .label-input {
    display: flex;
    align-items: center;
}

.contact-us form .form-group.message .label-input {
    align-items: flex-start;
}

.form-group.message label {
    margin-top: .5em;
}

.contact-us form label,
.reservation-block label {
    width: 70px;
    margin-bottom: 0;
    font-family: "Source Sans Pro SemiBold";
    color: var(--wallis-dark);
    font-size: 16px;
}

.checkbox-label {
    width: unset !important;
}

.checkbox-label a {
    color: var(--wallis-textgrey);
}

.contact-us form input[type="text"],
.contact-us form textarea,
.reservation-block input[type="text"] {
    width: 100%;
    border: none;
    padding: 0.5em;
    border-radius: 5px;
}

.contact-us form ::placeholder,
.reservation-block input[type="text"]::placeholder {
    font-family: "Source Sans Pro Italic";
    font-size: 16px;
}

.contact-us form button,
.reservation-block button {
    font-family: "Source Sans Pro Bold";
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    background: rgb(3, 172, 104);
    background: linear-gradient(
        90deg,
        rgba(3, 172, 104, 1) 0%,
        rgba(32, 215, 143, 1) 100%
    );
    border: 0;
    padding: 0.9em 2.3em;
    position: absolute;
    bottom: -85px;
    right: 15px;
    display: flex;
    align-items: center;
}

.logo-container {
    text-align: center;
    margin: 5em 0;
}

.carousel-link.sheep-list {
    bottom: 20%;
}

.text-under-banner {
    text-align: justify;
    margin-top: 3em;
}

.small-title {
    font-family: "Source Sans Pro SemiBold";
    color: var(--wallis-dark);
}

.item-title-container,
.item-img-container {
    display: inline-block;
    height: 100%;
}

.item-title-container {
    width: 49%;
    padding-left: 2em;
}

.item-img-container {
    width: 50%;
    height: 207px;
}

.item-title-container h2 {
    font-family: "Source Sans Pro Bold";
    color: var(--wallis-dark);
    font-size: 22px;
}

.item-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.sheep-item {
    margin-top: 5em;
    margin-bottom: 5em;
}

.sheep-item-head {
    display: flex;
    margin-bottom: 2em;
}

.farm-img-block {
    margin-top: 7em;
}

.more-img-block img,
.farm-img-block .row img {
    width: 100%;
    object-fit: cover;
    height: 97px;
    border-radius: 15px;
}

.farm-img-block .row>div {
    text-align: center;
}

.static-grey-block {
    background-color: var(--wallis-lightgrey);
    color: var(--wallis-dark);
    font-size: 18px;
    font-family: "Source Sans Pro SemiBold";
    padding: 2em;
    margin-top: 2.5em;
    border-radius: 15px;
    text-align: justify;
}

.static-subpage h1,
.static-subpage h2,
.static-subpage h3,
.static-subpage h4,
.static-subpage h5,
.static-subpage h6 {
    color: var(--wallis-dark);
    font-family: "Source Sans Pro SemiBold";
}

.static-subpage,
.static-subpage p,
.static-subpage span {
    font-family: "Source Sans Pro Regular" !important;
    font-size: 18px !important;
}

.static-subpage {
    margin-top: 2.5em;
}

.contact-us.blue-circle::after {
    display: none;
    content: unset;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

.icon-holder {
    width: 37px;
    margin-right: 1em;
    text-align: center;
}

.contact-title {
    font-family: "Source Sans Pro SemiBold";
}

.contact-value,
.contact-value a{
    font-family: "Source Sans Pro Bold";
    color: var(--wallis-dark);
}

.contact-value a:hover {
    color: var(--wallis-dark);
}

.grey-form {
    background-color: var(--wallis-lightgrey);
    border-radius: 15px;
    padding: 4.5em 3em;
}

.grey-form h1 {
    font-family: "Source Sans Pro SemiBold";
    color: var(--wallis-dark);
    font-size: 40px;
    margin-bottom: .5em;
}

.contact-us form textarea {
    resize: vertical;
}

.contact-us form button {
    padding: 0.9em 1.5em;
    position: absolute;
    bottom: -30px;
    right: 43px;
}

#map {
    width: 100%;
    height: 380px;
    border-radius: 15px;
}

.colored-text-block h1,
.homepage-top-block h1 {
    font-family: "Source Sans Pro SemiBold" !important;
    color: var(--wallis-dark) !important;
    margin-bottom: 1rem !important;
}

.homepage-top-block h1 {
    font-size: 40px !important;
}

.colored-text-block h1 {
    font-size: 22px !important;
}

.animal-list {
    position: relative;
    z-index: 10;
}

.form-group small {
    color: red;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #6da8b9;
    background-color: #6da8b9;
}

.gallery-image {
    width: 100%;
    height: 250px;
    margin-bottom: 2em;
    border-radius: 15px;
    object-fit: cover;
}

.gallery-container {
    min-height: 1100px;
}