@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@font-face {
  font-family: 'Georgia Regular';
  font-style: normal;
  font-weight: normal;
  src: local("Georgia Regular"), url("../../fonts/georgia.woff") format("woff");
}

@font-face {
  font-family: 'Georgia Italic';
  font-style: normal;
  font-weight: normal;
  src: local("Georgia Italic"), url("../../fonts/georgiai.woff") format("woff");
}

@font-face {
  font-family: 'Georgia Bold';
  font-style: normal;
  font-weight: normal;
  src: local("Georgia Bold"), url("../../fonts/georgiab.woff") format("woff");
}

@font-face {
  font-family: 'Georgia Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local("Georgia Bold Italic"), url("../../fonts/georgiaz.woff") format("woff");
}

.container-full {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0%;
  position: relative;
}

.container-full .site-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 320px;
  background: rgba(46, 29, 17, 0.6) !important;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1) !important;
  padding-top: 250px;
  left: -320px;
}

.container-full .site-nav.visible {
  left: 0;
}

.container-full .site-nav .closeTrigger img {
  height: 11px;
  width: auto;
  margin-right: 4px;
}

.container-full .site-nav .closeTrigger p {
  font-family: "Lato", sans-serif;
  padding: 5px;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-full .site-nav .menu {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 25px 0 10px 30px;
  margin-top: 25px;
}

.container-full .site-nav .menu li {
  padding: 8px 0;
}

.container-full .site-nav .menu li a {
  cursor: pointer;
  font-size: 14px !important;
  color: #fff;
  font-weight: 100;
  padding: 8px 0;
  text-decoration: none;
  padding: 8px 0;
  font-family: "Georgia", serif;
}

.container-full .site-nav .socialWrap {
  margin: 30px 0;
  padding-left: 30px;
}

.container-full .site-nav .socialWrap a {
  cursor: pointer;
}

.container-full .site-nav .socialWrap img {
  height: 20px;
  width: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  opacity: .5;
}

.container-full .site-nav .socialWrap img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.container-full .section {
  height: 100vh;
  width: 100vw;
}

.container-full .section .slider-for {
  height: 100%;
  width: 100%;
}

.container-full .section .slider-for .slide {
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.container-full .section .slider-for .slide:before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(closest-side at 70% 50%, transparent 10%, rgba(46, 29, 17, 0.4) 100%);
  height: 100%;
  width: 100%;
  z-index: 21;
}

.container-full .section .slider-for .slide .textWrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  right: 15%;
  overflow: hidden;
  padding: 0 25px;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slide .textWrapper {
    right: unset;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
}

.container-full .section .slider-for .slide .textWrapper.top {
  top: 20%;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slide .textWrapper.top {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.container-full .section .slider-for .slide .textWrapper.center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container-full .section .slider-for .slide .textWrapper.bottom {
  top: 80%;
}

.container-full .section .slider-for .slide .textWrapper .textAnim {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.container-full .section .slider-for .slide .textWrapper .textAnim.visible {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.container-full .section .slider-for .slide .textWrapper .text {
  margin: 10px 0;
  letter-spacing: 0px;
  font-weight: 100;
  font-size: 36px;
  max-width: 900px;
  color: white;
  opacity: 1;
  text-shadow: 1px 1px 2px #000;
  font-family: "Cormorant Garamond", serif;
  z-index: 100;
  text-align: right;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slide .textWrapper .text {
    font-size: 22px;
    text-align: center;
  }
}

.container-full .section .slider-for .slide .textWrapper .author {
  margin: 10px 0;
  letter-spacing: 0px;
  font-weight: 100;
  font-size: 14px;
  font-style: italic;
  max-width: 900px;
  color: white;
  opacity: 1;
  text-shadow: 1px 1px 2px #000;
  font-family: "Cormorant Garamond", serif;
  z-index: 100;
  text-align: right;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slide .textWrapper .author {
    font-size: 12px;
    text-align: center;
  }
}

.container-full .section .slider-for .slick-prev.slick-arrow {
  left: 10%;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slick-prev.slick-arrow {
    left: 10px;
  }
}

.container-full .section .slider-for .slick-arrow:before {
  font-weight: bold;
}

.container-full .section .slider-for .slick-next.slick-arrow {
  right: 10%;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slick-next.slick-arrow {
    right: 10px;
  }
}

.container-full .section .slider-for .slick-arrow {
  z-index: 1000;
  height: 35px;
  width: auto;
}

@media (max-width: 767px) {
  .container-full .section .slider-for .slick-arrow {
    height: 15px;
  }
}

.container-full .contacts {
  background-color: #442006;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-full .contacts .topBlack {
  background: black;
  height: 30px;
  width: 100%;
}

.container-full .contacts .text {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 1400px) {
  .container-full .contacts .text {
    margin: 20px auto;
  }
}

.container-full .contacts .text p {
  color: #fff;
  font-size: 22px;
}

@media (max-width: 1400px) {
  .container-full .contacts .text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .container-full .contacts .text p {
    font-size: 14px;
  }
}

.container-full .contacts .text h6 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .container-full .contacts .text h6 {
    font-size: 12px;
  }
}

.container-full .contacts .text a {
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 767px) {
  .container-full .contacts .text a {
    font-size: 12px;
  }
}

.container-full .contacts .text a:hover {
  text-decoration: underline;
}

.container-full .contacts .footerSection {
  background: #e0c597;
  padding: 1px 20px;
}

.container-full .contacts .footerSection .footInfo {
  font-size: 16px;
  font-family: "Georgia",sans-serif;
  color: #000;
  margin: 10px;
  text-align: center;
  font-weight: 400;
}

.container-full .contacts .footerSection .footInfo a {
  color: #904c1e;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  font-size: 16px;
  font-weight: bold;
}

.container-full .contacts .footerSection .footInfo a:hover {
  color: #000;
}

.header {
  position: absolute;
  z-index: 100;
}

.header .nav-wrapper {
  position: relative;
}

.header .header-wrapper .fixed-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .header-wrapper .fixed-wrapper .header-logo-wrapper {
  height: 255px;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .header .header-wrapper .fixed-wrapper .header-logo-wrapper {
    width: 100vw;
    height: 150px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.header .header-wrapper .fixed-wrapper .header-logo-wrapper img {
  width: auto;
  height: 136px;
  max-width: 76vw;
  -webkit-filter: drop-shadow(0px 0 65px #3a2c22);
          filter: drop-shadow(0px 0 65px #3a2c22);
}

@media (max-width: 767px) {
  .header .header-wrapper .fixed-wrapper .header-logo-wrapper img {
    height: 100px;
  }
}

.header .header-wrapper .fixed-wrapper .header-logo-wrapper:hover img {
  -webkit-filter: drop-shadow(0px 2px 15px #2e1d11) !important;
          filter: drop-shadow(0px 2px 15px #2e1d11) !important;
}

@media (max-width: 767px) {
  .header .header-wrapper .fixed-wrapper .menuTrigger {
    width: 100%;
  }
}

.header .header-wrapper .fixed-wrapper .menuTrigger img {
  height: 15px;
  width: auto;
  margin-right: 4px;
}

@media (max-width: 767px) {
  .header .header-wrapper .fixed-wrapper .menuTrigger img {
    margin-left: auto;
  }
}

.header .header-wrapper .fixed-wrapper .menuTrigger p {
  font-family: "Lato", sans-serif;
  background: #2e1d11;
  padding: 5px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .header .header-wrapper .fixed-wrapper .menuTrigger p {
    background: #2e1d1179;
  }
}

.blogHeader {
  width: 100%;
  margin: 0;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blogHeader .logoWrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.blogHeader .logoWrapper img {
  height: 150px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .blogHeader .logoWrapper img {
    height: 75px;
  }
}

#news .newsContainer {
  max-width: 1640px;
  padding: 0 20px;
  margin: 40px auto;
}

#news .newsContainer .linkContainer {
  text-decoration: none;
}

#news .newsContainer .linkContainer .newsSectionWrapper {
  width: 100%;
}

#news .newsContainer .linkContainer .newsSectionWrapper .imgCont {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

#news .newsContainer .linkContainer .newsSectionWrapper .blogImage {
  width: 100%;
  height: auto;
  display: block;
}

#news .newsContainer .linkContainer .newsSectionWrapper .textCont .newsDate {
  font-family: "Georgia", serif;
  color: lightgray;
  font-size: 22px;
  margin-top: 20px;
}

#news .newsContainer .linkContainer .newsSectionWrapper .textCont .sectionTitle {
  font-family: "Georgia", serif;
  color: #333;
  font-size: 36px;
  margin-top: 30px;
}

#news .newsContainer .newsCont {
  margin: 30px auto;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

@media (max-width: 1023px) {
  #news .newsContainer .newsCont {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#news .newsContainer .newsCont .singleNewsWrapper {
  text-decoration: none;
}

#news .newsContainer .newsCont .singleNewsWrapper .imgCont {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

#news .newsContainer .newsCont .singleNewsWrapper .blogImage {
  width: 100%;
  height: auto;
  display: block;
}

#news .newsContainer .newsCont .singleNewsWrapper .textCont .newsDate {
  font-family: "Georgia", serif;
  color: lightgray;
  font-size: 18px;
  margin-top: 15px;
}

#news .newsContainer .newsCont .singleNewsWrapper .textCont .sectionTitle {
  font-family: "Georgia", serif;
  color: #333;
  font-size: 32px;
  margin-top: 20px;
}

body {
  margin: 0;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

.container-priv {
  width: 100%;
}

.container-priv .banner img {
  width: 100%;
  height: 25vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-priv .container-xl {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.container-priv p, .container-priv li {
  font-size: 20px;
  font-family: "Georgia", serif;
}

.bannerSingleNews {
  border-bottom: 1px solid grey;
  padding: 20px 0;
}

.bannerSingleNews .imageWrapper {
  margin: 0 auto;
}

.bannerSingleNews .imageWrapper img {
  height: 65px;
  width: auto;
  display: block;
  margin: auto;
}

.containerNews {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.containerNews .newsDate {
  font-family: "Georgia", serif;
  color: lightgray;
  font-size: 26px;
  text-align: center;
  margin: 20px auto;
}

@media (max-width: 767px) {
  .containerNews .newsDate {
    font-size: 22px;
  }
}

.containerNews .newsTitle {
  font-family: "Georgia", serif;
  color: #333;
  font-size: 46px;
  text-align: center;
  margin: 20px auto 30px auto;
  font-weight: bold;
}

@media (max-width: 767px) {
  .containerNews .newsTitle {
    font-size: 32px;
  }
}

.containerNews .content {
  margin: 20px auto 40px auto;
}

.containerNews .content * {
  font-family: "Georgia", serif;
  font-size: 20px;
  line-height: 30px;
}

.footerWrapper {
  margin-top: 30px;
  background-color: #442006;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.footerWrapper .footerSection {
  background: #e0c597;
  padding: 1px 20px;
}

.footerWrapper .footerSection .footInfo {
  font-size: 16px;
  font-family: "Georgia",sans-serif;
  color: #000;
  margin: 10px;
  text-align: center;
  font-weight: 400;
}

.footerWrapper .footerSection .footInfo a {
  color: #904c1e;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  font-size: 16px;
  font-weight: bold;
}

.footerWrapper .footerSection .footInfo a:hover {
  color: #000;
}

.backToHome {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.backToHome a {
  font-family: "Lato", sans-serif;
  background: #2e1d11;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.backToHome a:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.39);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.39);
}

.backToArticles {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.backToArticles a {
  font-family: "Lato", sans-serif;
  background: #2e1d11;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.backToArticles a:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.39);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.39);
}
/*# sourceMappingURL=style.css.map */