/* 
    Made by JACodes
*/

:root{
    --bgcol1 : #000;
    --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: 0.99em;
    --sectionTopPadding : 0px;

    --navWidth : 250px;
}

@font-face {
    font-family: 'barlow';
    src: url('../font/BarlowSemiCondensed-Regular.ttf');
    font-style: normal;
}
@font-face {
    font-family: 'barlow';
    src: url('../font/BarlowSemiCondensed-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: 'barlow';
    src: url('../font/BarlowSemiCondensed-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;
}

.bg-black{
    background-color: var(--bgcol3);
}

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;}
.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;
    font-size: 22px;
}
.bold{
    font-weight: bold;
}

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;
}

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 35% 0 35%;
}

.bold{ font-weight: bold; }
.bolder{ font-weight: bolder;}


.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;
}

.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);
}

.no-border{
    border: none !important;
}

.submit-btn{
    width: 100%;
}

nav{
    position: fixed;
    width: var(--navWidth); height: 100%;
    top: 0; left: 0;
    background-color: var(--bgcol3);
    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: 110px;
    height: 140px;
    width: min-content;
    margin: 30px auto 0 auto;
    padding: 0 20px 0 20px;
    color: var(--textcol1);
}
.logo img{
    width: 230px;
    height: auto;
}

.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: 85%;
    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: center;
       object-position: center;
}

.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;
}

section{
    position: relative;
    z-index: 10;
    overflow-y: hidden;
}

.section{
    padding-top: var(--sectionTopPadding);
    padding-bottom: 0px;
    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;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto var(--pTextSize) auto;
}
.section-title::before, .section-title::after{
    content: "";
    position: absolute;
    width: 25%; height: 50%;
}
.section-title::before{
    top: -10%; left: -10%;
    border-top: 2px solid var(--textcol1);
    border-left: 2px solid var(--textcol1);
}
.section-title::after{
    bottom: -10%; right: -10%;
    border-bottom: 2px solid var(--textcol1);
    border-right: 2px solid var(--textcol1);
}
.section-title.title-align-left{
    margin: 0 0 var(--pTextSize) 10px;
}


.strip-box{
    border-top: 1px solid var(--borderCol);
    border-bottom: 1px solid var(--borderCol);
    overflow: hidden;
}
.strip-box img{
    vertical-align: bottom;
}
.strip-box [class*="col-desktop"]{
    padding: 0;
}

.about-info{
    padding: 5pc 2pc 3pc 2pc;
}


.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: 50%;
    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/icons/cursorback.svg') 32 32, pointer;
}
#btn-testimony-forward{
    right: 0;
    cursor: url('../art/icons/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;
}
fieldset {
    margin-top: 20px;
    border-radius: 10px;
    background-color: #eeeeee;
}

fieldset.error {
    background-color: #d97979;
    padding-bottom: 15px;
}

fieldset.error p{
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

legend {
    border-radius: 5px;
    background-color: gray;
    color: white;
    padding: 5px 10px;
}
.error legend{
    background-color: #901414;
}
.form-check{
    width: 50%;
    float: left;
}

.form-field{
    width: 100%;
}
.error .form-field{
    margin-top: 15px;
    color: white;
    width: 100%;
}
.contact-form input.form-check-input{
    width: auto !important;
    padding: 10px 5px 10px 5px;
    margin: 10px 6px 10px 0;
}
.contact-form input.radio{
    width: auto !important;
    padding: 10px 5px 10px 5px;
    margin: 10px 6px 10px 0;
}

.contact-form input{
    font-size: var(--pTextSize);
    width: -webkit-calc(100% - 8px);
    width: -moz-calc(100% - 8px);
    width: calc(100% - 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);
}


.color-changer-container{
    position: fixed;
    top: 0; right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    background-color: white;
    color: black !important;
    border: 1px solid black;
    max-height: 90%;
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    -o-transition: -o-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    -moz-transition: transform 1s cubic-bezier(.37,1.05,.85,1.01), -moz-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: transform 1s cubic-bezier(.37,1.05,.85,1.01), -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01), -moz-transform 1s cubic-bezier(.37,1.05,.85,1.01), -o-transform 1s cubic-bezier(.37,1.05,.85,1.01);
}
.color-changer-container.active{
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
}
.color-changer-container > .bi{
    position: absolute;
    background-color: inherit;
    padding: 10px;
    border: 1px solid black;
    border-top: none;
    bottom: 0; left: 50%;
    cursor: pointer;
    -webkit-transform: translate(-50%, 100%);
       -moz-transform: translate(-50%, 100%);
        -ms-transform: translate(-50%, 100%);
         -o-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
}
.color-changer{
    display: block;
    padding: 10px;
    font-size: var(--pTextSize);
    overflow: auto;
    max-height: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.color-changer > div{
    margin: 10px 0 10px 0;
    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-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.color-changer > textarea{
    resize: none;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    font-size: inherit;
}


/*Tablet view*/
@media only screen and (max-width: 992px){
    .loader-container{
        width: 100%;
        height: 100%;
    }
    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{
        position: relative;
        width: 140px;
        height: 140px;
        width: min-content;
        margin: 15px auto 15px auto;
        padding: 0 20px 0 20px;
        color: var(--textcol1);
    }
    .logo img{
        width: 140px;
        height: auto;
    }
    .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{
        width: -webkit-min-content;
        width: -moz-min-content;
        width: min-content;
    }

    .portfolio-popup, .portfolio-popup-close{
        width: 80%; height: 50%;
    }

    .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%;
    }


    .color-changer-container{
        bottom: 0; left: 0;
        top: auto; right: auto;
        -webkit-transform: translateY(100%);
           -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
             -o-transform: translateY(100%);
                transform: translateY(100%);
        max-height: 70%;
    }
    .color-changer-container > .bi{
        border: 1px solid black;
        border-bottom: none;
        top: 0; left: 50%;
        bottom: auto;
        -webkit-transform: translate(-50%, -100%);
           -moz-transform: translate(-50%, -100%);
            -ms-transform: translate(-50%, -100%);
             -o-transform: translate(-50%, -100%);
                transform: translate(-50%, -100%);
    }

}


/*Mobile view*/
@media only screen and (max-width: 600px) {
    :root{
        --h1TextSize: 2.835em;
        --h2TextSize: 2.025em;
        --h3TextSize: 1.62em;
        --h4TextSize: 1.215em;
        --h5TextSize: 1.053em;
        --pTextSize: 0.891em;
    }
    .strip-img{
        height: 400px;
    }

    .hero .hero-page-texts{
        bottom: 70px;
    }
    
    .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 15% 0 15%;
    }

    .subscribe-form > input{
        width: 40%;
    }

}