/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');

/* DEFAULTS */

body {
    overflow-x: hidden;
} 

body {
    background-color: var(--color-white);
    font-family: 'Raleway', sans-serif;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    position: relative;
    height: 100%;
    font-feature-settings: 'lnum' 1;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

strong,
b {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

a,
p,
span {
    font-family: 'Raleway', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}

h1,
.h1 {
    font-size: 44px;
    line-height: 56px;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 44px;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 30px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 20px;
    line-height: 24px;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none!important;
}

button {
    outline: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.loaderEnable {
    overflow: hidden;

}
.loaderMask{
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.siteLoader {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 99999;
}
.siteLoader div {
    animation: siteLoader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.siteLoader div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    margin: -4px 0 0 -4px;
}
.siteLoader div:nth-child(1) {
    animation-delay: -0.036s;
}
.siteLoader div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.siteLoader div:nth-child(2) {
    animation-delay: -0.072s;
}
.siteLoader div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.siteLoader div:nth-child(3) {
    animation-delay: -0.108s;
}
.siteLoader div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.siteLoader div:nth-child(4) {
    animation-delay: -0.144s;
}
.siteLoader div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.siteLoader div:nth-child(5) {
    animation-delay: -0.18s;
}
.siteLoader div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.siteLoader div:nth-child(6) {
    animation-delay: -0.216s;
}
.siteLoader div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.siteLoader div:nth-child(7) {
    animation-delay: -0.252s;
}
.siteLoader div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.siteLoader div:nth-child(8) {
    animation-delay: -0.288s;
}
.siteLoader div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes siteLoader {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}


.social,
.change-lang {
    display: flex;
    justify-content: right;
}

.row.header {
    display: flex;
    align-items: center;
    padding: 0px 90px;
}

.head-desc {
    padding: 30px 0px;
    display: flex;
    align-items: flex-start;
}

.atcb_icon{
    height: 28px!important;
}

.atcb_button.active{
    margin: 10px auto!important;
    padding: 10px 16px 11px 16px!important;
}

.atcb_list{
    padding: 0!important;
}

.atcb_button_wrapper{
    left: 30px!important;
}

.social a {
    margin-right: 20px;
}

.head-text {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.change-lang {
    display: flex;
    list-style-type: none;
}

.change-lang li {
    margin-left: 12px;
}

.change-lang li:first-child{
    margin-left: 0;
}

.social a:last-child {
    margin-right: 0;
}

.menu-desktop {
    list-style: none;
    display: flex;
    padding: 0px;
    margin-bottom: 0px;
}

.menu-desktop li {
    padding: 15px 30px;
}

.rotate::after {
    transform: rotate(180deg);
}

.menu-item {
    color: var(--color-gray);
    text-decoration: none;
    text-transform: uppercase;
}

.menu-item:active {
    color: var(--color-primary);
}

.menu-desktop li:hover a {
    color: var(--color-primary);
}

.container.full-wide {
    max-width: 1920px;
    padding: 0px;
}

.second-title {
    color: var(--color-primary);
}

.slider-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.slider-btn:hover {
    color: var(--color-white);
}

.primary-title.left {
    text-align: left;
}

.box-content{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}

.slide {
    /* padding-top: 10%; */
    background-repeat: no-repeat;
    background-position: bottom;
}

.slider-head.subpage.smaller .slide.subpage{
    max-height: 180px;
    min-height: 0px;
    padding-top: 5%;
}

.person-work.small.contacts p {
    margin-bottom: 2px;
}

.person-work.small.contacts p, .person-work.small.contacts a{
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
}

.person-work.small.contacts a:hover {
    color: #000;
}

.padding-section {
    padding-top: 0px;
}

.second-title.persons.small.contacts {
    margin-top: 10px;
    margin-bottom: 10px !important;
}

.slider-btn.rights, 
.btn.btn-primary,
.btn-primary {
    background-color: var(--color-primary)!important;
    color: var(--color-white)!important;
}

.primary-title, 
.description {
    color: var(--color-primary);
}

.slide::after {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    content: " ";
    position: absolute;
    top: 0px;
    height: 100%;
    z-index: 2;
}

.text-on-slider {
    max-width: 700px;
    position: relative;
    left: 295px;
    bottom: 80px;
    z-index: 3;
}

.slider-btn {
    display: flex;
    justify-content: center;
}

.slider-btn {
    padding: 19px 0px;
    font-size: 18px;
    margin-top: 60px;
}

.slider-btn img {
    margin-right: 35px;
}

.slider-title {
    font-size: 45px;
    color: var(--color-white);
    font-weight: 700;
}

.slider-desc {
    font-size: 26px;
    color: var(--color-white);
}

.slider-btn.rights {
    font-size: 30px;
    font-weight: 700;
    padding: 27px 0px;
    margin-top: 0px;
}

.buttons.head {
    position: relative;
    max-width: 568px;
    bottom: 144px;
    z-index: 3;
    margin-left: auto;
    margin-right: 0;
}

.buttons.head a:first-of-type {
    margin-bottom: 12px;
}

.slide {
    max-height: 870px;
}

.primary-title {
    font-size: 52px;
    font-weight: 900;
    text-align: right;
}

.second-sec {
    padding: 0px 60px;
    padding-top: 130px;
    padding-bottom: 100px;
}

.description {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 30px;
}

.btn-primary {
    font-size: 30px;
    border-color: none !important;
    padding: 15px 44px;
    transition: all 0.3s ease-in-out;
}

.buttons-flex {
    display: flex;
    justify-content: space-evenly;
    margin-top: 60px;
}

/* .primary-reverse {
    background-color: var(--color-gray-1);
} */

.full-wide.green{
    background-color: var(--color-primary);
}

.double-line {
    height: 6px;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    width: 100%;
    max-width: 23%;
}

.title-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.fusion-content {
    padding: 40px 30px;
    
}

.fusion.title {
    color: var(--color-primary);
    /* background-color: var(--color-gray-1); */
    font-size: 35px;
    font-weight: 400;
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
}

.bordered-title{
    position: relative;
}

/* .bordered-title::before{
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--color-primary);
    padding: 3px 0;
    border-bottom: 1px solid var(--color-primary);
} */

.ico {
    font-size: 40px;
    color: var(--color-primary);
    font-style: normal;
    margin-right: 7px;
    font-weight: 400;
}

.ico-and-number {
    display: flex;
    align-items: center;
}

.number {
    font-size: 50px;
    color: var(--color-primary);
}

.static {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.sub-icons {
    color: var(--color-primary);
    font-size: 18px;
    text-align: center;
}

.four-column {
    display: flex;
    padding-bottom: 30px;
}

.second-title {
    font-size: 34px;
    line-height: 40px;
    font-weight: 500;
    text-align: center;
}

.flex {
    display: flex;
    justify-content: center;
}

.partners-slider, .exhibitors-slider, .market-slider {
    display: flex;
    justify-content: space-between;
    width: 94% !important;
}

.partners-slider .slick-list.draggable, .exhibitors-slider .slick-list.draggable, .market-slider .slick-list.draggable {
    width: 100%;
}

.arrow {
    width: 3% !important;
}

.arrow svg g polygon{
    fill: var(--color-primary) !important;
}

.slider-content {
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 112px;
    padding-right: 112px;
}

.blog-box {
    background-color: var(--color-primary);
}

.prev.arrow, .prev-contest, .prev-exhibitors, .prev-market {
    transform: rotate(180deg);
}

.foot-ico {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background-color: var(--color-primary);
    align-items: center;
}

.foot-center {
    display: flex;
    justify-content: center;
}

.foot-center .foot-ico:first-child {
    margin-right: 20px;
}

.foot-center .foot-ico:last-child {
    margin-left: 20px;
}

.foot-center .foot-ico:nth-child(3) {
    margin-left: 20px;
}

.foot-center .foot-ico:nth-child(3) svg{
    max-width: 35px;
    fill: #fff !important;
}

.gray-text {
    font-size: 11px;
    color: #999999;
}

.right-foot ul li {
    padding-right: 5px;
    padding-left: 5px;
    border-right: 1px solid #cccccc;
    list-style: none;
    transition: all 0.3s ease-in-out;
}

.right-foot ul li:last-child {
    border-right: none;
}

.right-foot ul {
    display: flex;
}

.all-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}


body {
    overflow-x: hidden;
}

.right-foot {
    display: flex;
    justify-content: right;
}

.right-foot ul li a:hover {
    color: var(--color-primary);
}

.foot-ico {
    transition: all 0.3s ease-in-out;
}

.foot-ico:hover {
    opacity: 0.7;
}

.light-gray-bg {
    background-color: var(--color-gray-1);
    padding-bottom: 3px;
    margin-bottom: 20px;
    padding-top: 3px;
}

.bg-with-ico {
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 270px;
    width: 100%;
}

.box-content {
    display: flex;
    padding: 142px 0px;
}

.box-click {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    background-color: var(--color-white);
}

.box-click p {
    color: var(--color-primary);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0px;
}

.box {
    border-right: 1px solid var(--color-gray-1);
    border-left: 2px solid var(--color-gray-1);
}

.box-content .box:first-child {
    border-left: none;
}

.box-content .box:last-child {
    border-right: none;
}

.news-title:after {
    content: "\f061";
    font-family: "FontAwesome";
    font-weight: 300;
    position: absolute;
    margin-left: auto;
    right: 20px;
}

.news-title {
    padding: 0px 15px;
    font-size: 24px;
    line-height: 23px;
    color: #656565;
    text-align: left;
    position: relative;
}

.image-with-title {
    margin-bottom: 20px;
}

.image-with-title img {
    height: 270px;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.news-description {
    margin: 20px 0px;
    padding: 0px 15px;
    font-size: 16px;
    color: #333333;
}

.box-link:hover .news-box .image-with-title img {
    transform: scale(1.03);
    opacity: 0.9;
}

.box-link .news-box .news-title::after {
    transition: all 0.3s ease-in-out;
}

.box-link:hover .news-box .news-title::after {
    transform: translateX(10px);
}

.image-with-title {
    overflow: hidden;
}

.news-sec {
    padding-top: 42px;
    margin: 0 auto !important;
    max-width: 100%;
}

.letter-title {
    color: var(--color-primary);
    font-size: 30px;
    line-height: 40px;
}

.row.letter {
    padding: 50px 64px;
    align-items: center;
}

.letter-ico {
    background-color: var(--color-white) !important;
    border-right: none !important;
    padding: 13px 20px !important;
    padding-right: 10px !important;
}

.letter-ico img {
    max-width: 38px;
    height: 37px;
}

.no-border {
    border-left: none !important;
    border-radius: 20px;
}

.form-control:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.input-group.mb-3:focus {
    border: 1px solid red !important;
}

.form-control {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.letter-ico {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.btn.green {
    height: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    max-height: 64px;
    border-radius: 0px;
    width: 100%;
    font-size: 31px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #c8c6c6 !important;
    font-size: 20px !important;
}

.btn.green::before {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: red;
}

.form-letter {
    justify-content: space-between;
}

.row.letter {
    margin-top: 40px;
}

.newsletter-box {
    padding-top: 130px;
}

.blog-box {
    width: 100%;
    height: 320px;
}

.blog-box::after {
    background-color: var(--color-primary);
    width: 100%;
    content: " ";
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0.7;
}

.blog-box:hover::after {
    width: 0%;
}

.post-tile {
    position: absolute;
    padding-left: 25px;
    z-index: 3;
    color: var(--color-white);
    padding-top: 200px;
    font-size: 48px;
    text-shadow: 2px 2px 2px #000;
}

.second-title.paddings {
    padding-bottom: 15px;
}

.boxs {
    margin-bottom: 6px;
}

.blog-post-box {
    margin-top: 180px;
}

.primary-title.light {
    color: var(--color-primary);
    font-size: 66px;
    font-weight: 600;
}

.black-text {
    font-weight: 900;
}

.desc-text {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-primary);
    padding-top: 30px;
    line-height: 40px;
    text-align: right;
}

.form-bg {
    min-height: 570px;
    background-color: var(--color-primary);
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    max-width: 809px;
}

.forms {
    display: flex;
    justify-content: center;
}

.form-box {
    align-items: center;
    display: flex;
    padding: 115px 0px;
}

.blog-posts {
    padding-bottom: 60px;
}

a {
    cursor: pointer;
}

.box {
    transition: all 0.3s ease-in-out;
}

.box:hover {
    opacity: 0.9;
}

.menu-desktop {
    justify-content: center;
}

.slick-track {
    display: flex !important;
    align-items: center;
}

.four-column {
    flex-wrap: wrap;
}

.mobile-header {
    display: flex;
    align-items: center;
}

.mobile-header .col-6 img {
    margin-bottom: 20px;
    margin-top: 20px;
    max-height: 40px;
}

.mobile-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    display:-webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: flex-end;
    -webkit-flex-align: flex-end;
    -webkit-align-items: center;

}

.mobile-right .languages{
    margin-right: 20px;
}

.social.mobile {
    position: relative;
    bottom: 0px;
}

#menuToggle{
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a{
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}

#menuToggle a:hover{
  color: tomato;
}

#menuToggle input{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; 
  z-index: 2; 
  -webkit-touch-callout: none;
}

#menuToggle span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: var(--color-primary);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2){
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: var(--color-primary);
}

#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2){
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    width: 300px;
    margin: 18px 0 0 -255px;
    padding: 20px 10px;
    background: var(--color-white);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    height: 100vh;
}

#menu li {
  padding: 10px 0;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

#menu a {
    transition: all 0.3s ease-in-out;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

.container.mobile {
    max-width: 100% !important;
}

@media (min-width: 1200px) {
    #navbar-mobile {
        display: none;
    }
}

.fas {
    font-style: normal;
    position: relative;
    bottom: 4px;
    transition: all 0.3s ease-in-out;
}

#menu a:active, #menu a:hover, #menu a:focus {
    color: var(--color-primary);
}

#menu a:focus li .fas, #menu a:active li .fas{
    transform: rotate(180deg);
    bottom: 0;
}

.slide.subpage {
    max-height: 475px;
}

.text-on-slider.other {
    left: 50px;
    bottom: 0px;
}

.slide.subpage {
    background-position: center;
    background-size: cover;
}

.movie video {
    max-height: 772px;
    width: 100%;
}

.movie {
    margin: 60px 0px;
}

.margin-video {
    margin: 60px 0px;
}

.menu-desktop > li > a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    border-bottom: 2px solid var(--color-primary);
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
}

.menu-desktop > li > a {
    position: relative;
    display: block;
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 20px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    word-wrap: anywhere;
}

.menu-desktop > .active > a, .menu-desktop > li > a:hover, .menu-desktop > li > a:focus {
    color: var(--color-primary);
}

.menu-desktop > .active > a::before, .menu-desktop > li > a:hover::before, .menu-desktop > li > a:focus::before {
    right: auto;
    left: 0;
    width: 100%;
}

.player.small {
    max-height: 355px;
    width: 100%;
}

.player.small .playpause {
    max-width: 80px;
}

.gallery-col .gap-5 {
    gap: 5px !important;
}

.gallery-col {
    margin: 30px 0px; 
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, .09);
    background-color: var(--color-white);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 26px;
}

.dropdown-content a {
    color: var(--color-primary);
    padding: 12px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px !important;
    border-bottom: 1px solid var(--color-gray);
    transition: all 0.3s ease-in-out;
}

.dropdown-content a:hover {
    background-color: #c8c6c6;
}

.dropdown-content a:first-child {
    border-top: 3px solid var(--color-primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.program-desc {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 70px 100px;
    text-align: center;
}

.pdf-section {
    padding: 70px 50px;
}

.btn-pdf-box {
    display: flex;
    justify-content: center;
}

.btn-pdf {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 25px 0px;
    width: 960px;
    max-height: 94px;
    text-align: center;
}

.btn-pdf:hover {
    color:var(--color-white);
}

.date-cal {
    font-size: 38px;
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0px;
}

.calendar-date {
    background-color: var(--color-primary);
    padding: 16px 0px;
}

.calendar-boxs {
    padding: 0px 50px;
    display: flex;
    justify-content: center;
}

.events {
    background-color: var(--color-gray-1);
}

.event-box div {
    padding: 15px 25px;
}

.bold-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-primary);
}

.bold-text.date {
    display: flex;
    justify-content: space-between;
}

.bold-text.light {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-primary);
}

.events:first-child {
    margin-top: 10px;
}

.events {
    margin-bottom: 10px;
    word-wrap: anywhere;
}

.fab {
    font-style: normal;
    color: var(--color-primary);
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.fab:hover {
    color: #000;
}

@media (max-width: 1900px) {
    .menu-desktop li {
        padding: 20px 25px;
    }
}

@media (max-width: 1600px) {
    .menu-desktop li {
        padding: 20px 20px;
    }
}

@media (max-width: 1400px) {
    .menu-desktop li {
        padding: 20px 10px;
    }
}

.slider-title,
.slider-desc {
    text-shadow: 2px 2px 4px #000;
}

.ico-contest {
    max-width: 120px;
    max-height: 148px;
}

.image-box {
    width: 120px;
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contest-box {
    max-width: 250px;
    margin: 0 auto;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.point-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 20px 0px;
    text-align: center;
}

.point-description {
    font-size: 21px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.contest-content {
    display: none;
}

.contest-content.collapsed {
    display: block;
}

.btn-contest {
    background-color: var(--color-primary);
    font-size: 15px;
    color: var(--color-white);
    padding: 10px 15px;
}

.btn-contest:hover {
    color: var(--color-white);
}

.contest-slider {
    display: flex;
    justify-content: space-around;
}

.photobox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px 15px;
    border: 1px solid var(--color-white);
}

.person-work {
    color: var(--color-primary);
    font-size: 18px;
    text-align: center;
}

.photobox {
    transition: all 0.3s ease-in-out;
}

.link-person {
    transition: all 0.3s ease-in-out;
    color: var(--color-white);
}

.link-person:hover  .photobox{
    border: 1px solid var(--color-primary);
}

.second-title.persons {
    margin-top: 20px;
}

.three-person .row {
    padding: 0 20px;
}

.second-title.persons.small {
    font-size: 22px;
    line-height: 28px;
}

.photobox:after {
    content: '\f061';
    position: relative;
    font-family: 'FontAwesome';
    display: inline-block;
    right: -50%;
    left: 50%;
    top: 10px;
    margin-top: -25px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.link-person:hover .photobox:after {
    opacity: 1;
    color: var(--color-primary);
}

.buttons.head.other {
    bottom: 0px;
}

.slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
}

.contest-slider {
    max-width: 90%;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    box-shadow: none !important;
}

.btn.green:hover, .btn-primary:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.box-with-photo {
    margin-bottom: 10px;
}

.slick-arrow.slick-disabled {
    transition: all 0.3s ease-in-out;
}

.slick-arrow.slick-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.form-title {
    font-size: 50px;
    color: var(--color-white);
    text-align: center;
    padding: 44px 0px;
    font-weight: 900;
    margin-bottom: 0px;
}

.form-inputs {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form-inputs .input-group{
    max-height: 45px;
    margin-bottom: 25px;
    width: unset !important;
}

.form-inputs .input-group .letter-ico {
    padding-top: 9px  !important;
    padding-bottom: 9px !important;
}

.form-inputs .input-group .letter-ico img {
    max-height: 25px;
    max-width: 26px;
}

.form-inputs .input-group.col-sm-6 {
    width: 50% !important;
}


.description-form {
    padding-right: 50px;
}

.text-grey {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 0px;
    padding-left: 10px;
}

.link-grey {
    color: var(--color-white);
    text-decoration: underline !important;
    transition: all 0.3s ease-in-out;
}

.link-grey:hover {
    color: #656565;
}

.checkbox-btn input {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--color-primary) !important;
    border-color: #fff !important;
}

.desc-with-btn {
    padding-left: 50px;
}

.checkbox-btn {
    margin-bottom: 10px;
}

.submit-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 60px;
    color: var(--color-white);
    background-color: #685EFD;
    border-radius: 7px;
    font-weight: 600;
    font-size: 22px;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.form-check-input[type="checkbox"] {
    border-radius: 0px !important;
}

.submit-form:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid #fff;
}

.dropdown-content {
    right: 0;
    margin-right: 0;
    left: 0;
}

.second-sec, .partner-content, .news-sec, .newsletter-box, .blog-post-box, .form-box, .box-content, .partner-content.two, .three-person {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* .contest-slider .slick-list .slick-track .slick-slide {
    min-height: 460.5px !important;
} */

.primary-title.left {
    padding-left: 50px;
}

.video-title {
    font-size: 30px;
    color: var(--color-primary);
    text-align: center;
    padding-top: 20px;
    font-weight: 700;
}

.video-desc {
    font-size: 25px;
    color: var(--color-primary);
    text-align: center;
}

.flex.farm {
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    align-items: center;
}

.flex.farm a {
    max-width: 88%;
}

.talk-targ {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.farm-name {
    color: var(--color-primary);
    padding-bottom: 30px;
}

.farm-desc {
    text-align: center;
    font-size: 15px;
    color: var(--color-primary);
    padding: 0px 20px;
}

.show-dropdown {
    display: block !important;
}

footer {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.three-person .row {
    display: flex;
    justify-content: center;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
}

.navbar-primary {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1920px;
}

/* .logo img{
    max-width: 250px;
    max-height: 70px;
} */

.second-title.persons {
    font-weight: 700;
}

.ico {
    margin-right: 15px;
}

.bg-with-ico img {
    max-height: 50%;
}

.dropdown-btn {
    cursor: pointer;
    position: relative;
}

.dropdown-btn div i {
    margin-left: 15px;
    bottom: 1px;
    display: inline-block;
}

.flex-wrap {
    align-items: center;
}

.gallery-col div a {
    padding: 5px 5px;
    max-width: 400px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.gallery-col div a img {
   height: auto;
}

.compensate-for-scrollbar {
    padding-right: 0px !important;
}

.menu-desktop .menu-show {
    display: block !important;
}

.menu-desktop .dropdown-menu {
    opacity: 0;
    z-index: -100;
    display: block !important;
    max-height: 0;
}

.menu-desktop .dropdown-menu.menu-show {
    padding: 0px !important;
    border-radius: 0px;
    width: 100% !important;
    max-height: 500px;
    opacity: 1;
    z-index: 1000;
}

.menu-desktop .dropdown-menu li {
    color: var(--color-primary) !important;
    padding: 0px;
    text-decoration: none;
    display: block;
    font-size: 14px !important;
    border-bottom: 1px solid var(--color-gray);
    opacity: 0;
}

.menu-desktop .dropdown-menu.menu-show li {
    opacity: 1;
    padding: 0px;
}

.menu-desktop .dropdown-menu li a {
    display: flex;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: var(--color-primary) !important; 
    padding: 12px 15px;
}

.menu-desktop .dropdown-menu.menu-show li:hover {
    color: var(--color-primary);
    background-color: #c8c6c6;
}

.menu-desktop .dropdown-menu.menu-show li:first-child {
    border-top: 3px solid var(--color-primary);
}

.menu-desktop .dropdown-menu{
    left: 50%;
    transform: translateX(-50%);
}

.menu-mobile ul{
    padding-left: 0px;
}

.menu-mobile .dropdown-toggle {
    display: flex;
    align-items: center;
}

.menu-mobile .dropdown-toggle .caret {
    display: none !important;
}

#menu li .show-dropdown li a{
    padding: 0px 10px;
    font-size: 15px;
}

#menu li .show-dropdown {
    width: 100%;
    padding: 0px;
}

#menu li .show-dropdown li {
    border-bottom: 1px solid #000;
}

.gray-text li a {
    font-size: 11px;
    color: #999999;
    text-transform: none;
}

.dropdown-toggle::after { 
    transition: all 0.3s ease-in-out;
}

.title-and-desc .container.full-wide {
    padding: 0px 20px;
}

.row.news-sec.videos {
    display: flex;
    justify-content: center;
}

.news-box {
    height: 100%;
}

.news-box .player.small {
    height: 100%;
    min-height: 355px;
}

.news-box .player.small iframe {
    width: 100%;
    height: 100%;
}

.media-partners {
    display: flex;
    flex-wrap: wrap;
}

.media-partners > div .flex {
    height: 100%;
    align-items: center;
    padding-bottom: 20px;
}

.atcb_button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.atcb_button.active {
    background-color: #fff !important;
    border-radius: 0px !important;
}

.atcb_list_item:last-child {
    border-radius: 0!important;
}

.atcb_list_item:first-child {
    padding-top: 5px !important;
}

.atcb_initialized {
    max-height: 15px;
}

.mobile-header .col-8 {
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 100%;
    font-size: 30px;
}

.select2-container--default .select2-selection--single {
    border-radius: 0px;
    height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 6px 12px;
    font-size: 20px;
    line-height: 24px;
    height: 45px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 20px;
    padding: 20px;
    line-height: 24px;
    background-color: #F1F1F1;
    color: var(--color-primary);
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 500px;
    width: 100%;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-results > .select2-results__options li {
    padding: 6px 12px;
    font-size: 20px;
    line-height: 24px;
    border-bottom: 1px solid var(--color-primary);
}

#collapseContent {
    background: transparent;
    overflow: hidden;
    transition: max-height 400ms;
    max-height: 0; 
    color: #fff;
}

#collapseContent.open {
    max-height: 300px; 
    color: #fff;
}

.checkbox-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.checkbox-btn div {
    display: flex;
    align-items: center;
}

.form-check-input{
    min-width: 16px !important;
    min-height: 16px;
    margin-top: 0px !important;
}

.form-control {
    font-family: 'Raleway';
    border-radius: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #ced4da;
    font-size: 20px;
}

tbody, td, tfoot, th, thead, tr {
    font-family: 'Raleway' !important;
}


@media (min-width: 992px) {
    .slide.subpage {
        min-height: 420px;
    }
    .text-on-slider.other {
        min-height: 196px;
    }
    .three-person.row {
        display: flex;
        justify-content: space-around;
    }
}

@media (min-width: 1400px) {
    .slide.subpage {
        min-height: 475px;
      }
      .text-on-slider.other {
        left: 120px;
        bottom: -100px;
      }
}

@media (min-width: 551px) {
    .boxs {
        padding-right: calc(var(--bs-gutter-x) *.1) !important;
        padding-left: calc(var(--bs-gutter-x) * .1) !important;
    }
}

@media (min-width: 1201px) {

    .box.col-xl-2 {
        width: 20%;
    }
    .flex.farm {
        width: 18vw;
        height: 18vw;
    }
}

@media (min-width: 1301px) {
    .next-contest, .prev-contest {
        display: none;
    }
    .contest-slider {
        max-width: 100%;
        width: 100%;
    }
    .contest-slider .slick-list,
    .contest-slider .slick-track{
        width: 100%!important;
    }
    .slider-box {
        justify-content: center;
    }
}


@media (min-width: 1650px) {
    .three-person .row {
        padding: 0 300px;
    }
    .three-person .row.short {
        padding: 0px 160px;
    }
    .image-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 1650px) {
    .form-bg {
        background-size: cover;
        background-position: center center;
    }
    .atcb_button .atcb_text {
        font-size: 13px;
    }
    
}

@media (max-width: 1600px) {
    .menu-desktop .dropdown:last-child .dropdown-content {
        left: -43%;
        max-width: 100%;
      }
}

@media (max-width: 1500px) {
    .letter-title {
        font-size: 22px;
    }
    .form-control::placeholder {
        font-size: 17px !important;
    }
    .btn.green {
        font-size: 22px;
    }
    .row.letter {
        padding: 40px 15px;
    }
    .text-on-slider {
        left: 7%;
    }
    .slider-btn.rights {
        font-size: 25px;
        padding: 20px 0px;
    }
    .buttons.head {
        max-width: 500px;
    }
    .buttons.head.other {
        bottom: 0px;
    }
}

@media (max-width: 1400px) {
    .btn-primary {
        font-size: 22px;
    }
    .program-desc {
        font-size: 25px;
        padding: 40px 60px;
    }
    .btn-pdf {
        font-size: 22px;
        max-width: 550px;
    }
    .pdf-section {
        padding: 40px 50px;
    }
    .date-cal {
        font-size: 25px;
    }
    .menu-desktop .dropdown:last-child .dropdown-content {
        left: -76%;
        max-width: 100%;
      }
}

@media (max-width: 1300px) {
    .image-with-title img {
        height: 170px;
    }
}

@media (max-width: 1199px) {
    .primary-title, .primary-title.light {
        font-size: 40px;
    }
    .description {
        font-size: 25px;
    }
    .btn-primary {
        padding: 15px 20px;
    }
    .fusion.title {
        text-align: center;
        font-size: 25px;
    }
    .number {
        font-size: 32px;
    }
    .second-sec, .fusion-content {
        padding: 40px 30px;
    }
    .partner-content {
        padding: 40px 0px;
    }
    .newsletter-box {
        padding-top: 40px;
    }
    .title-sec {
        padding-bottom: 10px;
    }
    .row.letter {
        flex-direction: column;
    }
    .row.letter .col-lg-5, .row.letter .col-lg-7 {
        width: 100% !important;
    }
    .post-tile {
        font-size: 30px;
    }
    .buttons.head.other {
        bottom: 5px;
    }
    .gallery-col {
        margin: 0px 0px;
    }
    .movie {
        margin: 20px 0px;
    }
    .news-sec {
        padding-top: 20px;
    }
    .box {
        margin-bottom: 20px;
    }
    .box-content {
        padding: 40px 0px;
    }
    .bg-with-ico {
        max-height: 225px;
    }
    .bg-with-ico img {
        max-height: 70%;
        max-width: 50%;
    }
    .all-foot {
        flex-direction: column-reverse;
    }
    .flex.farm {
        width: 285px;
        height: 285px;
    }
    #navbar-desktop {
        display: none;
    }
    #menu li {
        flex-direction: column;
    }
    #menu li .show-dropdown {
        top: 40px;
    }
    .navbar-mobile {
        position: absolute;
        top: 0;
        width: 100%;
    }
}

@media(max-width: 1100px) {
    .slider-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    .prev.arrow, .prev-contest, .prev-exhibitors {
        position: relative;
        left: 30px;
    }
    .prev-contest {
        display: flex;
        justify-content: center;
        width: 35px !important;
        padding: 0px !important;
        z-index: 99;
    }
    .next.arrow, .next-contest, .next-exhibitors {
        position: relative;
        right: 30px;
    }
    .next-contest {
        display: flex;
        justify-content: center;
        width: 35px !important;
        padding: 0px !important;
        z-index: 99;
    }
    .next-market {
        position: relative;
        right: 20px;
    }
    .prev-market {
        position: relative;
        left: 20px;
    }
    .flex.farm {
        max-height: 300px;
        max-width: 300px;
    }
    .primary-title {
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .buttons.head {
        max-width: 400px;
    }
    .text-on-slider {
        left: 2%;
    }
}

@media(min-width: 950px) and (max-width: 991px) {
    .buttons.head {
        bottom: 200px;
    }
}

@media (max-width: 991px) {
    .slider-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    .flex img {
        max-width: 250px;
    }
    .second-title {
        font-size: 30px;
        line-height: 36px;
    }
    .primary-title.light {
        font-size: 35px;
    }
    .desc-text {
        font-size: 22px;
        line-height: 30px;
    }
    .post-tile {
        font-size: 28px;
    }
    .partners-slider, .exhibitors-slider, .market-slider {
        max-width: 92% !important;
    }
    .fusion-content {
        padding: 30px 10px;
    }
    .number {
        font-size: 22px;
    }
    .fusion.title {
        font-size: 20px;
        text-align: center;
    }
    .sub-icons {
        font-size: 15px;
    }
    .ico {
        font-size: 30px;
    }
    .title-sec {
        margin-bottom: 20px;
    }
    .four-column {
        padding-bottom: 10px;
    }
    .second-sec {
        padding: 20px 15px;
    }
    .primary-title {
        font-size: 30px;
        text-align: center;
        padding-top: 20px;
    }
    .description, .letter-title {
        font-size: 20px;
        line-height: 27px;
    }
    .btn-primary {
        font-size: 15px;
        padding: 15px 10px;
    }
    .partner-content {
        padding: 30px 0px;
    }
    .slider-content {
        padding-top: 20px;
        padding-bottom: 0px;
    }
    .newsletter-box {
        padding-top: 20px;
    }
    .image-with-title img {
        height: 200px;
    }
    .row.letter {
        margin-top: 20px;
        padding: 20px 15px;
    }
    .letter-title {
        font-size: 24px;
    }
    .arrow svg{
        width: 35px;
    }
    .slide {
        max-height: 450px;
    }
    .btn-pdf, .date-cal {
        font-size: 18px;
    }
    .program-desc {
        padding: 0px;
    }
    .calendar-boxs {
        padding: 0px 15px;
    }
    .pdf-section {
        padding: 20px 15px;
    }
    .program-desc {
        padding: 15px 0px;
        font-size: 19px;
    }
    .btn-pdf {
        padding: 15px 0px;
        max-width: 500px;
    }
    .contest-box {
        max-width: 100%;
        padding: 0px 15px;
    }
    .photobox img{
        max-width: 300px;
        width: 100%;
    }
    .slider-title {
        font-size: 40px;
    }
    .slider-desc {
        font-size: 22px;
    }
    .text-on-slider {
        left: 20px;
    }
    .slider-btn.rights {
        font-size: 18px;
    }
    .btn.green {
        margin-top: 5px;
    }
    .form-letter {
        justify-content: center;
    }
    .buttons.head {
        max-width: 350px;
    }
    .slider-btn.rights {
        padding: 20px 0px;
    }
    .point-title {
        font-size: 25px;
    }
    .buttons.head a:first-child::after,
    .text-slider-btn.second::before, 
    .text-slider-btn.second:after, 
    .text-slider-btn::before, 
    .text-slider-btn:after, 
    .buttons.head a:last-child::after {
        display: none;
    }
    .news-description {
        font-size: 13px;
    }
    .news-title {
        font-size: 19px;
    }
    .desc-with-btn {
        padding-left: 0px;
    }
    .form-bg {
        background-size: cover; 
        background-position: center center;
        padding: 0px 15px;
    }
    .form-title {
        font-size: 35px;
    }
    .description-form {
        padding-right: 0px;
    }
    .point-description {
        font-size: 18px;
    }
    /* .contest-slider .slick-list .slick-track .slick-slide {
        min-height: 405px !important;
    } */
    .primary-title.left {
        padding-left: 0px;
    }
    .second-sec .col-sm-12.col-lg-5  img{
        width: 100%;
    }
    .form-letter .col-8.col-md-5.col-lg-3 {
        margin-top: 15px;
    }
    .ico {
        margin-right: 15px;
    }
    .video-title {
        font-size: 22px;
    }
    .video-desc {
        font-size: 19px;
    }
    .newsletter-box {
        padding-top: 0px;
    }
    .all-foot {
        flex-direction: column-reverse;
    }
    .slide.subpage {
        background-position: center center;
    }
    .right-foot ul {
        padding-left: 0px;
    }
    .form-inputs .input-group.col-12 {
        width: 100% !important;
    }
    .slider-head.subpage.smaller .slide.subpage {
        max-height: 250px;
        padding-top: 6%;
        min-height: 150px;
    }
}

@media (max-width: 950px) {
    .text-on-slider .slider-btn {
        display: none;
    }
    .buttons.head {
        bottom: 100px;
    }
}

@media(max-width: 768px) {
    .all-foot {
        flex-direction: column-reverse;
    }
    .gray-text {
        margin-top: 20px;
    }
    .static {
        margin-bottom: 10px;
    }
    .slider-title {
        font-size: 28px;
    }
    .slider-desc {
        font-size: 15px;
    }
    .text-on-slider.other, .text-on-slider {
        left: 15px;
        bottom: 0;
    }
    .text-on-slider {
        max-width: 97%;
        word-wrap: anywhere;
    }
    .buttons.head {
        position: relative;
        max-width: 222px;
        bottom: 144px;
        z-index: 3;
        right: 0;
    }
    .buttons.head.other {
        bottom: 6px;
    }
    .slider-btn.rights {
        font-size: 16px;
        padding: 10px 0px;
    }
    .text-on-slider .slider-btn {
        display: none;
    }
    .buttons.head {
        bottom: 8px;
    }
    .input-group {
        margin-bottom: 10px;
    }
    .btn.green {
        margin-top: 5px;
    }
    .movie.small video {
        max-height: 100%;
    }
    .point-description {
        font-size: 15px;
    }
    .form-box {
        padding: 20px 0px;
    }
    .blog-post-box {
        margin-top: 0px;
    }
    .calendar-date {
        margin-top: 20px;
    }
    .desc-text {
        text-align: center;
    }
    .foot-ico {
        width: 30px;
        height: 30px;
    }
    .foot-ico svg{
        max-width: 60%;
    }
    .description-form {
        padding-right: 0px;
        padding: 0px 10px;
    }
    .form-letter .col-8.col-md-5.col-lg-3 {
        margin-top: 7px;
        margin-bottom: 7px;
    }
    .blog-posts {
        padding-bottom: 0px;
    }
    /* .boxs {
        padding-left: 0px !important;
        padding-right: 0px !important; 
    } */
    .blog-posts.row > .boxs:nth-child(n+4) {
        display:none;
    }
    .blog-posts.row > .boxs:last-child {
        display: block;
    }
    .title-sec {
        justify-content: center;
    }
    .double-line {
        display: none;
    }
    .primary-title.light {
        padding-top: 0px;
    }
    .flex.farm {
        max-width: 285px;
        max-height: 285px;
    }
    .program-desc {
        font-size: 17px;
    }
    .blog-box {
        max-height: 250px;
    }
    .news-sec.videos .boxs {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .foot-center .foot-ico:nth-child(3) svg {
        max-width: 20px;
    }
    .text-on-slider.other, .text-on-slider {
        bottom: -10px;
    }
    .header-video {
        margin-top: -15px;
    }
    .text-on-slider.other, .text-on-slider .slider-title {
        margin-right: 15px;
    }
    .text-on-slider.other, .text-on-slider .slider-desc {
        margin-right: 15px;
    }
}

@media (max-width: 630px) {
    .partners-slider, .exhibitors-slider, .market-slider {
        max-width: 90% !important;
    }
    .partners-slider, .exhibitors-slider, .market-slider {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .all-foot {
        padding: 10px 15px;
    }
    .form-title {
        padding: 20px 0px;
        font-size: 25px;
    }
    .submit-form {
        font-size: 20px;
    }
    .speed {
        display: none;
    }
    .blog-box {
        background-size: cover;
        background-position: center center;
    }
    .description, .letter-title {
        font-size: 17px;
        line-height: 22px;
    }
    .video-title {
        font-size: 17px;
    }
    .video-desc {
        font-size: 14px;
    }
    .primary-title, .primary-title.light {
        font-size: 20px;
    }
    .desc-text {
        font-size: 17px;
        line-height: 22px;
        padding: 0px 15px;
    }
}

@media (max-width: 575px) {
    .box {
        border: none;
    }
}

@media (max-width: 500px) {
    .partners-slider, 
    .exhibitors-slider, 
    .market-slider {
        max-width: 82% !important;
    }
    .second-title {
        font-size: 24px;
        line-height: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .flex a {
        max-width: 47%;
    }
    .gallery-col .flex {
        justify-content: space-evenly !important;
    }
    .flex img {
        max-width: 100%;
    }
    .form-bg {
        padding: 0px 15px;
    }
    .flex.farm {
        max-height: 250px;
        max-width: 250px;
    }
    .box-content {
        padding: 0px;
    }
}

@media (max-width: 400px) {
    .image-with-title img {
        height: 170px;
    }
    .right-foot ul {
        padding-left: 0px !important;
    }
    .text-grey {
        font-size: 12px;
    }
    .contest-slider .slick-list .slick-track .slick-slide {
        min-height: auto !important;
    }
    .primary-title {
        font-size: 20px;
    }
}

@media (max-width: 350px) {
    .btn-primary {
        font-size: 14px;
    }
    .all-foot {
        padding: 10px 0px;
    }
    .flex.farm {
        max-height: 230px;
        max-width: 230px;
    }
}

.buttons.head a:last-of-type::after {
    background-image: url("../images/bubble.png");
    width: 100%;
    max-width: 129px;
    content: " ";
    position: absolute;
    bottom: -10%;
    height: 129px;
    max-height: 129px;
    z-index: 2;
    left: 10px;
}

.buttons.head a:first-of-type::after {
    background-image: url("../images/bubble.png");
    width: 100%;
    max-width: 129px;
    content: " ";
    position: absolute;
    top: 0px;
    height: 129px;
    max-height: 129px;
    z-index: 2;
    transform: translate(210px, -40%);
    left: 38%;
}

.text-slider-btn {
    position: relative;
}

.buttons.head a span:last-of-type::after {
    background-image: url("../images/medium-bubble.png");
    width: 100%;
    content: " ";
    position: absolute;
    top: -65%;
    height: 100%;
    z-index: 2;
    transform: translateX(20%);
    max-height: 37px;
    max-width: 37px;
}

.buttons.head a span:last-of-type::before {
    background-image: url("../images/small-bubble.png");
    width: 100%;
    max-width: 16px;
    content: " ";
    position: absolute;
    top: -10px;
    height: 100%;
    max-height: 18px;
    z-index: 2;
    transform: translateX(-8px);
    left: -25%;
    background-repeat: no-repeat;
}

.buttons.head a span:first-of-type::after {
    background-image: url("../images/small-bubble.png");
    width: 100%;
    max-width: 16px;
    content: " ";
    position: absolute;
    bottom: -21%;
    height: 100%;
    max-height: 18px;
    z-index: 2;
    transform: translateX(-8px);
}

.buttons.head a span:first-of-type::before {
    background-image: url("../images/medium-bubble.png");
    width: 100%;
    max-width: 37px;
    content: " ";
    position: absolute;
    bottom: -21%;
    height: 100%;
    max-height: 37px;
    z-index: 2;
    transform: translateX(-8px);
    left: -25%;
    background-repeat: no-repeat;
}


section {
    padding: 40px 0px;
}

.no-pandm {
    margin: 0px;
    padding: 0px;
}

.show-dropdown {
    border-radius: 0px !important;
}

.fas.rotate {
    transform: rotate(180deg);
}


@media (max-width: 991px) {
    section {
        padding: 20px 0px;
    }
}

@media (min-width: 500px) and (max-width: 520px) {
    .gallery-col div a {
        padding: 5px 0px;
    }
    .partners-slider, .exhibitors-slider, .market-slider {
        max-width: 88% !important;
    }
}

.modal .photobox::after{
    display: none;
    opacity: 0;
    pointer-events: none;
}

.btn.btn-primary{
    border-radius: 0;
    border: 0;
}

.btn-primary,
.slider-btn{
    transition: all .3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.slider-btn:hover,
.slider-btn:focus{
    box-shadow: inset 0 0 0 500px rgba(255, 255, 255, .12);
}

.modal-content,
.modal-header{
    border-radius: 0!important;
}

.margin-btn {
    margin: 0px 10px;
}

.gallery-col div a img {
    max-width: 100%;
}

.wyswig h1,
.wyswig h2,
.wyswig h3,
.wyswig h4,
.wyswig h5,
.wyswig h6 {
    padding-top: 40px;
    padding-bottom: 10px;
}

.modal-title {
    margin-bottom: 0px !important;
}

.exhibitors-slider .flex div img {
    max-width: 150px;
}

.colappseText a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: underline !important;
}

.colappseText a:hover {
    color: #656565;
}

.colappseText {
    padding-top: 10px;
}

.link-grey {
    padding-left: 5px;
}

.container.wyswig .aligncenter {
    margin: 0 auto;
}

.container.wyswig .alignright {
    margin-left: auto;
}

.container.wyswig table {
    margin-bottom: 30px;
}

.wyswig h1:first-child,
.wyswig h2:first-child,
.wyswig h3:first-child,
.wyswig h4:first-child,
.wyswig h5:first-child,
.wyswig h6:first-child{
    padding-top: 0px;
}

@media (max-width: 1400px) {
    .container.wyswig table {
        min-width: 50% !important;
    }
}

@media (max-width: 768px) {
    .container.wyswig table {
        width: 100% !important;
    }
}

.social-mobile a {
    margin-right: 5px;
}

.hidden {
    display: none !important;
}

.header-video {
    width: 100%;
    position: absolute;
}

.justify-content-center .link-person {
    margin-top: 20px;
}

@media (max-width: 400px) {
    .header-video {
        transform: scale(2.7);
    }
    .buttons-flex .btn-primary {
        text-align: center;
    }
}

.row.second-sec.reverse-row {
    flex-direction: row-reverse;
}

.row.second-sec.reverse-row .primary-title.left, .row.second-sec.reverse-row .description {
    text-align: right;
}

@media(max-width: 1870px) {
    .buttons-flex .btn-primary {
        margin-right: 10px;
        text-align: center;
    }
}

@media (min-width: 1199px) and (max-width: 1201px) {
    .box.col-xl-2 {
        width: 33.33333333% !important;
    }
}

.table-center {
    display: flex;
    justify-content: center;
}

@media(max-width: 991px) {
    .table-center table {
        width: 70% !important;
    }
}

@media (max-width: 500px) {
    .table-center table td{
        padding-left: 15px !important;
    }
}

@media (max-width: 400px) {
    .table-center table td{
        padding-left: 0px !important;
    }
}

ol, ul {
    font-family: 'Raleway', sans-serif;
}

.news_all_box {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0dede;
    margin-bottom: 20px;
}

.news-name {
    font-size: 20px;
}

.date-news {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.news_desc {
    color: var(--color-primary) !important;
}

.news-all {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-primary);
}

.news_all_box a, .news_all_box p {
    color: var(--color-primary);
}

.arrow-news {
    display: flex;
    justify-content: flex-end;
}

.arrow-post {
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    align-items: center;
}

.arrow-post .fas {
    bottom: 0px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.arrow-post:hover {
    color: #333333;
}

.arrow-post:hover .fas {
    transform: translateX(5px);
}

.image-news {
    min-width: 300px;
}

.image-news {
    height: 100%;
}

.news_all_box:hover .arrow-post .fas {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .news_all_box {
        flex-direction: column;
        align-items: center;
    }
    .news-all {
        max-width: 100%;
    }
    .image-news {
        margin-bottom: 15px;
        width: 100%;
    }
    .image-news img {
        width: 100%;
        max-height: 300px;
    }
    .flex-news {
        width: 100%
    }
}


@media (max-width: 768px) {
    .news-name {
        font-size: 18px;
    }
    .news-desc, .arrow-post {
        font-size: 15px;
    }
    .post-info {
        display: none;
    }
    .image-news img {
        max-height: 200px;
    }
}

.news-container {
    max-width: 1720px !important;
}

.flex-news {
    display: flex;
}

.post-info {
    margin-right: 15px;
}

.datum {
    display: flex;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.datum span {
    color: #fff;
}

.datum .bold {
    font-size: 20px;
}

.pencil {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0dede;
    font-size: 24px;
    color: var(--color-primary);
}

@media(max-width: 650px) {
    .small-resolution {
        flex-direction: column;
        align-items: center;
    }
    .flex.small-resolution a {
        text-align: center;
        width: 300px;
        margin-bottom: 10px;
        min-width: 300px;
    }
}

.input-group small{
    position: absolute;
    bottom: -22px;
}

.input-group.error small{
    color: #e60e0e;
    text-shadow: 2px #ff0000;
}

.thank-you {
    display: flex;
    justify-content: center;
    color: #fff;
    position: relative;
    bottom: 12px;
    padding: 0px 10px;
    text-align: center;
}

.thank-you p{
    margin-bottom: 0px;
}

.flex.media img{
    max-width: 180px;
}

.slider-box {
    padding-top: 15px;
}

@media(max-width: 520px) {
    .flex.media img{
        max-width: 150px;
    }
}

@media (max-width: 400px) {
    .flex.media img{
        max-width: 100px;
    }
    .table-center table tr td img {
        max-width: 80%;
        max-height: 80px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .flex.media img{
        max-width: 140px;
    }
}

.gallery-col div a img {
    transition: all 0.3s ease-in-out;
}

.gallery-col div a img:hover {
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .row.mobile-header div:first-child {
        display: flex;
        position: relative;
    }
    .atcb_button .atcb_text {
        width: 100% !important;
        height: auto !important;
        background-color: #fff !important;
    }
    .atcb_initialized {
        position: absolute;
        right: 0;
        bottom: -30px;
        z-index: 999;
        width: 100%;
    }
    .atcb_button_wrapper {
        left: 0px !important;
    }
    .social-mobile {
        position: relative;
    }
    .atcb_button {
        margin: 0px !important;
        padding: 0px !important;
        min-width: 0px !important;
        max-width: none !important;
        width: 100%;
    }
    .atcb_icon {
        background-color: #fff !important;
    }
    .atcb_button.active {
        margin: 0px !important;
        padding: 0px !important;
        width: 100% !important;
        padding: 10px 5px !important;
    }
    .atcb_list_item {
        font-size: 14px;
        border: 0px !important;
    }
    .atcb_list_item .atcb_text {
        background-color: #fff !important;
        display: none !important;
    }
    .atcb_list {
        top: 60px;
        max-height: 130px;
        overflow: auto;
    }
    .atcb_list_item {
        padding-top: 10px !important;
        padding-bottom: 0px;
        padding-left: 0px;
        padding: 10px 5px !important;
        display: flex;
    }
    .atcb_button {
        text-align: left !important;
    }
}

html, body {
    position: relative;
    overflow-x: hidden;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .head-desc {
        position: relative;
    }
    .atcb_initialized {
        position: absolute !important;
        right: 100px;
        top: 10px;
    }
    
}

@media (min-width: 992px) and (max-width: 1400px) {
    .text-on-slider.other {
        top: 40px;
    }
}

.padding-admin_text {
    padding: 10px 0px;
}
@media (max-width: 768px) {
    .thank-you_form {
        font-size: 13px;
    }
}

@media (min-width: 481px) and (max-width: 1500px) {
    .next-contest {
        right: 0px
    }
    .prev-contest {
        left: 0px;
    }
}

.image-align-center {
    align-items: center;
}

.form-inputs .input-group.text-input {
    width: 100% !important;
    max-height: 100% !important;
}

.form-inputs .input-group.text-input textarea {
    resize: none;
    overflow: hidden;
    min-height: 62px;
    height: auto;
    max-height: 150px;
}

@media (max-width: 991px) {
    .row.row-forms.textarea-form {
        width: 100%;
    }
    .row.row-forms.textarea-form .input-group.text-input {
        padding: 0px !important;
    }

}

.validate-input {
    color: #e60e0e;
}

#tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul#tabs-nav {
    list-style: none;
    margin: 0;
    padding: 5px;
    overflow: auto;
}
ul#tabs-nav li {
    font-weight: bold;
    margin-right: 2px;
    padding: 8px 20px;
    margin-bottom: 2px;
    cursor: pointer;
}
ul#tabs-nav li{
    background-color: var(--color-primary) !important;  
    color: var(--color-white) !important;
}
ul#tabs-nav li:active {
    opacity: 0.8;
}
ul#tabs-nav li:hover {
    opacity: 0.8;
}
#tabs-nav li a {
    text-decoration: none;
    color: #FFF;
}
.tab-content {
    padding: 10px;
}

/* Fixed aside button */
.fixed-aside-button {
    --button-size-x: 700px;
    position: fixed;
    top: 60%;
    left: 0;
    width: calc(var(--button-size-x) + calc(0.07142857 * var(--button-size-x)));
    height: calc(0.57142857 * var(--button-size-x));
    -webkit-transform: translateX(calc(var(--button-size-x) * -1)) translateY(-50%);
    transform: translateX(calc(var(--button-size-x) * -1)) translateY(-50%);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    z-index: 999;
}

.fixed-aside-button.shown {
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
}

.aside-item-content-wrap {
    display: -webkit-flex;
    display: flex;
    position: relative;
    height: 100%;
    padding-right: calc(0.07142857 * var(--button-size-x));
}

.aside-item-content-wrap > a {
    display: block;
}

.aside-item-content {
    width: 100%;
    height: 100%;
}

.aside-item-content-items {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: gray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    text-shadow: 4px 4px 6px rgb(0, 0, 0);
    padding: 20px;
    z-index: 1;
}

.aside-item-content-items::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.aside-item-content-items * {
    font-size: 30px !important;
    margin: 0;
}

.aside-item-content-items > * + * {
    margin-top: 10px;
}

.aside-item-arrow-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(0.07142857 * var(--button-size-x));
    height: 50%;
    background-color: var(--color-primary);
    -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.aside-item-arrow-wrap:hover {
    opacity: 0.9;
}

.aside-item-arrow-wrap > div {
    position: relative;
    width: 100%;
    height: 100%;
}

.aside-item-arrow-wrap .aside-item-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
	height: 0;
	border-width: calc(0.02857142 * var(--button-size-x)) 0 calc(0.02857142 * var(--button-size-x)) calc(0.02857142 * var(--button-size-x));
	border-color: transparent transparent transparent #FFFFFF;
	border-style: solid;
    -webkit-transform: translate(-50%, -50%) rotateZ(0);
    transform: translate(-50%, -50%) rotateZ(0);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.shown .aside-item-arrow-wrap .aside-item-arrow {
    -webkit-transform: translate(-50%, -50%) rotateZ(180deg);
    transform: translate(-50%, -50%) rotateZ(180deg);
}

@media (max-width: 1199px)
{
    .fixed-aside-button {
        --button-size-x: 600px;
    }
    .aside-item-content-items * {
        font-size: 24px !important;
    }
}

@media (max-width: 991px)
{
    .fixed-aside-button {
        --button-size-x: 550px;
    }
}

@media (max-width: 767px)
{
    .fixed-aside-button {
        --button-size-x: 320px;
    }
    .aside-item-content-items * {
        font-size: 16px !important;
    }
    .aside-item-arrow-wrap {
        height: 100%;
    }
}
  