:root {
  --green: #79B928;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
   align-items: end;
}

.flex-column {
  flex-flow: column;
}

.flex-1 {
  flex: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
}

h1 {
    color: #fff;
    margin: 0 auto;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 108%;
}

.text-center {
  text-align: center;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    padding-block: 0;
    padding-inline: 0;
    padding: 16px 27px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s all;
    outline: none;
    box-shadow: none;
    border: none;
    line-height: 22px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #6da723;
}

.btn-primary-inverse {
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 5px;
    font-size: 19px;
    transition: 0.3s all;
    border: 1px solid #fff;
    white-space: nowrap;
}

.btn-primary-inverse:hover {
    background: #fff;
    color: var(--green);
}

.subpage .licence h2 {
    font-size: 22px;
    text-transform: uppercase;
    max-width: 260px;
    line-height: 30px;
}

.subpage .licence-inner {
    padding: 0px 15px 28px 15px;
}

.subpage .name-cta-wrap {
    gap: 23px;
}

.subpage .licence-name {
    min-height: 90px;
}

.subpage .licence.awis img {
    max-width: 289px;
    min-height: 385px;
    width: 100%;
    object-fit: contain;
}


/* Header */

.header-inner {
    padding-top: 40px;
    padding-bottom: 40px;
}

.nav-primary {
    gap: 65px;
}

.nav-primary a {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s all;
    text-align: center;
    line-height: 124%;
}

.nav-primary a.active {
    color: var(--green);
    font-weight: 700;
}

.nav-primary a:hover {
    color: var(--green);
}

.mail a {
    font-size: 18px;
    color: #000;
    text-decoration: underline;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mail a:hover {
    text-decoration: none;
}

.mail a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 20px;
    background: url(../img/mail.svg) no-repeat;
}


/* Body */

main {
  background: url(../img/body_bg_comp.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

.main-inner {
    padding-top: 72px;
    padding-bottom: 91px;
}

.licence {
    background: #fff;
    border-radius: 5px;
    transition: 0.3s all;
}

.subpage .licence {
    flex: 0 1 24%;
}

.licence:hover {
    box-shadow: 0 0 12px rgb(75 107 25 / 83%);
}

.licence-inner {
    padding: 53px 64px 31px 64px;
}

.licence-select {
    gap: 11px;
    margin-top: 72px;
}

.subpage .licence-select {
    flex-flow: wrap;
    gap: 14px 11px;
}

.licence-logo {
    margin-bottom: 30px;
    min-height: 64px;
}

.licence.awis img {
    max-width: 357px;
    width: 100%;
    object-fit: contain;
}

.licence.pexeso img {
    max-width: 424px;
    position: relative;
    top: -4px;
}

.licence h2 {
    font-size: 64px;
}

.licence span {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: -10px;
    display: block;
    position: relative;
    left: 3px;
}

.licence-btn {
    margin-bottom: 21px;
}

.licence.awis .licence-logo img {
    max-width: 182px;
}

.licence.pexeso .main-img img {
  position: relative;
  top: 10px;
  width: 100%;
  object-fit: contain;
}

.main-img {
    min-height: 319px;
}

.main-img img {
    transition: 0.3s all;
}

.licence a {
    color: #000;
    text-decoration: none !important;
}

.licence > a:hover .main-img img {
    transform: scale(1.1);
}

.name-cta-wrap {
    gap: 15px;
}

.return {
    position: absolute;
}

.breadcrumbs {
    margin-top: 16px;
    margin-bottom: -13px;
}

.breadcrumbs, .breadcrumbs a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.1px;
}

.breadcrumbs a:hover {
    text-decoration: none;
}

.separator {
    padding: 0 8px;
}

.return a::before {
    content: "";
    background: url(../img/back.svg) no-repeat;
    width: 10px;
    height: 17px;
    background-size: 10px;
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: 1px;
}

.return a:hover::before {
    content: "";
    background: url(../img/back_green.svg) no-repeat;
    width: 10px;
    height: 17px;
    background-size: 10px;
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: 1px;
}

.licence-registration {
    background: #fff;
    border-radius: 5px;
    transition: 0.3s all;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    padding: 40px 40px 60px 40px;
    gap: 38px;
}

.intro {
    text-align: center;
}

.intro p {
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 10px;
    line-height: 135%;
    letter-spacing: -0.4px;
    display: flex;
    flex-flow: column;
}

.intro p span {
    color: var(--green);
}

table.form {
    width: 100%;
}

form {
    width: 100%;
    max-width: 700px;
    background: #f8f8f8;
    padding: 26px 35px;
    border-radius: 10px;
}

.form tbody {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    flex-flow: column;
}

.form tbody tr {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
}

.form tbody tr td {
    flex: 1;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.form tbody tr td.normal {
    flex: 1;
    font-weight: 300;
    letter-spacing: -0.3px;
}


.form tbody tr td:last-child {
    flex: 2;
    text-align: left;
}

.form tbody tr td input {
    background: #ffffff;
    border: 1px solid #c9c9c9;
    padding: 7px 7px;
    border-radius: 4px;
    color: #000;
    width: 100%;
    letter-spacing: -0.2px;
    font-size: 15px;
}

.povinne {
    color: #f00f0f;
}

input#save.btn-primary {
    background: var(--green);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    padding-block: 0;
    padding-inline: 0;
    padding: 16px 27px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s all;
    outline: none;
    box-shadow: none;
    border: none;
    line-height: 22px;
    cursor: pointer;
    white-space: nowrap;
}

input#save.btn-primary:hover {
    background: #6da723;
}

input[type="text"]:read-only {
  background: #E5E4E2!important;
}

/* Footer */

footer {
    background: #2B2C2C;
}

.footer-inner {
    padding-top: 92px;
    padding-bottom: 75px;
}

.copy {
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 49px;
}

.copy p {
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    gap: 12px;
}

.contact-info p {
    color: #fff;
    line-height: 10px;
}

.socials {
    gap: 10px;
}

.contact-info {
    margin-top: 8px;
}

/* Media Queies */

@media screen and (max-width: 1199px) {

.nav-primary {
    gap: 23px;
}

.name-cta-wrap {
    flex-flow: column wrap;
    align-items: flex-start;
    gap: 8px;
}

.subpage .name-cta-wrap {
    gap: 23px;
    align-items: center;
}

}

@media screen and (max-width: 1024px) {

.nav-primary {
    display: none;
}

.return {
    position: static;
}

.headline-wrap {
    flex-flow: column;
    gap: 30px;
}

.return a.btn-primary-inverse {
    padding: 9px 22px;
    font-size: 15px;
}

.return a::before {
    content: "";
    background: url(../img/back.svg) no-repeat;
    width: 7px;
    height: 13px;
    background-size: 7px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 1px;
}

.return a:hover::before {
    content: "";
    background: url(../img/back_green.svg) no-repeat;
    width: 7px;
    height: 13px;
    background-size: 7px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 1px;
}

.subpage .main-inner {
    padding-top: 56px;
}

.subpage .licence-select {
    flex-flow: wrap;
}

.subpage .licence {
    flex: 1 100%;
}

.subpage .licence-name {
    min-height: auto;
}

}

@media screen and (max-width: 799px) {

.licence-select {
    flex-flow: column;
}

.footer-inner-top {
    gap: 20px;
}

}

@media screen and (max-width: 480px) {

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.header-inner {
    padding-top: 32px;
    padding-bottom: 35px;
    flex-flow: column;
    gap: 21px;
}

.mail a::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 18px;
    background: url(../img/mail.svg) no-repeat;
    background-size: contain;
    position: relative;
    top: 1px;
}

.mail {
    margin-left: -7px;
}

.mail a {
    font-size: 17px;
}

h1 {
    font-size: 63px;
}

.licence-select {
    margin-top: 46px;
}

.main-inner {
    padding-top: 44px;
    padding-bottom: 60px;
}

.licence-logo {
    margin-bottom: 0;
    min-height: initial;
}

.main-img {
    min-height: 277px;
}

.licence-inner {
    padding: 43px 40px 18px 40px;
}

.name-cta-wrap {
    align-items: center;
    text-align: center;
}

.licence h2 {
    font-size: 49px;
}

.footer-inner {
    padding-top: 75px;
    padding-bottom: 52px;
}

.footer-inner-top {
    gap: 44px;
    flex-flow: column;
    text-align: center;
    justify-content: center;
}

.footer-inner-top > div {
    text-align: center;
    display: flex;
    justify-content: center;
}

.copy {
    flex-flow: column;
    gap: 39px;
}

.contact-info {
    flex-flow: column;
}

.copy p {
    text-align: center;
}

.subpage .main-inner {
    padding-top: 34px;
}

.headline-wrap {
    gap: 25px;
}
    
.licence-registration {
    padding: 32px 15px 33px 15px;
}    
    
.intro p {
    font-size: 27px;
    line-height: 118%;
}    
    
.breadcrumbs, .breadcrumbs a {
    text-align: center;
}    
    
form {
    padding: 18px 13px;
}
    
}
