/* 
    Made by JACodes
*/

:root{
    --bgcol1 : #171717;
    --bgcol2 : #ffffff;
    --bgcol3 : #000;
    --textcol1 : #474747;
    --textcol2 : #ffffff;

    --faqsbgCol : #e8e8e8;

    --selectionBgCol : #353535;
    --selectionTextCol : #e1e1e1;

    --shadowCol : #35353586;
    --borderCol : #afafaf;

    --h1TextSize: 3.15em;
    --h2TextSize: 2.25em;
    --h3TextSize: 1.8em;
    --h4TextSize: 1.35em;
    --h5TextSize: 1.17em;
    --pTextSize: 1.15em;
    --sectionTopPadding : 7em;

    --navWidth : 250px;
}

@font-face {
    font-family: 'barlow';
    src: url('../font/Merriweather-Regular.ttf');
    font-style: normal;
}
@font-face {
    font-family: 'barlow';
    src: url('../font/Merriweather-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: 'barlow';
    src: url('../font/Merriweather-Bold.ttf');
    font-weight: bold;
}



.loader-container{
    position: fixed;
    top: 0; right: 0;
    width: -webkit-calc(100% - var(--navWidth));
    width: -moz-calc(100% - var(--navWidth));
    width: calc(100% - var(--navWidth)); height: 100%;
    background-color: var(--bgcol2);
    z-index: 18;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.loader-container.loaded{
    opacity: 0;
    pointer-events: none;
}
.loader {
    width: -webkit-calc(var(--h1TextSize) * 2);
    width: -moz-calc(var(--h1TextSize) * 2);
    width: calc(var(--h1TextSize) * 2);
    height: -webkit-calc(var(--h1TextSize) * 2);
    height: -moz-calc(var(--h1TextSize) * 2);
    height: calc(var(--h1TextSize) * 2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-top: 3px solid var(--textcol1);
    border-right: 3px solid transparent;
    -webkit-animation: anim-loader 1s linear infinite;
    -moz-animation: anim-loader 1s linear infinite;
    -o-animation: anim-loader 1s linear infinite;
    animation: anim-loader 1s linear infinite;
}
.loader.loaded{
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
}

html{
    scroll-behavior: smooth;
    margin: 0;
}
body{
    margin: 0;
    background-color: var(--bgcol2);
    color: var(--textcol1);
    overflow-x: hidden;
}

h1, .h1-size{font-size: var(--h1TextSize);}
h2, .h2-size{font-size: var(--h2TextSize);}
h3, .h3-size{font-size: var(--h3TextSize);}
h4, .h4-size{font-size: var(--h4TextSize);}
h5, .h5-size{font-size: var(--h5TextSize);}
p, .p-size{font-size: var(--pTextSize) !important;}
ul, .ul-size{font-size: var(--pTextSize) !important;}
.line-height-h3{
    line-height: var(--h3TextSize);
}

h1,h2,h3,h4, h5, p {
    font-weight: normal;
    margin: 10px 0px 10px 0px;
}

.italic{
    font-style: italic;
}
.bold{
    font-weight: bold;
}

.lang-sel {
    text-align: center;
}

img{
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%; height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img.pos-top {
    -o-object-position: top;
    object-position: top;
}

a{
    text-decoration: none;
    color: inherit;
    font-size: var(--pTextSize);
}

.text-center{
    text-align: center;
}
.text-right{
    text-align: end;
}
.text-aligned-just{
    text-align: justify;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-preline{
    white-space: pre-line;
}
.section-descr{
    padding: 0 33% 0 33%;
}

.bold{ font-weight: bold; }
.bolder{ font-weight: bolder;}

.img-padd {
    object-fit: contain;
}

.half-opacity{
    opacity: 0.5;
}

*{
    font-family: barlow;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bgcol1);
}

::-webkit-scrollbar-thumb {
    background: var(--selectionTextCol);
}

::-moz-selection {
    color: var(--selectionTextCol);
    background: var(--selectionBgCol);
}
::selection {
    color: var(--selectionTextCol);
    background: var(--selectionBgCol);
}

a[class*="btn-"]{
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

[class*="btn-"]{
    cursor: pointer;
    padding: 5px 20px 5px 20px;
}

.margin-auto {
    margin: 0 auto;
}

.btn-1{
    position: relative;
    border: 2px solid var(--textcol1);
    background-color: transparent;
    font-size: var(--h5TextSize);
    overflow: hidden;
    margin: 5px 0 5px 0;
    color: var(--textcol1);
}
.btn-1::after{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    mix-blend-mode: difference;
    background-color: var(--textcol2);
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -moz-transition: transform 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    z-index: 1;
}
.btn-1:hover::after{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.btn-2{
    background-color: transparent;
    color: var(--textcol2);
    border: 2px solid var(--textcol2);
    font-size: var(--h5TextSize);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.btn-2:hover{
    background-color: var(--bgcol2);
    color: var(--textcol1);
}

.hero-page-announce {
    position: absolute;
    bottom: 90px;
    margin-left: 20px;
    z-index: 5;
}

.no-border{
    border: none !important;
}

.submit-btn{
    width: 100%;
}

nav{
    position: fixed;
    width: var(--navWidth); height: 100%;
    top: 0; left: 0;
    background-color: var(--bgcol1);
    color: var(--textcol2);
    overflow-x: auto;
    z-index: 19;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}
.mobile-menu{
    display: none;
}
.logo{
    position: relative;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    margin: 10px auto 0 auto;
    padding: 0 20px 0 20px;
    background-color: var(--bgcol2);
    color: var(--textcol1);
}
.logo::before, .logo::after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 50%; height: 50%;
}
.logo::before{
    top: 60%; left: 55%;
    border-bottom: 2px solid var(--bgcol2);
    border-right: 2px solid var(--bgcol2);
}
.logo::after{
    bottom: 60%; right: 55%;
    border-top: 2px solid var(--bgcol2);
    border-left: 2px solid var(--bgcol2);
}

.logo-pic {
    width: 8rem;
    position: relative;
    margin: 10px auto 10px;
}
.logo-text {
    position: relative;
    margin: 10px auto 0 auto;
}

.logo-desc {
    position: relative;
    margin: 10px auto 15px auto;
    padding: 0 15%;
    text-align: center;
    color: #7f7f7f;
}

.navigations{
    text-align: center;
    margin: auto 0 auto 0;
}
.nav-links{
    position: relative;
    display: block;
    font-size: var(--h4TextSize);
    margin: 10px 0 10px 0;
}

main, .hero, footer, .hero-page{
    width: -webkit-calc(100% - var(--navWidth));
    width: -moz-calc(100% - var(--navWidth));
    width: calc(100% - var(--navWidth));
    padding-left: var(--navWidth);
}

.footer-navspace{
    display: none;
}

.hero{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-2{
    position: relative;
    width: -webkit-calc(100% - var(--navWidth));
    width: -moz-calc(100% - var(--navWidth));
    width: calc(100% - var(--navWidth));
    height: 65%;
    position: absolute;
    top: 0; right: 0;
    overflow: hidden;
}

.hero-page{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    -moz-transition: opacity 1.5s;
    transition: opacity 1.5s;
    pointer-events: none;
    z-index: 5;
}
.hero-page::after,
.hero-2::after{
    content: "";
    bottom: 0; left: 0;
    position: absolute;
    width: 100%; height: 300px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), to(var(--bgcol3)));
    background: -webkit-linear-gradient(top, transparent 5%, var(--bgcol3));
    background: -moz-linear-gradient(top, transparent 5%, var(--bgcol3));
    background: -o-linear-gradient(top, transparent 5%, var(--bgcol3));
    background: linear-gradient(180deg, transparent 5%, var(--bgcol3));
}
.hero-page-active{
    opacity: 1;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    pointer-events: all;
    z-index: 0;
}

.hero-img{
    position: relative;
    width: 100%; height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.hero-page-texts{
    position: absolute;
    bottom: 30px; right: 20px;
    z-index: 1;
    color: var(--textcol2);
    text-align: end;
    /*-webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    /*transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    /*-o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    /*-moz-transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    /*transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    /*transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
}

.btn-learn-more{
    position: absolute;
    bottom: 45px;
    margin-left: 20px;
    z-index: 5;
    text-transform: uppercase;
}

.btn-themer{
    margin: 0 auto 15px auto;
    padding: 0 10px 0 10px;
    border: none;
}

.strip-black{
    background-color: var(--bgcol1);
    color: var(--textcol2);
    padding: 25px 0 25px 0;
}

.img1 {
    background: url(../art/blocks/set1.jpg) no-repeat;
    background-position-y: bottom;
    background-position-x: center;
    height: 600px;
}


.img2 {
    background: url(../art/blocks/set2.jpg) no-repeat;
    background-size: cover;
    background-position-x: right;
    background-position-y: top;
    height: 700px;
}

.img3 {
    background: url(../art/blocks/set3.jpg) no-repeat;
    background-size: cover;
    background-position-x: left;
    background-position-y: top;
    height: 700px;
}
.img4 {
    background: url(../art/blocks/set4.jpg) no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
    height: 900px;
}
.img5 {
    background: url(../art/blocks/set5.jpg) no-repeat;
    background-size: cover;
    background-position-x: right;
    background-position-y: top;
    height: 850px;
}
.img6 {
    background: url(../art/blocks/set6.jpg) no-repeat;
    background-size: cover;
    background-position-x: left;
    background-position-y: top;
    height: 850px;
}
.img7 {
    background: url(../art/blocks/set7.jpg) no-repeat;
    background-position-x: center;
    background-position-y: top;

}
.first {
    margin-top: 9rem;
}
section{
    position: relative;
    z-index: 10;
    overflow-y: hidden;
}

.section{

    background-color: var(--bgcol2);
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

.section-title{
    position: relative;
    text-align: center;
    margin: 0 auto var(--pTextSize) auto;
}

.section-title.title-align-left{
    margin: 0 0 var(--pTextSize) 10px;
}


.strip-box{
    overflow: hidden;
}
.strip-box img{
    vertical-align: bottom;
}
.strip-box [class*="col-desktop"]{
    padding: 0;
}

.about-info{
    padding: 5pc 2pc 3pc 2pc;
}

h2.frm:before {
    background: url('../art/caption1.png') no-repeat;
    padding: 0 20px;
    content: " ";
    background-size: contain;
}
h2.frm:after {
    background: url('../art/caption1.png') no-repeat;
    padding: 0 20px;
    content: " ";
    background-size: contain;
    margin-left: 5px;
}

.portfolio-card{
    position: relative;
    padding: 0px !important;
    cursor: pointer;
    height: 300px;
    overflow: hidden;
    display: none;
    text-align: center;
}
.portfolio-card-deactivating{
    display: block;
    padding: 0 !important;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-animation: portfolio-card-deactivating 0.5s ease-out;
    -moz-animation: portfolio-card-deactivating 0.5s ease-out;
    -o-animation: portfolio-card-deactivating 0.5s ease-out;
    animation: portfolio-card-deactivating 0.5s ease-out;
}
.portfolio-card-active{
    display: block;
    padding: 5px !important;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-animation: portfolio-card-activating 0.5s ease-out;
    -moz-animation: portfolio-card-activating 0.5s ease-out;
    -o-animation: portfolio-card-activating 0.5s ease-out;
    animation: portfolio-card-activating 0.5s ease-out;
}
.portfolio-title{
    position: absolute;
    top: 50%; left: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    height: -webkit-calc(100% - 30px);
    height: -moz-calc(100% - 30px);
    height: calc(100% - 30px);
    background-color: var(--bgcol1);
    color: var(--textcol2);
    z-index: 1;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    -moz-transform: translate(-50%, -50%) scale(0.2);
    -ms-transform: translate(-50%, -50%) scale(0.2);
    -o-transform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -o-transition: opacity 0.3s, -o-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}

.portfolio-card:hover > .portfolio-title{
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.info-to-popup{
    display: none;
}

.portfolio-popup-container{
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.portfolio-popup-active{
    opacity: 1;
    pointer-events: all;
}
.portfolio-popup-active .portfolio-popup, .portfolio-popup-active .portfolio-popup-close{
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}
.portfolio-popup-bg{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.6;
    background-color: var(--bgcol3);
}
.portfolio-popup{
    overflow: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
}
.portfolio-popup, .portfolio-popup-close{
    position: absolute;
    top: 50%; left: 50%;
    background-color: var(--bgcol2);
    width: 50%; height: 90%;
    -webkit-transform: translate(-50%, -80%);
    -moz-transform: translate(-50%, -80%);
    -ms-transform: translate(-50%, -80%);
    -o-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -moz-transition: transform 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.portfolio-popup > img{
    height: 50%;
    -o-object-position: center top;
    object-position: center top;
    -webkit-transition: object-position 5s;
    -o-transition: -o-object-position 5s;
    -moz-transition: object-position 5s;
    transition: object-position 5s;
    transition: object-position 5s, -o-object-position 5s;
}
.portfolio-popup > img:hover{
    -o-object-position: center bottom;
    object-position: center bottom;
}
.portfolio-popup > video{
    width: 100%;
}
.portfolio-popup-close > i{
    position: absolute;
    top: 10px; right: -40px;
    width: 50px; height: 50px;
    font-size: var(--h5TextSize);
    background-color: var(--bgcol2);
    color: var(--textcol1);
    cursor: pointer;
    -webkit-transition: right 0.5s;
    -o-transition: right 0.5s;
    -moz-transition: right 0.5s;
    transition: right 0.5s;
}
.portfolio-popup-close > i:hover{
    right: -50px;
}
.portfolio-popup-close > i::before{
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.portfolio-info{
    padding: 0 10px 0 10px;
}
.portfolio-info > p{
    margin-bottom: 30px;
}

.team-card{
    position: relative;
    height: 400px;
    overflow: hidden;
}
.team-card-img{
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: -o-transform 1s;
    -moz-transition: transform 1s, -moz-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s, -moz-transform 1s, -o-transform 1s;
}
.team-card-info{
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 30%;
    padding: 10px;
    color: var(--textcol2);
    overflow-y: auto;
    -webkit-transform: translateY(58%);
    -moz-transform: translateY(58%);
    -ms-transform: translateY(58%);
    -o-transform: translateY(58%);
    transform: translateY(58%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: -o-transform 1s;
    -moz-transition: transform 1s, -moz-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s, -moz-transform 1s, -o-transform 1s;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.team-card-info::before{
    position: absolute;
    top: 0; left: 0;
    content: "";
    width: 100%; height: 100%;
    background-color: var(--shadowCol);
    z-index: -1;
    opacity: 0.5;
}
.team-card-info::-webkit-scrollbar {
    width: 5px;
}
.team-card-info > a{
    float: right;
    margin: 5px 3px 5px 3px;
}

.team-card:hover > .team-card-info{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.team-card:hover > .team-card-img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.pricing-card{
    text-align: center;
    border: 1px solid var(--borderCol);
    border-top: 5px solid var(--bgcol1);
    padding-bottom: 20px;
}
.pricing-card > hr{
    width: 80%;
    opacity: 0.5;
    border-color: var(--shadowCol);
}
.pricing-card > .unavailable{
    text-decoration: line-through;
    opacity: 0.5;
}

.drop-down{
    position: relative;
    width: -webkit-calc(100% - 2px - 30px);
    width: -moz-calc(100% - 2px - 30px);
    width: calc(100% - 2px - 30px);
    margin: 10px 15px 10px 15px;
    background-color: var(--faqsbgCol);
    border: 1px solid var(--borderCol);
    padding: 0;
}
.drop-down-title{
    padding: 10px 2% 10px 2%;
    cursor: pointer;
    margin: 0;
}
.drop-down-title > i{
    float: right;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: -o-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -moz-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -moz-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -o-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.drop-down-title > i.rotated{
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.drop-down-content{
    position: relative;
    overflow: hidden;
    z-index: 5;
    border-left: 3px solid var(--bgcol1);
    width: -webkit-calc(100% - 3px);
    width: -moz-calc(100% - 3px);
    width: calc(100% - 3px);
    background-color: var(--bgcol2);
    -webkit-transition: height 0.5s ease-out, width 0.5s ease-out;
    -o-transition: height 0.5s ease-out, width 0.5s ease-out;
    -moz-transition: height 0.5s ease-out, width 0.5s ease-out;
    transition: height 0.5s ease-out, width 0.5s ease-out;
}

.testimonials-container{
    position: relative;
    width: 100%; height: 400px;
    margin-top: 20px;
    overflow: hidden;
    background-image: url('../art/about.jpg');
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#btn-testimony-back, #btn-testimony-forward{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    margin: 0;
    opacity: 0;
    z-index: 10;
}
#btn-testimony-back{
    left: 0;
    cursor: url('../art/cursorback.svg') 32 32, pointer;
}
#btn-testimony-forward{
    right: 0;
    cursor: url('../art/cursorforw.svg') 32 32, pointer;
}
.testimonials-container::before{
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    opacity: 0.6;
    background-color: var(--bgcol1);
}
.testimony{
    position: absolute;
    width: 50%;
    margin: 0 25% 0 25%;
    top: 50%; left: 0;
    color: var(--textcol2);
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: testimony-deactivating 1s ease-in;
    -moz-animation: testimony-deactivating 1s ease-in;
    -o-animation: testimony-deactivating 1s ease-in;
    animation: testimony-deactivating 1s ease-in;
}
.testimony-active{
    opacity: 1;
    -webkit-animation: testimony-activating 1s ease-out;
    -moz-animation: testimony-activating 1s ease-out;
    -o-animation: testimony-activating 1s ease-out;
    animation: testimony-activating 1s ease-out;
}
.testimony-reversed{
    opacity: 0;
    -webkit-animation: testimony-deactivating-reversed 1s ease-in;
    -moz-animation: testimony-deactivating-reversed 1s ease-in;
    -o-animation: testimony-deactivating-reversed 1s ease-in;
    animation: testimony-deactivating-reversed 1s ease-in;
}
.testimony-active-reversed{
    opacity: 1;
    -webkit-animation: testimony-activating-reversed 1s ease-out;
    -moz-animation: testimony-activating-reversed 1s ease-out;
    -o-animation: testimony-activating-reversed 1s ease-out;
    animation: testimony-activating-reversed 1s ease-out;
}

.strip-img > iframe{
    width: 100% !important;
    height: 100% !important;
}

.contact-form input{
    font-size: var(--pTextSize);
    width: -webkit-calc(50% - 8px);
    width: -moz-calc(50% - 8px);
    width: calc(50% - 8px);
    padding: 10px 5px 10px 5px;
    margin: 10px 6px 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    opacity: 0.8;
    color: var(--textcol1);
    background-color: var(--faqsbgCol);
    border-bottom: 2px solid var(--textcol1);
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.contact-form input:focus{
    opacity: 1;
}
.contact-form textarea{
    width: 100%;
    resize: none;
    font-size: var(--pTextSize);
    margin: 10px 0 10px 0;
    padding: 10px 5px 10px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    color: var(--textcol1);
    background-color: var(--faqsbgCol);
    border-bottom: 2px solid var(--textcol1);
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
    opacity: 0.8;
}
.contact-form textarea:focus{
    opacity: 1;
}
.subscribe-form{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.subscribe-form > input{
    font-size: var(--pTextSize);
    width: 20%;
    border: none;
    padding: 8px;
}

footer{
    padding-top: -webkit-calc(var(--sectionTopPadding) / 2);
    padding-top: -moz-calc(var(--sectionTopPadding) / 2);
    padding-top: calc(var(--sectionTopPadding) / 2);
    left: 0;
    bottom: 0;
    background-color: var(--bgcol1);
    color: var(--textcol2);
    position: fixed;
    max-height: 100%;
    overflow: auto;
}
footer::-webkit-scrollbar{
    width: 0;
}
.footer-cc{
    padding: 10px 0 10px 0;
    background-color: var(--shadowCol);
    font-size: -webkit-calc(var(--pTextSize) * 0.9);
    font-size: -moz-calc(var(--pTextSize) * 0.9);
    font-size: calc(var(--pTextSize) * 0.9);
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background: url('../art/dwnl_back.jpg') no-repeat;
    margin: 15% auto; /* 15% from the top and centered */
    width: 600px; /* Could be more or less, depending on screen size */
    height: 600px;
}

.modal-inner {
    padding: 140px;
    text-align: center;
    justify-content: center;
}

.dwnl-span {
    margin-top: 45px;
    display: block;
    text-align: left;
    font-size: 0.8rem;
}

.underline {
    text-decoration: underline;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



@media only screen and (max-width: 1700px){
    .section-descr {
        padding: 0 20% 0 20%;
    }
    .pad-1700 {
        padding-top: 5rem;
    }
    #seasons, #develop {
        font-size: 0.8rem;
    }
    .navigations {
        font-size: 0.9rem;
    }
    footer {
        font-size: 0.9rem;
    }

}

/*Tablet view*/
@media only screen and (max-width: 992px){
    .loader-container{
        width: 100%;
        height: 100%;
    }

    .logo-pic {
        width: 4rem;
        position: relative;
        margin: 0;
    }
    .logo-desc,.lang-sel {
        padding: 1rem 3rem;
    }
    .hero-img {
        margin-top: 3rem;
    }
    .section-descr{
        padding: 0 20% 0 20%;
    }
    .download-launcher {
        max-width: 40%;
        margin: 3rem auto;
    }

    .img3 {
        height: 755px;
    }
    .lang-sel {
        margin: 10px auto 15px auto;
    }
    nav{
        width: 100%;
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow: visible;
    }
    .mobile-menu{
        position: relative;
        font-size: var(--h2TextSize);
        display: block;
        margin: auto 5px auto auto;
        color: var(--textcol2);
        background-color: transparent;
    }
    .mobile-menu-ico1::before{
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: -o-transform 0.2s;
        -moz-transition: transform 0.2s, -moz-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
    }
    .mobile-menu-ico2{
        position: absolute;
        top: 50%; left: 50%;
        -webkit-transform: translate(-50%, -50%) scaleY(0);
        -moz-transform: translate(-50%, -50%) scaleY(0);
        -ms-transform: translate(-50%, -50%) scaleY(0);
        -o-transform: translate(-50%, -50%) scaleY(0);
        transform: translate(-50%, -50%) scaleY(0);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: -o-transform 0.2s;
        -moz-transition: transform 0.2s, -moz-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
    }
    .mobile-menu.active > .mobile-menu-ico1::before{
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
    }
    .mobile-menu.active > .mobile-menu-ico2{
        -webkit-transform: translate(-50%, -50%) scaleY(1);
        -moz-transform: translate(-50%, -50%) scaleY(1);
        -ms-transform: translate(-50%, -50%) scaleY(1);
        -o-transform: translate(-50%, -50%) scaleY(1);
        transform: translate(-50%, -50%) scaleY(1);
    }
    .btn-themer{
        margin: 0;
    }

    .logo{
        margin: 20px;
    }
    .navigations{
        position: absolute;
        top: 99%; left: 0;
        width: 100%;
        height: 100vh;
        -webkit-transform: translateY(-120%);
        -moz-transform: translateY(-120%);
        -ms-transform: translateY(-120%);
        -o-transform: translateY(-120%);
        transform: translateY(-120%);
        overflow: hidden;
        z-index: -2;
        -webkit-transition: -webkit-transform 1s;
        transition: -webkit-transform 1s;
        -o-transition: -o-transform 1s;
        -moz-transition: transform 1s, -moz-transform 1s;
        transition: transform 1s;
        transition: transform 1s, -webkit-transform 1s, -moz-transform 1s, -o-transform 1s;
        -webkit-transition-delay: 0.8s;
        -moz-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s;
        -webkit-backdrop-filter: grayscale(100%);
        backdrop-filter: grayscale(100%);
    }
    .navigations::before{
        content: "";
        position: absolute;
        left: 0; top: 0;
        width: 100%; height: 100%;
        opacity: 0.8;
        background-color: var(--bgcol1);
    }
    .navigations.active{
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }
    .navigations::-webkit-scrollbar{
        width: 0;
    }
    .nav-links{
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }
    .navigations.active > .nav-links{
        opacity: 1;
        -webkit-transition-delay: 0.8s;
        -moz-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }
    main, .hero, .hero-page, footer{
        width: 100%;
        padding-left: 0;
    }
    .hero-2{
        width: 100%;
    }
    footer{
        text-align: center;
    }
    .section-title{

    }
    .small {
        font-size: 0.9rem !important;
    }

    .portfolio-popup, .portfolio-popup-close{
        width: 80%; height: 50%;
    }

    .contact-form {
        text-align: center;
    }

    .row-portfolio{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .testimony{
        width: 80%;
        margin: 0 10% 0 10%;
    }

    .mob-lang-sel{
        display: none;
    }

}


/*Mobile view*/
@media only screen and (max-width: 600px) {
    :root{
        --h1TextSize: 2.835em;
        --h2TextSize: 2.025em;
        --h3TextSize: 1.62em;
        --h4TextSize: 1.215em;
        --h5TextSize: 0.9rem;
        --pTextSize: 0.891em;
    }
    .logo-desc {
        display: none;
    }
    .lang-sel {
        display: none;
    }
    .download-launcher {
        max-width: 90%;
    }
    .logo-text {
        margin: 10px auto 0 10px;
    }
    .section-title {
        margin: 0 2rem 1rem 2rem;
    }
    .strip-img{
        height: 400px;
    }

    .mob-lang-sel {
        display: inline-block;

    }

    .mob-lang-sel a {
        color: #fff;
    }

    .hero-page-texts {
        max-width:100%;
    }

    .img1 {

    }
    .img2 {
        display: none;
    }

    .about-info {
        padding: 2pc 2pc 3pc 2pc;
    }

    .img4 h2 {
        margin-top:50px;
    }

    .section-title {
        text-align: center;
        font-size: var(--h4TextSize);
    }

    .hero .hero-page-texts{
        bottom: 140px;
    }

    .hero-page-announce {
        position: absolute;
        bottom: 20px;
        margin-left: 20px;
        z-index: 5;
        font-size: 0.8rem;
    }

    .btn-learn-more{
        bottom: 30px;
        right: 20px;
        margin-left: 0;
    }

    .footer-navspace{
        display: block;
    }

    .portfolio-popup, .portfolio-popup-close{
        width: 80%; height: 90%;
    }
    .section-descr{
        padding: 0 5% 0 5%;
    }

    .subscribe-form > input{
        width: 40%;
    }

    #concept h5 {
        font-size: 0.85rem;
    }

}