@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
/* CSS Document */
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #961a4b;
}
body.fancybox-active {
  height: 100%;
}

form {
  width: 100%;
  height: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a, a img {
  text-decoration: none;
  outline: none;
  border: none;
}

.clr {
  clear: both;
  height: 0;
  width: 100%;
}

::-webkit-input-placeholder {
  color: #707070;
}

:-moz-placeholder {
  color: #707070;
}

::-moz-placeholder {
  color: #707070;
}

:-ms-input-placeholder {
  color: #707070;
}

::selection {
  background: #1691CE;
  color: #fff;
}

::-moz-selection {
  background: #1691CE;
  color: #fff;
}

/*General Elements */
body, input, textarea, select, option {
  font-family: "Poppins", sans-serif;
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

:before {
  font-family: IcoFont;
  font-style: normal;
}

section {
  position: relative;
  width: 100%;
  padding-left: 75px;
  padding-right: 75px;
}

.content {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 0;
}
.content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}

i.ico {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  font-style: normal;
  position: relative;
}
i.ico.search {
  background-image: url(../images/icons/search.svg);
  display: block;
  width: 24px;
  height: 23px;
}
i.ico.arrow {
  background-image: url(../images/icons/arrow.svg);
  display: block;
  width: 18px;
  height: 8px;
}
i.ico.address {
  background-image: url(../images/icons/address.svg);
  display: block;
  width: 24px;
  height: 23px;
}
i.ico.phone {
  background-image: url(../images/icons/phone.svg);
  display: block;
  width: 24px;
  height: 23px;
}
i.ico.email {
  background-image: url(../images/icons/email.svg);
  display: block;
  width: 24px;
  height: 23px;
}

a.scroll {
  display: block;
  width: 20px;
  height: 30px;
  position: fixed;
  z-index: 5;
  right: 7%;
  top: 90vh;
}
a.scroll span {
  display: block;
  width: 20px;
  height: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 2px solid #DDD2B1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
a.scroll span:after {
  width: 2px;
  height: 1px;
  background: #DDD2B1;
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 45%;
  -webkit-animation: mainArrowAnim 1s infinite;
  /* Safari 4+ */
  -moz-animation: mainArrowAnim 1s infinite;
  /* Fx 5+ */
  -o-animation: mainArrowAnim 1s infinite;
  /* Opera 12+ */
  animation: mainArrowAnim 1s infinite;
}

@-webkit-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-moz-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-o-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
/*General Elements */
.link {
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 30px 0 15px 75px;
  background: rgba(0, 0, 0, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6.25px);
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  max-width: none;
  margin: auto;
  align-items: start;
  z-index: 2;
}
header a.logo {
  display: block;
  height: 70px;
  width: 100px;
  padding: 0;
  background-image: url(../images/logo.svg);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
header a.logo img {
  display: block;
  width: 100%;
}
header a.menuLink {
  width: 25px;
  height: 25px;
  display: none;
}
header a.menuLink span {
  display: block;
  width: 25px;
  height: 100%;
  position: relative;
}
header a.menuLink span i {
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 2px;
  left: 0;
}
header a.menuLink span i:nth-child(1) {
  top: 3px;
}
header a.menuLink span i:nth-child(2) {
  top: 13px;
}
header a.menuLink span i:nth-child(3) {
  top: 24px;
}
header a.menuLink.opened span i {
  width: 10px !important;
}
header a.menuLink.opened span i:nth-child(1) {
  width: 29px !important;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 15px;
}
header a.menuLink.opened span i:nth-child(2) {
  opacity: 0;
}
header a.menuLink.opened span i:nth-child(3) {
  width: 29px !important;
  transform: rotate(-5deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 15px;
}
header nav {
  background: #390f22;
}
header nav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 19px;
  padding: 7px 30px;
  display: block;
}
header nav ul li:before {
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 10px;
  content: "";
}
header nav ul li:hover a {
  color: #c11e5f;
}
header nav ul li:last-child:Before {
  display: none;
}
header.home {
  background: none;
  border-bottom: transparent;
  padding: 30px 0 0 75px;
  backdrop-filter: none;
}
header.home a.logo {
  height: 140px;
  width: 220px;
}
header.home a.menuLink::after {
  display: none;
}

footer {
  position: relative;
  padding: 0;
  background: #d8d8d8;
}
footer .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
footer .left {
  width: 35%;
  background: #593746;
  padding: 10px 0 70px 70px;
}
footer .left p {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding-top: 10px;
}
footer .left p a {
  color: #fff;
}
footer .left p span {
  display: block;
  font-weight: 300;
  font-weight: 16px;
}
footer a.footerLogo {
  display: block;
  width: 30%;
}
footer a.footerLogo img {
  display: block;
  width: 100%;
}
footer .footerNav {
  width: 65%;
  padding: 90px 70px 0;
}
footer .footerNav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
footer .footerNav ul li {
  margin-left: 20px;
}
footer .footerNav ul li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: #390f22;
}
footer .footerNav ul li a:hover {
  opacity: 1;
  color: #961a4b;
}
footer .footerNav .social {
  width: 100%;
  text-align: right;
  color: #961a4b;
  font-size: 20px;
  font-weight: bold;
  padding-top: 60px;
  line-height: 33px;
}
footer .footerNav .social a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #961a4b;
}
footer .footerNav .social a.in {
  background: url(../images/icons/instagram.png) no-repeat left center;
  padding-left: 40px;
}
footer .footerNav .social a.fb {
  background: url(../images/icons/facebook.png) no-repeat left center;
  padding-left: 40px;
}
footer .footerNav .social a.yt {
  background: url(../images/icons/youtube.png) no-repeat left center;
  padding-left: 40px;
}
footer .footerNav .social a.ln {
  background: url(../images/icons/linkedin.png) no-repeat left center;
  padding-left: 40px;
}

main {
  width: 100%;
  position: relative;
  z-index: 4;
  padding-top: 200px;
}

section.head {
  padding-left: 0;
  padding-right: 0;
}
section.head .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
section.head .left {
  width: 38%;
  background: #390f22 url(../images/img/draw.png) no-repeat center;
  background-size: 100% auto;
  color: #fff;
  font-family: "Poiret One", sans-serif;
  padding: 75px;
  position: relative;
  z-index: 1;
  margin-top: -75px;
  font-size: 70px;
}
section.head .left strong {
  font-size: 67px;
  font-family: "Poppins", sans-serif;
}
section.head h1 {
  width: 100%;
  text-align: right;
  padding-right: 75px;
  font-weight: 300;
  color: #fff;
  font-size: 52px;
}
section.head .right {
  width: calc(62% + 60px);
  margin-left: -60px;
  position: relative;
  background-color: #ad5477;
  padding: 30px 0;
}
section.head .right .awards-container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
section.head .right .awards-container .awards {
  width: 43%;
  border: 1px solid #c98ca4;
  background-color: #961a4b;
  color: white;
  margin-right: 30px;
  margin-top: 20px;
}
section.head .right .awards-container .awards:nth-of-type(even) {
  margin-right: 30px;
}
section.head .right .awards-container .awards div:first-of-type {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 20px;
}
section.head .right .awards-container .awards div:first-of-type strong {
  font-size: 20px;
}
section.head .right .awards-container .awards div:first-of-type img {
  margin-top: -15px;
}
section.head .right .awards-container .awards div:last-of-type {
  padding: 20px 25px;
}
section.head .right .awards-container .awards div:last-of-type strong {
  display: block;
}

h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 300;
}

section.text {
  width: 100%;
  padding-top: 55px;
}
section.text h2 {
  padding: 30px 70px 60px;
  background: #390f22;
  display: inline-block;
}
section.text .txt {
  padding-left: 70px;
  margin-top: -50px;
  position: relative;
}
section.text .txt p {
  font-size: 20px;
  color: #390f22;
  background: #e0a4bd;
  padding: 45px;
}
section.text.light h2 {
  background: #e0a4bd;
  color: #390f22;
}
section.text.light .txt p {
  background: #390f22;
  color: #fff;
}

section.jury h2 {
  width: 100%;
  text-align: center;
  margin: 70px 0 30px;
}
section.jury .jurySlider {
  padding: 0 120px;
}
section.jury #jurySlider .owl-stage-outer {
  padding: 20px 0;
}
section.jury #jurySlider .owl-nav button {
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #8a1644;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.jury #jurySlider .owl-nav button.owl-prev {
  left: -120px;
  background-image: url(../images/icons/leftArrow.png);
}
section.jury #jurySlider .owl-nav button.owl-next {
  right: -120px;
  background-image: url(../images/icons/rightArrow.png);
}
section.jury #jurySlider .owl-nav button:hover {
  background-color: #390f22;
}
section.jury .jItem {
  background: #e0a4bd;
  padding: 20px;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
section.jury .jItem:before {
  display: block;
  width: 100%;
  height: 40%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #390f22;
}
section.jury .jItem figure {
  position: relative;
}
section.jury .jItem p {
  font-size: 16px;
  color: #961a4b;
  text-align: center;
  font-weight: 500;
  position: relative;
}
section.jury .jItem p span {
  display: block;
  color: #000;
  font-size: 20px;
  padding: 10px 0;
}
section.jury .advisorList {
  width: 100%;
  padding: 0 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.jury .advisorList .jItem {
  width: 48%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
section.jury .advisorList .jItem:before {
  top: auto;
  bottom: 0;
  height: 105px;
}
section.jury .advisorList .jItem figure {
  width: 43%;
}
section.jury .advisorList .jItem figure img {
  display: block;
  width: 100%;
}
section.jury .advisorList .jItem p {
  width: 57%;
  text-align: left;
  padding: 0 0 30px 40px;
  color: #fff;
}

section.prices {
  font-family: "Poiret One", sans-serif;
  color: #fff;
}
section.prices .content {
  padding: 80px 120px;
}
section.prices .pFirst {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 50px;
  align-items: start;
}
section.prices .pFirst span {
  width: 50%;
  font-size: 72px;
  padding: 10px 0 10px 30px;
}
section.prices .pFirst span:first-child {
  background: #c11e5f;
  border: 5px solid #961a4b;
  position: relative;
}
section.prices .pFirst span:last-child {
  background: #390f22;
  margin: -15px 0 0 -25px;
  padding-left: 50px;
}
section.prices .pRow {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
section.prices .pRow .pItem {
  display: block;
  width: 47%;
  text-align: center;
  font-size: 92px;
  position: relative;
  padding-top: 15px;
}
section.prices .pRow .pItem:before {
  display: block;
  width: 100%;
  height: 80%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #8a1644;
  z-index: 0;
}
section.prices .pRow .pItem span {
  position: relative;
}
section.prices .pRow .pItem span small {
  font-size: 60px;
  display: block;
}
section.prices .pLast {
  width: 100%;
  text-align: center;
  font-size: 68px;
}
section.prices .pLast span:first-child {
  font-size: 40px;
}

section.calendar {
  padding: 0;
  background: #390f22;
  padding: 130px 0 80px;
}
section.calendar h2 {
  text-align: center;
}
section.calendar ul {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
section.calendar ul li {
  background: #d5c2c9;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-size: 26px;
  font-weight: 300;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  margin-bottom: 25px;
  align-items: center;
  color: #961a4b;
}
section.calendar ul li span:first-child {
  width: 45%;
  background: #961a4b;
  padding: 10px 0 10px 30px;
  margin-right: 30px;
  border-radius: 16px 0 0 16px;
  color: #fff;
}
section.calendar p {
  text-align: center;
  margin-top: -160px;
  margin-bottom: 50px;
}
section.calendar .btn {
  background: #c11e5f;
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 75px;
}
section.calendar .btn:hover {
  background: #8a1644;
}

section.subPage {
  padding-bottom: 100px;
}
section.subPage .title {
  width: 100%;
  text-align: right;
  font-weight: 300;
  font-size: 40px;
  color: #fff;
  margin-top: -100px;
}
section.subPage .title span {
  font-family: "Poiret One", sans-serif;
}
section.subPage .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.subPage .left {
  width: 20%;
  background: #390f22;
  padding: 35px;
  color: #fff;
}
section.subPage .left h1 {
  font-size: 44px;
  font-weight: 300;
}
section.subPage .left p {
  border-top: 1px solid #fff;
  font-size: 20px;
  margin-top: 10px;
  padding-top: 5px;
}
section.subPage .left p strong {
  display: block;
  font-size: 32px;
}
section.subPage .right {
  width: 80%;
  padding-left: 50px;
}
section.subPage .right .inner {
  padding: 50px;
  background: #e8e8e8;
}
section.subPage h2 {
  color: #390f22;
}

.accordionList {
  width: 100%;
}
.accordionList .aItem {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background: #f7f7f7;
  margin-bottom: 13px;
}
.accordionList .aItem h3 {
  font-weight: 500;
  font-size: 18px;
  color: #390f22;
  background: #e6d6dc;
  padding: 10px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.accordionList .aItem h3:before {
  width: 13px;
  height: 100%;
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  background: url(../images/icons/down.png) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordionList .aItem div {
  font-size: 18px;
  font-weight: 300;
  color: #390f22;
  padding: 15px 30px;
  display: none;
}
.accordionList .aItem.selected h3:before {
  transform: rotate(180deg);
}

.fSection {
  width: 100%;
  padding: 40px;
  background: #f3f3f3;
  margin-bottom: 40px;
}
.fSection h2 {
  color: #961a4b;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.fSection h3 {
  color: #961a4b;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.fSection .fRow {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 30px;
}
.fSection .fCol {
  width: 100%;
  padding: 0 12px;
}
.fSection .fCol.w33 {
  width: 33.3333%;
}
.fSection .fCol.w66 {
  width: 66.6666%;
}
.fSection label {
  display: block;
  width: 100%;
  color: #390f22;
  font-size: 16px;
}
.fSection label a {
  font-weight: bold;
  color: #961a4b;
}
.fSection .fileInput {
  width: 100%;
  height: 50px;
  position: relative;
  cursor: pointer;
}
.fSection .fileInput input[type=file] {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-appearance: none;
}
.fSection .fileInput p {
  background: #fff;
  border: 1px solid #b4b4b4;
  padding-right: 140px;
  display: block;
  width: 100%;
  line-height: 32px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.fSection .fileInput p i {
  position: absolute;
  right: 8px;
  line-height: 32px;
  font-style: normal;
  background: #d5d5d5;
  color: #390f22;
  padding: 0 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 9px;
}
.fSection .fileInput p small {
  font-size: 16px;
  color: #390f22;
  padding: 8px;
}
.fSection .fileInput p span {
  background: #e6d6dc;
  margin-right: 8px;
  padding: 8px;
}
.fSection .fileInput:hover p i {
  background: #961a4b;
  color: #fff;
}
.fSection .fileInput.pafta p {
  padding: 0 140px 0 0;
}
.fSection input[type=text], .fSection textarea, .fSection select {
  background: #fff;
  border: 1px solid #b4b4b4;
  padding: 8px;
  display: block;
  width: 100%;
  font-size: 16px;
  color: #390f22;
}
.fSection textarea {
  height: 100px;
}
.fSection span.note {
  display: block;
  font-size: 14px;
  color: #bbb5b8;
}
.fSection ul li {
  font-size: 16px;
  color: #390f22;
}
.fSection .chkBox {
  width: 100%;
  position: relative;
}
.fSection .chkBox input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.fSection .chkBox label {
  display: block;
  width: 100%;
  font-size: 12px;
  position: relative;
  padding: 25px 0 0 25px;
}
.fSection .chkBox label:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #e6d6dc;
  border: 1px solid #961a4b;
  top: 25px;
}
.fSection .chkBox label:after {
  display: block;
  content: "";
  position: absolute;
  left: 5px;
  top: 30px;
  width: 10px;
  height: 10px;
  background: #e6d6dc;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fSection .chkBox input:checked + label:after {
  background: #961a4b;
}
.fSection .btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #e6d6dc;
  border: 1px solid #b4b4b4;
  font-size: 20px;
  font-weight: bold;
  color: #390f22;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.fSection .btn:hover {
  background: #390f22;
  color: #fff;
}
.fSection input[type=submit].btn {
  background: #c11e5f;
  color: #fff;
}
.fSection input[type=submit].btn:hover {
  background: #961a4b;
}
.fSection .participantList .participant {
  display: none;
}

.result h2 {
  color: #390f22;
}
.result p {
  display: block;
  margin: 40px 0;
  font-size: 24px;
  font-weight: bold;
  color: #390f22;
}
.result p span {
  color: #c11e5f;
  display: block;
}

.docList {
  width: 100%;
}
.docList a.dItem {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  color: #390f22;
  background: #e6d6dc;
  padding: 10px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin-bottom: 13px;
}
.docList a.dItem:before {
  width: 20px;
  height: 100%;
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  background: url(../images/icons/download.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 20px auto;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999999999;
  display: none;
}
.loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.loading svg path,
.loading svg rect {
  fill: #c11e5f;
}

@media screen and (max-width: 1750px) {
  section.head .left {
    width: 33%;
    font-size: 56px;
  }
  section.head .left strong {
    font-size: 50px;
  }
  section.head .right {
    width: calc(67% + 60px);
  }
  section.head .right .awards-container .awards {
    margin-top: 40px;
  }
  section.head .right .awards-container .awards div:first-of-type strong {
    font-size: 16px;
  }
  section.head .right .awards-container .awards div:first-of-type img {
    width: 75%;
  }
  section.head .right .awards-container .awards div:last-of-type {
    padding: 20px 30px;
  }
  section.head .right .awards-container .awards div:last-of-type strong {
    display: block;
  }
}
@media screen and (max-width: 1540px) {
  section.head {
    margin-top: 150px;
  }
  section.head .left {
    font-size: 48px;
  }
  section.head .left strong {
    font-size: 42px;
  }

  section.jury .jItem p {
    font-size: 11px;
  }
  section.jury .jItem p span {
    font-size: 13px;
  }
  section.jury .advisorList .jItem p {
    padding-bottom: 25px;
  }
  section.jury .advisorList .jItem:Before {
    height: 85px;
  }

  section.prices .pFirst span {
    font-size: 56px;
  }
  section.prices .pRow .pItem span {
    font-size: 62px;
  }
  section.prices .pRow .pItem span small {
    font-size: 48px;
  }
  section.prices .pLast {
    font-size: 56px;
  }
  section.prices .pLast span:first-child {
    font-size: 30px;
  }

  footer .left p {
    font-size: 12px;
  }
  footer .footerNav {
    padding-top: 50px;
  }
  footer .footerNav ul li a {
    font-size: 14px;
  }
  footer .footerNav .social {
    padding-top: 40px;
    font-size: 14px;
  }
  footer .footerNav .social a {
    font-size: 14px;
  }

  section.subPage .title {
    font-size: 30px;
  }
  section.subPage .left h1 {
    font-size: 34px;
  }
}
@media screen and (max-width: 1380px) {
  section.head .left {
    font-size: 40px;
  }
  section.head .left strong {
    font-size: 34px;
  }
}
@media screen and (max-width: 780px) {
  header {
    padding: 0px;
  }
  header .content {
    padding: 10px 25px;
    align-items: center;
  }
  header.home {
    padding: 0px;
  }
  header a.logo {
    width: 100px !important;
    height: 70px !important;
  }
  header nav {
    position: absolute;
    width: 100%;
    left: -100%;
    background: #000;
    top: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: calc(100vh - 82px);
  }
  header nav ul {
    width: 100%;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li a {
    width: 100%;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  header nav ul li.hasSub > a {
    background: url(../images/icons/down.svg) no-repeat 95% center;
  }
  header nav ul li ul {
    position: relative;
    width: 100%;
    top: 0 !important;
    left: 0;
    transform: none;
    display: none;
  }
  header nav ul li ul li {
    width: 100%;
    padding: 0 0 0 30px;
  }
  header nav ul li ul li a {
    display: block;
    width: 100%;
  }
  header nav ul li:hover ul {
    display: block;
  }
  header a.menuLink {
    display: block;
  }
  header.opened {
    background: #000;
  }
  header.opened nav {
    left: 0;
  }

  main {
    padding-top: 120px;
  }

  section {
    padding-left: 25px;
    padding-right: 25px;
  }

  h2 {
    font-size: 22px;
  }

  section.head {
    margin-top: 60px;
  }
  section.head .content {
    flex-direction: column;
  }
  section.head .left {
    width: 100%;
    padding: 75px;
    font-size: 30px;
    text-align: center;
  }
  section.head .left strong {
    font-size: 25px;
    display: block;
  }
  section.head .right {
    width: 100%;
    margin-left: 0;
    padding: 30px 0;
  }
  section.head .right .awards-container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  section.head .right .awards-container .awards {
    width: 90%;
    border: 1px solid #c98ca4;
    background-color: #961a4b;
    color: white;
    margin-right: 20px;
    margin-top: 50px;
  }
  section.head .right .awards-container .awards:nth-of-type(even) {
    margin-right: 20px;
  }
  section.head .right .awards-container .awards div:last-of-type {
    padding: 20px 25px;
  }

  section.text h2 {
    padding: 25px 25px 50px 25px;
    margin-left: -25px;
  }
  section.text .txt {
    margin-top: -40px;
    padding-left: 0px;
  }
  section.text .txt p {
    padding: 25px;
    font-size: 14px;
  }

  section.jury {
    padding: 0;
  }
  section.jury .jurySlider {
    padding: 0 50px;
  }
  section.jury #jurySlider .owl-nav button {
    width: 25px;
    background-size: 10px auto;
  }
  section.jury #jurySlider .owl-nav button.owl-prev {
    left: -50px;
  }
  section.jury #jurySlider .owl-nav button.owl-next {
    right: -50px;
  }
  section.jury .advisorList {
    padding: 0 25px;
  }
  section.jury .advisorList .jItem {
    align-items: start;
  }
  section.jury .advisorList .jItem:before {
    top: 0;
    bottom: auto;
  }
  section.jury .advisorList .jItem figure {
    width: 100%;
  }
  section.jury .advisorList .jItem p {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  section.prices .content {
    padding: 80px 0;
  }
  section.prices .pFirst {
    justify-content: center;
  }
  section.prices .pFirst span {
    width: 100% !important;
    font-size: 36px;
    text-align: center;
    padding: 10px 0;
  }
  section.prices .pFirst span:last-child {
    padding-left: 0;
    width: 80% !important;
    margin: 0;
  }
  section.prices .pRow .pItem {
    width: 100%;
    font-size: 28px;
    margin-bottom: 25px;
  }
  section.prices .pRow .pItem span {
    font-size: 28px;
  }
  section.prices .pRow .pItem span small {
    font-size: 28px;
  }
  section.prices .pLast {
    font-size: 28px;
  }
  section.prices .pLast span {
    font-size: 28px;
  }
  section.prices .pLast span:first-child {
    font-size: 28px;
  }

  section.calendar {
    padding-left: 25px;
    padding-right: 25px;
  }
  section.calendar .btn {
    padding: 0 25px;
    font-size: 30px;
  }
  section.calendar ul li {
    font-size: 15px;
    padding: 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    padding: 0 0 5px;
  }
  section.calendar ul li span:first-child {
    width: 100%;
    border-radius: 8px 8px 0 0;
    margin-right: 0;
    padding-left: 15px;
  }
  section.calendar ul li span:last-child {
    padding-left: 15px;
  }

  footer a.footerLogo {
    margin: auto;
  }
  footer .left {
    width: 100%;
    padding: 25px;
    text-align: center;
    order: 2;
  }
  footer .footerNav {
    width: 100%;
    padding: 25px;
    order: 1;
  }
  footer .footerNav ul {
    display: none;
  }
  footer .footerNav .social {
    padding-top: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  footer .footerNav .social strong {
    display: block;
    width: 100%;
    text-align: center;
  }
  footer .footerNav .social a {
    width: 25%;
    background-size: 20px auto !important;
    padding-left: 25px !important;
    font-size: 12px;
    text-align: left;
  }

  section.subPage .title {
    text-align: center;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 25px;
  }
  section.subPage .left {
    width: 100%;
    padding: 25px;
  }
  section.subPage .right {
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }
  section.subPage .right .inner {
    padding: 25px;
  }

  .docList a.dItem {
    padding: 10px 25px;
  }
  .docList a.dItem:before {
    right: 10px;
  }

  .fSection {
    padding: 10px;
  }
  .fSection .fRow {
    margin-bottom: 0px;
  }
  .fSection .fCol {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .fSection span.note {
    font-size: 11px;
  }
  .fSection label {
    font-size: 14px;
  }
  .fSection .fileInput p span {
    position: absolute;
    width: 100%;
    font-size: 12px;
  }
  .fSection .fileInput p small {
    font-size: 12px;
  }
  .fSection .fileInput p i {
    font-size: 12px;
  }
  .fSection .fileInput.pafta {
    padding-top: 15px;
    height: auto;
    margin-top: 20px;
  }
  .fSection .fileInput.pafta p span {
    line-height: 15px;
    top: -15px;
  }
  .fSection .fileInput.pafta p i {
    top: 23px;
  }
  .fSection input[type=text], .fSection textarea, .fSection select {
    font-size: 13px;
  }
  .fSection ul {
    padding: 10px;
  }
  .fSection ul li {
    font-size: 13px;
  }
}