:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  color: #63757E;
  background: #F1F4FA 0% 0% no-repeat padding-box;
  min-width: 320px;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

input:focus,
textarea:focus {
  outline: none;
}

/* IMORTS */
/* Flex classes*/
.flex-container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}

.flex-container-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-container-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
}

.flex-item-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-end {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-start {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex-item-space-between {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex-item-space-around {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex-container-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex-container-end {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-top {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
}

.flex-item-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex-container-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-content: flex-end;
  align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
}

.flex-container-space-between {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-content: space-between;
  align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
}

.flex-self-top {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-star;
  -ms-align-self: flex-star;
}

.flex-self-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
}

.flex-self-middle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
}

.flex-item-middle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-baseline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex-wrap {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-nowrap {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}

/* END IMORTS*/
.container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  padding: 0 30px;
  background-color: #fff;
}

.container .inside {
  width: 1000px;
  max-width: 100%;
}

.landing {
  position: relative;
}

.landing .container {
  padding: 0;
}

.landing .container .inside {
  width: 100vw;
  min-height: 100vh;
}

.landing .container .inside .left {
  position: relative;
  width: 480px;
  background-color: #1C3C49;
}

.landing .container .inside .left .simbol-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing .container .inside .left .simbol {
  position: relative;
  margin-bottom: 130px;
}

.landing .container .inside .left .description {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #728F9B;
  margin-bottom: 15px;
  text-align: center;
}

.landing .container .inside .left #timeleft {
  position: relative;
  width: 100%;
  min-height: 49px;
}

.landing .container .inside .left #timeleft .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.landing .container .inside .left #timeleft .item .val {
  font-size: 1.625rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.landing .container .inside .left #timeleft .item span {
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #fff;
}

.landing .container .inside .left #timeleft .bullets {
  font-size: 1.375rem;
  line-height: 1.5rem;
  color: #fff;
  margin: 0 5px;
}

.landing .container .inside .right {
  width: calc(100% - 480px);
  padding: 40px 110px 40px;
  background-color: #ECEFF0;
}

.landing .container .inside .right .logo {
  width: 150px;
  height: 52px;
}

.landing .container .inside .right .content {
  min-height: 100%;
  padding: 30px;
}

.landing .container .inside .right .content .top {
  padding: 0 45px;
}

.landing .container .inside .right .content .top .title {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 300;
  color: #1C3C49;
}

.landing .container .inside .right .content .top .title span {
  font-weight: 3.125rem;
  font-weight: 800;
}

.landing .container .inside .right .content .top .description {
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 560px;
  margin-bottom: 37px;
}

.landing .container .inside .right .content .top .items {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 37px;
}

.landing .container .inside .right .content .top .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(33.33% - 30px);
  margin: 0 15px;
  padding: 30px 0;
}

.landing .container .inside .right .content .top .items .item .icon {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background-color: #DEE3E5;
  margin-right: 25px;
}

.landing .container .inside .right .content .top .items .item .icon:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 9px;
  right: -8px;
  top: 0;
  border-left: 4px solid #C79D4E;
  border-bottom: 4px solid #C79D4E;
  transform: rotate(-45deg);
}

.landing .container .inside .right .content .top .items .item .text {
  width: calc(100% - 50px);
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: 500;
}

.landing .container .inside .right .content .subscribe {
  width: 100%;
  background-color: #fff;
  padding: 40px;
}

.landing .container .inside .right .content .subscribe .subscribe-text {
  width: 50%;
}

.landing .container .inside .right .content .subscribe .subscribe-text .text {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 800;
  color: #1C3C49;
}

.landing .container .inside .right .content .subscribe .subscribe-text .text2 {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #63757E;
}

.landing .container .inside .right .content .subscribe .subscribe-input {
  width: 50%;
}

.landing .container .inside .right .content .subscribe .subscribe-input input {
  width: calc(100% - 60px);
  font-size: 0.9375rem;
  line-height: 3.75rem;
  color: #1C3C49;
  background-color: #ECEFF0;
  border: none;
  padding: 0 24px;
}

.landing .container .inside .right .content .subscribe .subscribe-input .send {
  width: 60px;
  height: 60px;
  background-color: #2E9886;
  cursor: pointer;
  transition: all 100ms ease-in-out;
}

.landing .container .inside .right .content .subscribe .subscribe-input .send:hover {
  background-color: #22B2A4;
}

.landing .container .inside .right .content .subscribe #mc_embed_signup {
  background: transparent;
}

.landing .container .inside .right .content .subscribe #mc_embed_signup form {
  padding: 0;
}

.landing .container .inside .subscribe-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.landing .container .inside .subscribe-content .underlayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(28, 60, 73, 0.8);
}

.landing .container .inside .subscribe-content .content {
  position: relative;
  width: 480px;
  height: 100%;
  background-color: #1C3C49;
  z-index: 2;
  padding: 70px 50px 15vh;
  overflow-y: scroll;
}

.landing .container .inside .subscribe-content .content .close {
  position: absolute;
  top: 80px;
  right: 50px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.landing .container .inside .subscribe-content .content .close:hover .line:nth-child(1) {
  transform: rotate(135deg);
}

.landing .container .inside .subscribe-content .content .close:hover .line:nth-child(2) {
  transform: rotate(45deg);
}

.landing .container .inside .subscribe-content .content .close .line {
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: all 200ms ease-in-out;
}

.landing .container .inside .subscribe-content .content .close .line:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 8px;
}

.landing .container .inside .subscribe-content .content .close .line:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -2px;
}

.landing .container .inside .subscribe-content .content .title {
  font-size: 1.5rem;
  line-height: 2.0625rem;
  font-weight: 800;
  color: #fff;
}

.landing .container .inside .subscribe-content .content form p label {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.landing .container .inside .subscribe-content .content form p label .placeholder {
  position: absolute;
  font-size: 0.75rem;
  color: #fff;
  left: 20px;
  top: calc(50% - 16px);
  z-index: 2;
  transition: all 100ms ease-in-out;
}

.landing .container .inside .subscribe-content .content form p label .placeholder.active {
  top: 8px;
  font-size: 0.625rem;
  opacity: 0.7;
}

.landing .container .inside .subscribe-content .content form p label input {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.625rem;
  background-color: #30515E;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 24px 20px 8px;
  width: 100%;
  margin-bottom: 15px;
}

.landing .container .inside .subscribe-content .content form p label input:focus {
  outline: none;
}

.landing .container .inside .subscribe-content .content form p label span {
  display: flex;
  width: 100%;
}

.landing .container .inside .subscribe-content .content form p label .wpcf7-not-valid-tip {
  position: absolute;
  display: block;
  bottom: 0;
  font-size: 10px;
  color: #dc2424;
}

.landing .container .inside .subscribe-content .content form p .bifa {
  display: flex;
  margin: 15px 0 30px;
}

.landing .container .inside .subscribe-content .content form p .bifa span {
  width: 100%;
  margin: 0;
}

.landing .container .inside .subscribe-content .content form p .bifa .wpcf7-not-valid {
  border-bottom: none !important;
}

.landing .container .inside .subscribe-content .content form p .bifa .wpcf7-not-valid label span {
  color: #fff !important;
}

.landing .container .inside .subscribe-content .content form p .bifa label {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
}

.landing .container .inside .subscribe-content .content form p .bifa label input {
  position: relative;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  opacity: 0;
}

.landing .container .inside .subscribe-content .content form p .bifa label input:hover ~ span:after {
  opacity: 0.5;
}

.landing .container .inside .subscribe-content .content form p .bifa label input:checked ~ span:after {
  opacity: 1;
}

.landing .container .inside .subscribe-content .content form p .bifa label input:checked:hover ~ span:after {
  opacity: 1;
}

.landing .container .inside .subscribe-content .content form p .bifa label span {
  position: relative;
  width: calc(100% - 40px) !important;
  font-size: 0.625rem;
  font-weight: 400;
  color: #fff;
  margin: 0 !important;
  padding-left: 10px;
}

.landing .container .inside .subscribe-content .content form p .bifa label span:before, .landing .container .inside .subscribe-content .content form p .bifa label span:after {
  position: absolute;
  content: "";
  right: 100%;
}

.landing .container .inside .subscribe-content .content form p .bifa label span:before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background-color: #1C3C49;
  border: 1px solid #6D6C6C;
  top: 10px;
}

.landing .container .inside .subscribe-content .content form p .bifa label span:after {
  width: 12px;
  height: 5px;
  top: 15px;
  right: calc(100% + 3px);
  border-left: 2px solid #C79D4E;
  border-bottom: 2px solid #C79D4E;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 200ms ease-in-out;
}

.landing .container .inside .subscribe-content .content form p .bifa label span a {
  font-size: 0.75rem;
  font-weight: 400;
}

.landing .container .inside .subscribe-content .content form p .bifa label span a:hover {
  text-decoration: underline;
}

.landing .container .inside .subscribe-content .content form p .send {
  position: relative;
  max-width: 100%;
}

.landing .container .inside .subscribe-content .content form p .wpcf7-submit {
  min-width: 100%;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  background-color: #22B2A4;
  padding: 20px;
  border-radius: 4px;
}

.landing .container .inside .subscribe-content .content form p .wpcf7-submit input {
  margin-bottom: 0;
}

.landing .container .inside .subscribe-content .content form div.wpcf7-response-output {
  border: none;
  color: #dc2424;
}

.landing.subnewsletter .container .inside .left {
  margin-left: -480px;
  animation: leftanimation 200ms forwards ease-in-out;
}

@keyframes leftanimation {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -480px;
  }
}

.landing.subnewsletter .container .inside .subscribe-content {
  display: flex;
  animation: subscribe-content 200ms forwards ease-in-out;
}

@keyframes subscribe-content {
  0% {
    margin-right: 480px;
  }
  100% {
    margin-right: 0;
  }
}

.landing.no-subnewsletter .container .inside .left {
  margin-left: 0;
  animation: remove-leftanimation 200ms forwards ease-in-out;
}

@keyframes remove-leftanimation {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0px;
  }
}

.landing.no-subnewsletter .container .inside .subscribe-content {
  animation: leftanimation-subscribe-content 200ms forwards ease-in-out;
}

@keyframes leftanimation-subscribe-content {
  0% {
    margin-right: 0;
  }
  100% {
    margin-right: -480px;
  }
}

.landing.thank-you .container .inside .right .top .title {
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.landing.thank-you .container .inside .right .top .description {
  font-size: 1.625rem;
  line-height: 1.625rem;
}

.landing.thank-you .container .inside .right .top .subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 800;
  color: #1C3C49;
}

.landing.thank-you .container .inside .right .top .line {
  width: 100%;
  height: 1px;
  background-color: #D1D1D1;
  margin: 60px 0;
}

.landing.thank-you .container .inside .right .top .description-two {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1C3C49;
  max-width: 470px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .landing .container .inside .left {
    padding: 30px;
    width: 25%;
  }
  .landing .container .inside .right {
    width: 75%;
    padding: 40px;
  }
  .landing .container .inside .right .content .top .items .item {
    width: calc(50% - 30px);
  }
}

@media screen and (max-width: 991px) {
  .landing .container .inside .left {
    width: 100%;
    height: auto;
  }
  .landing .container .inside .left .simbol {
    max-width: 100px;
    margin-bottom: 30px;
  }
  .landing .container .inside .right {
    width: 100%;
  }
  .landing .container .inside .right .content .top .items .item {
    border-top: none;
  }
  .landing .container .inside .landing.subnewsletter .container .inside .left {
    margin-left: 0 !important;
  }
  .landing .container .inside .landing.no-subnewsletter .container .inside .left {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .landing .container .inside .right .content .subscribe .subscribe-text {
    width: 100%;
  }
  .landing .container .inside .right .content .subscribe .subscribe-input {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .landing .container .inside .right {
    padding: 0;
  }
  .landing .container .inside .right .content {
    padding: 0;
  }
  .landing .container .inside .right .content .top {
    padding: 30px;
  }
  .landing .container .inside .right .content .top .items .item {
    width: calc(100% - 30px);
  }
  .landing .container .inside .right .content .subscribe {
    padding: 30px;
  }
  .landing .container .inside .right .content .subscribe .subscribe-input {
    width: 100%;
  }
}
