/* ------------------------Text------------------------- */

H1 {
    /* 24 46 */
    font-size: clamp(1.5rem, 0.518rem + 2.619vw, 2.875rem);
}

H2 {
    /* 24 40 */
    font-size: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}

H3 {
    /* 22 28 */
    font-size: clamp(1.375rem, 1.107rem + 0.714vw, 1.75rem);
}

H4 {
    /* 20 24 */
    font-size: clamp(1.25rem, 1.071rem + 0.476vw, 1.5rem);
}

/* desktop/Body tex/body tex */

.cc-txt {
    color: var(--tx-dark-blue, #202B40);
    /* 16 18 */
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

/* desktop/Body tex/body tex large bold */

.cc-txt-large-bold,
h3.uk-heading-small {
    color: var(--tx-dark-blue, #202B40);
    /* 18 20 */
    font-family: Montserrat;
    font-size: clamp(1.125rem, 1.036rem + 0.238vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

/* desktop/Body tex/body tex semi bold */

.cc-txt-semi-bold,
.el-meta.uk-text-small {
    color: var(--tx-dark-blue, #202B40);
    /* 16 18 */
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* desktop/Body tex/body tex small */

.cc-txt-small {
    /* 14 16 */
    color: var(--tx-dark-blue, #767D89);
    font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

/* ------------------------Menu------------------------- */

.uk-navbar .uk-navbar-nav>li {
    background-color: #F7F7F7;
    border-radius: 50px;
}

.tm-header .uk-navbar-center {
    transform: translate(-65%, -50%);
}

.uk-offcanvas-bar li a {
    color: #fff !important;
}

.uk-nav-default>li.uk-active>a {
    color: #FF6B00 !important;
}

.uk-offcanvas-bar .uk-nav li+li {
    margin-top: 14px;
}

@media(max-width: 640px) {
    .tm-header-mobile .uk-navbar-right .uk-navbar-item{
    display: none;
}
}


/* ------------------------Buttons----------------------------- */

.uk-button, .btn {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Card link */

.cc-arrow .uk-button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cc-arrow .uk-button-text::after {
    content: "";
    margin-left: 8px;
    width: 24px;
    height: 24px;
    background: url("/images/icons/arrow-up-right.svg") no-repeat center;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.cc-arrow .el-item:hover .uk-button-text::after {
    transform: rotate(45deg);
}

/* Bottun arrow */

.cc-arrow-rotate .uk-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;  
}
.cc-arrow-rotate .uk-button-primary::after {
  content: "";
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background: url("/images/icons/arrow-up-right-w.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.5s ease;
}
.cc-arrow-rotate .uk-button-primary:hover::after {
  transform: rotate(45deg);
}



/* ------------------------Other------------------------- */

/* Element in About company*/

.cc-column-after {
    position: relative;
}

.cc-column-after::after {
    content: "";
    position: absolute;
    top: 0;
    left: 120px;
    width: 1px;
    height: 100%;
    background: rgba(32, 43, 64, 0.13);
    background-size: contain;
    z-index: 10;
}

@media(max-width: 1300px) {
    .cc-column-after::after {
        left: 110px;
    }
}

@media(max-width: 640px) {
    .cc-column-after::after {
        left: 75px;
    }
}

/* Bread crumbs */

.tm-top.uk-section-default.uk-section {
    padding-top: 10px;
    padding-bottom: 0px;
}

/* Navigation in the certificate lightbox */

.uk-lightbox .uk-light .uk-slidenav {
    color: #FF6B00;
}
.uk-lightbox-slidenav svg {width: 24px;}