/* global styles */
:root{
    --themeBlue: #1A2C79;
    --themeBlueHover: #132057;
    --themePink: #E80566;
    --themePinkHover: #cc045a;
    --boxShadow: rgb(24 28 50 / 18%);
    --purple: #3f345f;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #6d6d6d;
    --whiteLowAlpha: #ffffffe0;
    --darkBlue: #181c31;
    --lightGray: #1a2c791a;
    --grayBlue: #5E6278;
    --bgGray: #F5F5F5;
    --lightBlue: #053e9a;
    --starYellow: #F5B759;
    --faceBook: #4267B2;
    --twitter: #00acee;
    --youTube: #c4302b;
    --linkedIn: #0077b5;
    --instagram: #bc2a8d;
    --telegram: #0088cc;
    --borderGray: #e8e8e8;
    --borderBlueGray: #D1D3E0;
}

/* all elements and body styles */
*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    font-weight: normal;
    color: var(--gray);
    user-select: none;
    scrollbar-width: none;
    cursor: none;
}
html, body{
    overflow-x: hidden;
}

/* font families */
@font-face {
    font-family: "archivoRegular";
    font-style: normal;
    font-stretch: 100%;
    font-display: swap;
    src: url(../font/archivoRegular.ttf) format("woff2");
}
@font-face {
    font-family: "archivoMedium";
    font-style: normal;
    font-stretch: 100%;
    font-display: swap;
    src: url(../font/archivoMedium.ttf) format("woff2");
}

/* font sizes */
h1, h2, h3{
    font-family: "archivoRegular", sans-serif;
    color: var(--black);
}
h1{
    font-size: 54px;
    line-height: 66px;
    font-weight: bold;
}
h2{
    font-size: 32px;
}
h3{
    font-size: 20px;
    line-height: 30px;
}
b{
    font-family: "archivoMedium", sans-serif;
}
p, span, li, a, button{
    font-size: 17px;
    line-height: 25px;
}

/* a, span, ul and li svg styles */
a{
    text-decoration: none;
}
span{
    display: inline-block;
}
ul{
    list-style-type: none;
}
li::before{
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    top: 2px;
    padding-right: 5px;
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3e%3crect width='256' height='256' fill='none'/%3e%3cpolyline points='56 48 136 128 56 208' fill='rgb(232, 5, 102)' stroke='rgb(232, 5, 102)' stroke-linecap='round' stroke-linejoin='round' stroke-width='24'/%3e%3cpolyline points='136 48 216 128 136 208' fill='none' stroke='rgb(232, 5, 102)' stroke-linecap='round' stroke-linejoin='round' stroke-width='24'/%3e%3c/svg%3e");
}
svg{
    width: 16px;
}

/* buttons */
.pink, .gray, .blue{
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
    width: 120px;
    transition: 0.5s;
    text-align: center;
    margin-right: 20px;
    min-width: fit-content;
}
.pink{
    background-color: var(--themePink);
    color: var(--white);
    border: 1px solid transparent;
}
.pink:hover{
    background-color: var(--themePinkHover);
    border: 1px solid var(--white);
    color: var(--white);
}
.gray{
    background-color: transparent;
    border: 1px solid var(--whiteLowAlpha);
    color: var(--whiteLowAlpha);
}
.gray:hover{
    background-color: var(--whiteLowAlpha);
    color: var(--gray);
}
.blue{
    background-color: var(--themeBlue);
    color: var(--white);
    border: 1px solid transparent;
}
.blue:hover{
    background-color: var(--themeBlueHover);
    border: 1px solid var(--white);
    color: var(--white);
}

/* container & center */
.container{
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.textCenter{
    text-align: center;
    width: 100%;
}

/* aside */
aside{
    margin-bottom: 20px;
}
aside h2{
    margin-bottom: 10px;
    width: 100%;
}
aside h2 b{
    color: var(--black);
}
aside h3, aside p{
    color: var(--gray);
    width: 100%;
}

/* radioButtons */
.radioButtons input{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0px;
    width: 18px;
    height: 18px;
    accent-color: var(--themePink);
}
.radioButtons input:not(:checked)::after{
    display: block;
    position: relative;
    content: '';
    padding: 5px;
    border-radius: 100%;
    background-color: var(--whiteLowAlpha);
    border: 1px solid var(--gray);
}
.radioButtons div div input:hover::after{
    background-color: var(--themePink);
    border: 1px solid var(--whiteLowAlpha);
}


/* topContactList */
#topContactList{
    background-color: var(--lightGray);
    height: 40px;
    z-index: 9;
}
#topContactList div.container{
    padding-top: 10px;
}
#topContactList div a:nth-of-type(2){
    margin-left: 10px;
}
#topContactList div a:nth-of-type(3){
    float: right;
}
#topContactList div a, #topContactList div a b{
    font-size: 15px;
    color: var(--purple);
}
#topContactList a, #topContactList a b{
    transition: 0.5s;
}
#topContactList a:hover, #topContactList a:hover b{
    color: var(--black);
}
#topContactList a:hover svg{
    fill: var(--black);
}
#topContactList svg{
    width: 15px;
    height: 15px;
    transition: 0.5s;
    fill: var(--purple);
}

/* header */
header{
    background-color: transparent;
    height: 65px;
    top: 40px;
    position: absolute;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
}
header>div.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
header img{
    width: 150px;
    height: 30px;
}
#menuToggler{
    display: none;
    width: 30px;
    height: 22px;
    transition: .5s ease-out;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    z-index: 5;
    top: 14px;
    padding: 10px;
}
#menuToggler div{
    background-color: var(--white);
    content: "";
    display: block;
    height: 2px;
    border-radius: 3px;
    transition: 0.5s;
    width: 22px;
}
header>div>div{
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
}
header div div img{
    display: none;
}
.selectedNavBarItem{
    display: none;
}

/* headerSlider */
#headerSlider{
    background: linear-gradient(90deg, rgba(26,44,121,1) 0%, rgba(26,44,121,0.95) 26%, rgba(26,44,121,0.85) 50%, rgba(26,44,121,0.75) 75%, rgba(26,44,121,0.5) 100%);
    width: 100%;
    height: calc(100vh - 170px);
    position: relative;
    min-height: 700px;
}
#headerSlider::before{
    content: "";
    background-image: url("../img/backgrounds/headerSlider.png");
    opacity: .7;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    display: block;
    position: absolute;
    width: 100%;
    height: 800px;
}
#headerSlider>div{
    position: relative;
    top: 50%;
    transform: translateY(-55%);
}
#headerScroller::-webkit-scrollbar{
    width: 0;
    background: transparent;
}
#headerScroller{
    position: relative;
    overflow: auto;
    display: flex;
    max-width: 1200px;
    scroll-snap-type: x mandatory;
}
#headerScroller::-webkit-scrollbar{
    display: none;
}
#headerSlider article{
    min-width: 100%;
    box-sizing: border-box;
    padding-right: 25px;
    padding-left: 2px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
#headerSlider article:nth-of-type(2) a{
    width: fit-content;
    padding-left: 25px;
    padding-right: 25px;
}
#headerSlider li::before{
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3e%3crect width='256' height='256' fill='none'/%3e%3cpolyline points='56 48 136 128 56 208' fill='white' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='24'/%3e%3cpolyline points='136 48 216 128 136 208' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='24'/%3e%3c/svg%3e");
}
#headerSlider h1, #headerSlider h3{
    margin-bottom: 20px;
    color: var(--white);
}
#headerSlider li{
    margin-bottom: 10px;
    color: var(--white);
}
#headerSlider li b{
    color: var(--white);
}
#headerSlider a{
    margin-top: 20px;
}
#headerSlider div div:nth-of-type(2){
    height: fit-content;
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

/* headerSliderBottom */
#headerSliderBottom{
    position: relative;
    margin-top: -100px;
}
#headerSliderBottom div{
    gap: 30px;
    flex-wrap: wrap;
}
#headerSliderBottom div a{
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0px 5px 15px var(--boxShadow);
    overflow: hidden;
    position: relative;
    padding: 40px;
    opacity: 0;
    transition: 0.5s;
    min-width: 220px;
    max-width: 500px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
    align-self: stretch;
}
#headerSliderBottom div div{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    transition: 0.5s;
    margin-left: -40px;
    background-size: cover;
}
#headerSliderBottom div a:nth-of-type(1) div{
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%), url("../img/backgrounds/headerSliderBottom1.jpg");
}
#headerSliderBottom div a:nth-of-type(2) div{
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%), url("../img/backgrounds/headerSliderBottom2.jpg");
}
#headerSliderBottom div a:nth-of-type(3) div{
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%), url("../img/backgrounds/headerSliderBottom3.jpg");
}
#headerSliderBottom div a:hover div{
    top: 0px;
}
#headerSliderBottom div a:nth-of-type(1){
    transform: translateX(-300px);
}
#headerSliderBottom div a:nth-of-type(2){
    transform: translateY(300px);
}
#headerSliderBottom div a:nth-of-type(3){
    transform: translateX(300px);
}
#headerSliderBottom svg{
    width: 50px;
    fill: var(--themeBlue);
    z-index: 1;
    position: relative;
    transition: 0.5s;
    margin-bottom: 7px;
    animation: goLeftAndRight 3s infinite;
    transform: translateX(0px);
}
@keyframes goLeftAndRight {
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(15px);
    }
}
#headerSliderBottom div a h3{
    margin-bottom: 8px;
}
#headerSliderBottom div a h3 b{
    color: var(--black);
    z-index: 1;
    position: relative;
    transition: 0.5s;
}
#headerSliderBottom div a p{
    color: var(--gray);
    z-index: 1;
    position: relative;
    transition: 0.5s;
}
#headerSliderBottom div a:hover svg, #headerSliderBottom div a:hover p, #headerSliderBottom div a:hover h3 b{
    fill: var(--white);
    color: var(--white);
}

/* servicesNotice */
#servicesNotice{
    margin-top: 100px;
}
#servicesNotice div.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
#servicesNotice div div{
    max-width: 700px;
    min-width: 300px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
}
#servicesNotice img{
    width: 100%;
    opacity: 0;
    transition: 0.5s;
    transform: translateX(-300px);
}
#servicesNotice li:nth-of-type(1){
    margin-top: -5px;
}
#servicesNotice li{
    margin-bottom: 5px;
}
#servicesNotice a{
    margin-top: 30px;
    transform: translateX(100px);
    transition: 0.5s;
    opacity: 0;
}

/* featuresNotice */
#featuresNotice{
    background-color: var(--bgGray);
    margin-top: 100px;
    padding: 100px 0px;
}
#featuresNotice div div{
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
#featuresNotice article{
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;
    transition: 0.5s;
    opacity: 0;
    min-width: 250px;
    max-width: 500px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
    align-self: stretch;
}
#featuresNotice article:nth-of-type(1), #featuresNotice article:nth-of-type(4){
    transform: translateX(-300px);
}
#featuresNotice article:nth-of-type(3), #featuresNotice article:nth-of-type(6){
    transform: translateX(300px);
}
#featuresNotice article:nth-of-type(2), #featuresNotice article:nth-of-type(5){
    transform: translateY(300px);
}
#featuresNotice article img{
    width: 70px;
    animation: goTopAndBottom 3s infinite;
    transform: translateY(5px);
}
@keyframes goTopAndBottom {
    0%{
        transform: translateY(5px);
    }
    50%{
        transform: translateY(-10px);
    }
}
#featuresNotice article h3{
    color: var(--black);
    margin-top: 20px;
    margin-bottom: 10px;
}
#featuresNotice article h3 b{
    color: var(--black);
}
#featuresNotice article:hover img{
    filter: saturate(7);
    transition: 0.5s;
}
#featuresNotice article:hover{
    box-shadow: 0px 5px 15px var(--boxShadow);
}

/* progressViewer */
#progressViewer{
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%), url(../img/backgrounds/headerSliderBottom1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 80px 0px;
}
#progressViewer div{
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}
#progressViewer *{
    color: var(--white);
    fill: var(--white);
}
#progressViewer svg{
    width: 40px;
    animation: goTopAndBottom 3s infinite;
    transform: translateY(5px);
}
#progressViewer article{
    min-width: 170px;
    max-width: 300px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
    align-self: stretch;
}
#progressViewer h2{
    font-size: 40px;
    margin: 20px 0px 10px 0px;
}

/* projectsList */
#projectsList{
    padding: 100px 0px;
}
#projectsList{
    text-align: center;
}
#projectsList input{
    display: none;
}
#projectsList div:nth-of-type(1){
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
#projectsList label{
    padding: 15px 20px;
    display: inline-block;
    transition: 0.5s;
    text-align: center;
    border: 1px solid var(--themeBlue);
    border-radius: 40px;
    width: fit-content;
    background-color: var(--white);
    color: var(--themeBlue);
}
#projectsList label:hover{
    background-color: var(--themeBlue);
    border: 1px solid var(--white);
    color: var(--white);
}
#projectsList input:checked+label{
    background-color: var(--themeBlue);
    border: 1px solid var(--white);
    color: var(--white);
}
#projectsList div:nth-of-type(2){
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}
#projectListContent a{
    aspect-ratio: 16 / 9;
    position: relative;
    transition: 0.5s;
    opacity: 0;
    min-width: 400px;
    max-width: 585px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
}
#projectListContent a:nth-of-type(odd){
    transform: translateX(-300px);
}
#projectListContent a:nth-of-type(even){
    transform: translateX(300px);
}
#projectListContent a div{
    opacity: 0;
    background: linear-gradient(90deg, rgba(26,44,121,0.85) 0%, rgba(232, 5, 103, 0.85) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
#projectListContent a:hover div{
    opacity: 1;
}
#projectListContent a span{
    transition: 0.5s;
    opacity: 0;
    transform: translateY(100px);
}
#projectListContent a:hover span{
    transform: translateY(0px);
    opacity: 1;
}
#projectListContent a div h3{
    width: 100%;
    margin-bottom: 10px;
}
#projectListContent a div h3 b{
    color: var(--white);
}
#projectListContent a div p{
    width: 100%;
    color: var(--white);
}
#projectListContent a img{
    height: 100%;
    width: 100%;
    border: 7px solid var(--bgGray);
    box-sizing: border-box;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}

/* contactNotice */
#contactNotice{
    padding: 50px 0px 0px;
    background-color: var(--bgGray);
}
#contactNotice>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
#contactNotice aside{
    margin-bottom: 0px;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 320px;
}
#contactNotice a{
    margin: 0px auto;
    transform: scale(200%);
    transition: 0.5s;
}

/* footer */
footer{
    background-color: var(--themeBlue);
    padding: 80px 0px;
}
footer div.container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
footer img{
    width: 150px;
    margin-bottom: 20px;
}
footer *{
    color: var(--white);
}
footer nav{
    max-width: 400px;
}
footer p{
    opacity: 0.7;
    line-height: 24px;
    margin-bottom: 25px;
}
footer h3{
    margin-bottom: 24px;
}
footer article{
    min-width: 160px;
}
footer article a{
    display: block;
    margin-bottom: 10px;
    transition: 0.5s;
    margin-left: -14px;
    opacity: 0.5;
    margin-right: 14px;
}
footer article a::before{
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14px' fill='white' height='14px'%3e%3cpolyline points='4 3, 8 7, 4 11'%3e%3c/polyline%3e%3c/svg%3e");
    display: inline-block;
    visibility: hidden;
    position: relative;
    transition: 0.5s;
}
footer article a:hover{
    opacity: 1;
    margin-left: 0px;
    margin-right: 0px;
}
footer article a:hover::before{
    visibility: visible;
}
footer nav>div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
footer nav div a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 20px;
    position: relative;
    transition: 0.5s;
}
footer nav div a:nth-of-type(1){
    background-color: var(--faceBook);
}
footer nav div a:nth-of-type(2){
    background-color: var(--twitter);
}
footer nav div a:nth-of-type(3){
    background-color: var(--youTube);
}
footer nav div a:nth-of-type(4){
    background-color: var(--linkedIn);
}
footer nav div a:nth-of-type(5){
    background-color: var(--instagram);
}
footer nav div a:nth-of-type(6){
    background-color: var(--telegram);
}
footer nav div a:hover{
    background-color: var(--themeBlue);
}
footer svg{
    fill: var(--white);
    width: 18px;
    height: 18px;
}
footer nav div a span{
    position: absolute;
    width: fit-content;
    bottom: 100%;
    padding: 10px 15px;
    background-color: var(--bgGray);
    border-radius: 5px;
    width: fit-content;
    display: none;
    white-space: nowrap;
    text-align: center;
    padding-bottom: 0px;
    color: var(--grayBlue);
    opacity: 0;
}
footer nav div a span::after{
    content: "";
    display: block;
    position: relative;
    top: 10px;
    margin: auto;
    width: 1px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--bgGray) transparent transparent transparent;
}
footer nav div a:hover span{
    display: block;
    animation: 0.5s socialIconsTitles forwards;
}
@keyframes socialIconsTitles {
    0%{
        bottom: 100%;
        opacity: 0;
    }
    100%{
        bottom: calc(100% + 10px);
        opacity: 1;
    }
}

/* copyrightText */
#copyrightText{
    border-top: 1px solid var(--lightBlue);
    background-color: var(--themeBlue);
}
#copyrightText div{
    padding: 30px 0px;
    text-align: center;
}
#copyrightText p{
    opacity: 0.7;
    color: var(--white);
}
#copyrightText a{
    opacity: 0.5;
    color: var(--white);
    transition: 0.5s;
}
#copyrightText a:hover{
    opacity: 1;
}

/* scrollToTop */
#scrollToTop{
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: var(--themePink);
    border-radius: 100%;
    z-index: 11;
    width: 44px;
    height: 44px;
    transition: 1s;
    transform: translateY(-100vh);
}
#scrollToTop svg{
    width: 18px;
    fill: var(--white);
    transition: 0.5s;
}
#scrollToTop:hover svg{
    rotate: 180deg;
}

/* scrollbar */
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background-color: var(--themeBlue);
}
::-webkit-scrollbar-thumb{
    background-color: var(--themePink);
    border-radius: 10px;
}

/* cursor */
#cursorDot, #cursorOutline{
    pointer-events: none;
    position: absolute;
    border-radius: 100%;
    top: -100px;
    left: -100px;
    transform: translate(-50%,-50%);
    display: none;
}
#cursorDot{
    width: 10px;
    aspect-ratio: 1/1;
    background-color: var(--themeBlue);
    z-index: 999;
}
#cursorOutline{
    width: 40px;
    aspect-ratio: 1/1;
    background-color: #e8056788;
    z-index: 998;
}
@keyframes cursorDot {
    0%{
        width: 10px;
    }
    100%{
        width: 7px;
    }
}
@keyframes cursorOutline {
    0%{
        width: 40px;
    }
    100%{
        width: 60px;
    }
}
@keyframes cursorDotReverse {
    0%{
        width: 7px;
    }
    100%{
        width: 10px;
    }
}
@keyframes cursorOutlineReverse {
    0%{
        width: 60px;
    }
    100%{
        width: 40px;
    }
}

/* urlInput & alertBoxContainer & copyUrlAlertBox */
#urlInput{
    display: none;
}
#alertBoxContainer{
    top: 10px;
    right: 10px;
    position: fixed;
    z-index: 996;
    max-width: calc(100% - 20px);
}
#alertBoxContainer div{
    display: none;
    margin-left: auto;
    box-shadow: 0px 5px 15px var(--boxShadow);
    background-color: var(--white);
    color: var(--darkBlue);
    padding: 20px;
    padding-right: 40px;
    border-radius: 5px;
    width: fit-content;
    max-width: 400px;
    box-sizing: border-box;
    margin-bottom: 10px;
    animation: 0.5s alertBoxShow forwards;
}
#alertBoxContainer div::after{
    content: '';
    display: block;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgb(232, 5, 102)' viewBox='0 0 16 16'%3e%3cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1000;
    width: 16px;
    height: 16px;
    top: 20px;
    left: calc(100% - 30px);
}
@keyframes alertBoxShow {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes alertBoxHide {
    0%{
        opacity: 1;
        transform: translateY(0px);
    }
    100%{
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* contextMenu */
#contextMenuContainer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 0px;
    height: 0px;
    z-index: 997;
    transition: 0.5s;
    box-shadow: 0px 5px 15px var(--boxShadow);
    overflow: hidden;
}
#contextMenu{
    border-radius: 10px;
    background-color: var(--white);
    overflow: hidden;
    width: 200px;
    height: 264px;
}
#contextMenu a{
    display: block;
    padding: 10px;
    color: var(--darkBlue);
    font-size: 15px;
    transition: 0.5s;
}
#contextMenu a:hover{
    background-color: var(--lightGray);
}
#contextMenu svg{
    width: 15px;
    fill: var(--darkBlue);
    margin-right: 7px;
}
#contextMenu>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
#contextMenu>div div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: 16px;
}
#contextMenu>div div:hover{
    background-color: var(--lightGray);
}
#contextMenu>div div svg{
    margin-right: 0px;
}

/* pageHeader */
#pageHeader{
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%), url(../img/backgrounds/pages.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0px;
}
#pageHeader *{
    color: var(--white);
    text-align: center;
    fill: none;
    stroke: var(--white);
    stroke-width: 2px;
}
#pageHeader h2{
    margin-bottom: 15px;
}






/* aboutCompany */
#aboutCompany{
    padding: 100px 0px;
    background-color: var(--bgGray);
}
#aboutCompany>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
#aboutCompany>div>div:nth-of-type(1){
    max-width: 550px;
    min-width: 260px;
    position: relative;
    flex-basis: 0;
    flex-grow: 1;
    transition: 0.5s;
    transform: translateX(-300px);
    opacity: 0;
}
#aboutCompany>div>div:nth-of-type(2){
    max-width: 500px;
    min-width: 340px;
    flex-grow: 1;
    flex-basis: 0;
}
#aboutCompany div div:nth-of-type(1) div{
    border-radius: 65% 35% 30% 70% / 50% 45% 55% 50%;
    border: 15px solid var(--themeBlue);
    overflow: hidden;
}
#aboutCompany div div div img{
    width: 100%;
    z-index: 5;
    position: relative;
}
#aboutCompany>div>div>div~img:nth-of-type(1){
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(70%);
}
#aboutCompany>div>div>div~img:nth-of-type(2){
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: calc(60%);
}
#aboutCompany label b{
    color: var(--black);
}
#aboutCompany article{
    margin-top: 15px;
    display: none;
    height: 100%;
}
#aboutCompany article:nth-of-type(1){
    display: block;
}
#aboutCompany input{
    display: none;
}
#aboutCompany span{
    margin-right: 20px;
    position: relative;
    padding: 5px 0px 10px;
}
#aboutCompany span label::after{
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    border-bottom: 2px solid var(--themePink);
    bottom: 5px;
    left: 0px;
    transition: 0.5s;
}
#aboutCompany input:checked+label::after, #aboutCompany span:hover label::after{
    width: 100%;
}
#aboutCompany article p{
    margin-bottom: 15px;
}
#aboutCompany article li{
    line-height: 28px;
}

/* reviewsSlider */
#reviewsSlider{
    padding: 100px 0px;
    background-color: var(--themeBlue);
}
#reviewsSlider aside *{
    color: var(--white);
}
#reviewsScroller{
    position: relative;
    overflow: auto;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
}
#reviewsScroller::-webkit-scrollbar{
    display: none;
}
#reviewsScroller article{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    min-width: 585px;
    /* 585 = container eke width eka bediima 2, adukiriima 15 */
    box-sizing: border-box;
    align-self: stretch;
    margin-right: 30px;
}
#reviewsScroller article::before{
    content: '';
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' fill='rgb(209,211,224)' viewBox='0 0 16 16'%3e%3cpath d='M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z'/%3e%3c/svg%3e");
    display: block;
    position: relative;
    top: -12px;
    left: -12px;
    width: 70px;
    height: 70px;
    animation: goLeftAndRight 3s infinite;
    transform: translateX(0px);
}
#reviewsScroller article p b{
    color: var(--black);
}
#reviewsScroller article p span{
    font-size: 14px;
}
#reviewsScroller article p span b{
    color: var(--grayBlue);
}
#reviewsScroller svg{
    width: 16px;
    fill: var(--starYellow);
}
#reviewsScroller img{
    width: 65px;
    border-radius: 100%;
    margin-right: 15px;
}
#reviewsScroller>article>div{
    display: flex;
    align-items: center;
    margin-top: 25px;
}
#reviewsScroller>article>div>div:nth-of-type(2){
    margin-left: auto;
}
#reviewsSlider .radioButtons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 15px;
}

/* ourExecutiveTeam */
#ourExecutiveTeam{
    padding: 100px 0px;
}
#teamMembers{
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
#teamMembers article{
    background-color: var(--bgGray);
    padding: 50px;
    text-align: center;
    border: 1px solid var(--borderGray);
    border-radius: 5px;
    box-shadow: 0px 0px 2px var(--boxShadow);
    min-width: 260px;
    max-width: 500px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0px auto;
    transition: 0.5s;
}
#teamMembers article:nth-of-type(1){
    transform: translateX(-300px);
}
#teamMembers article:nth-of-type(2){
    transform: translateY(300px);
}
#teamMembers article:nth-of-type(3){
    transform: translateX(300px);
}
#teamMembers article>a:nth-of-type(1){
    border-radius: 100%;
    border: 1px solid var(--borderBlueGray);
    width: 200px;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    margin: 0px auto 20px;
    background-color: var(--white);
    box-shadow: 0px 5px 20px 7px var(--boxShadow);
}
#teamMembers article>a:nth-of-type(1)::after{
    position: absolute;
    width: 200px;
    aspect-ratio: 1/1;
    display: block;
    content: "";
    background-image: linear-gradient(90deg, rgba(26,44,121,0.7) 0%, rgba(232, 5, 103, 0.7) 100%);
    border-radius: 100%;
    opacity: 0;
    transition: 0.5s;
}
#teamMembers article>a:nth-of-type(1):hover::after{
    opacity: 0.5;
}
#teamMembers article>a:nth-of-type(1):hover img{
    scale: 112%;
}
#teamMembers article img{
    width: calc(100% - 20px);
    aspect-ratio: 1/1;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    position: absolute;
    transition: 0.5s;
    padding: 10px;
}
#teamMembers article b{
    color: var(--black);
}
#teamMembers article p:nth-of-type(1){
    margin: 5px 0px 0px;
    color: var(--themeBlueHover);
}
#teamMembers article div{
    margin: 15px 0px;
}
#teamMembers article div a{
    margin: 0px 5px;
    position: relative;
}
#teamMembers article svg{
    fill: var(--themeBlue);
    width: 18px;
}
#teamMembers div a span{
    position: absolute;
    width: fit-content;
    bottom: 100%;
    left: 0px;
    transform: translateX(calc(-50% + 9px));
    padding: 10px 15px;
    background-color: var(--themeBlue);
    border-radius: 5px;
    width: fit-content;
    display: none;
    white-space: nowrap;
    text-align: center;
    padding-bottom: 0px;
    color: var(--white);
    opacity: 0;
}
#teamMembers div a span::after{
    content: "";
    display: block;
    position: relative;
    top: 10px;
    margin: auto;
    width: 1px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--themeBlue) transparent transparent transparent;
}
#teamMembers div a:hover span{
    display: block;
    animation: 0.5s socialIconsTitles forwards;
}

/* clientsSlider */
#clientsSlider{
    padding: 60px 0px;
    background-color: var(--bgGray);
}
#clientsList{
    overflow: auto;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    height: 60px;
}
#clientsList::-webkit-scrollbar{
    display: none;
}
#clientsList span{
    position: relative;
    height: 50px;
    width: 100px;
    transition: 0.5s ease-in;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}
#clientsList span::after{
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 50px;
    width: 100px;
    background-color: var(--bgGray);
    opacity: 0.4;
    transition: 0.5s ease-in;
}
#clientsList img{
    height: 50px;
    width: 100px;
    object-fit: contain;
    object-position: center;
}
#clientsList span:hover{
    transform: scale(120%);
}
#clientsList span:hover::after{
    opacity: 0;
}
#clientsList span:nth-of-type(1), #clientsList span:nth-of-type(1)::after{
    padding-left: 22px;
}
#clientsList span:nth-last-of-type(1), #clientsList span:nth-last-of-type(1)::after{
    padding-right: 22px;
}

/* servicesList */
#servicesList{
    background-color: var(--bgGray);
    padding: 100px 0px;
}
#servicesList>div>div{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
#servicesList article{
    background-color: var(--white);
    box-shadow: 0px 0px 5px var(--boxShadow);
    border-radius: 7px;
    padding: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 300px;
    max-width: 500px;
    margin: 0px auto;
    transition: 0.5s;
}
#servicesList article:hover{
    box-shadow: 0px 5px 15px var(--boxShadow);
}
#servicesList article b{
    color: var(--black);
}
#servicesList article p:nth-of-type(2){
    margin: 8px 0px 10px;
}
#servicesList article a b{
    font-size: 14px;
    color: var(--gray);
    transition: 0.5s;
    padding: 5px 5px 5px 0px;
}
#servicesList article a:hover b{
    color: var(--themePinkHover);
}
#servicesList article a::after{
    content: '';
    display: inline-block;
    position: relative;
    transform: translateY(2px) translateX(-2px);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='transparent' stroke-width='2px' stroke='rgb(109, 109, 109)' width='14px' height='14px'%3e%3cpolyline points='4 3, 8 7, 4 11'%3e%3c/polyline%3e%3c/svg%3e");
    width: 14px;
    height: 14px;
    transition: 0.5s ease-out;
}
#servicesList svg{
    min-width: 44px;
    fill: var(--themePink);
    transition: 0.5s;
    animation: goTopAndBottom 3s infinite;
    transform: translateY(5px);
}
#servicesList article:hover svg{
    fill: var(--themePinkHover);
}
#servicesList article a:hover::after{
    transform: translateY(2px) translateX(5px);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='transparent' stroke-width='2px' stroke='rgb(204, 4, 90)' width='14px' height='14px'%3e%3cpolyline points='4 3, 8 7, 4 11'%3e%3c/polyline%3e%3c/svg%3e");
}
#servicesList article:nth-of-type(odd){
    transform: translateX(-300px);
    opacity: 0;
}
#servicesList article:nth-of-type(even){
    transform: translateX(300px);
    opacity: 0;
}










































/* responsive design */
@media screen and (min-width: 801px){
    header nav{
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    header nav a{
        font-size: 16px;
        padding: 10px;
        color: var(--whiteLowAlpha);
        transition: 0.4s;
    }
    header nav > a:hover{
        color: var(--white);
    }
    header nav span{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header nav span > a:nth-child(1){
        padding: 10px 4px 20px 10px;
        margin-top: 10px;
    }
    header nav span.socialAccounts > a:nth-child(1){
        padding: 10px 4px 10px 10px;
        margin-top: 0px;
    }
    header nav span > a:nth-child(2){
        padding: 10px 10px 10px 0px;
    }
    header nav svg{
        margin-top: 4px;
        transition: 0.4s;
    }
    header nav svg polyline{
        stroke: var(--whiteLowAlpha);
        stroke-width: 2px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: transparent;
    }
    header nav a:hover ~ div, nav a:focus ~ div{
        display: block;
    }
    header nav div{
        display: none;
        position: absolute;
        top: 50px;
        background-color: var(--white);
        width: 200px;
        box-shadow: 0px 5px 15px var(--boxShadow);
        border-radius: 5px;
    }
    header nav div:hover{
        display: block;
    }
    header nav div a{
        display: block;
        padding: 10px;
        color: var(--grayBlue);
        font-size: 15px;
    }
    header nav div a svg polyline{
        stroke: var(--grayBlue);
    }
    header nav .communities span:hover svg polyline, .communities span:hover > a{
        stroke: var(--darkBlue);
        color: var(--darkBlue);
    }
    header nav .communities span:hover{
        background-color: var(--lightGray);
    }
    header nav div a:nth-of-type(1){
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    header nav div a:nth-last-of-type(1){
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    header nav div > a:hover{
        color: var(--darkBlue);
        background-color: var(--lightGray);
    }
    @keyframes navBarPanels{
        0%{
            opacity: 0;
        }
        100%{
            opacity: 1;
        }
    }

    header nav div div{
        left: 200px;
    }
    header nav span.socialAccounts{
        justify-content: left;
    }
    header nav span.socialAccounts > a:nth-of-type(1){
        white-space: nowrap;
    }
    header nav span.socialAccounts > a:nth-of-type(2){
        width: 100%;
    }
    header nav span.socialAccounts > a:nth-of-type(2) svg{
        rotate: none;
    }
    header nav span.socialAccounts > a:nth-of-type(2):hover svg{
        rotate: 180deg;
    }
}
@media screen and (max-width: 1240px){
    .container{
        max-width: calc(100% - 20px);
    }
    #menuToggler{
        right: 0px;
    }
}
@media screen and (max-width: 670px) and (min-width: 540px){
    .container{
        max-width: 500px;
    }
    #menuToggler{
        right: calc(((100vw - 500px) / 2) - 10px);
    }
}
@media screen and (max-width: 850px) and (min-width: 670px){
    #servicesList article{
        display: block;
        min-width: 200px;
    }
    #servicesList article svg{
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 800px){
    h1{
        font-size: 44px;
        line-height: 50px;
    }
    header div div img{
        display: inline-block;
    }
    #menuToggler{
        display: flex;
    }
    header>div>div{
        background-color: var(--white);
        border-radius: 5px;
        position: absolute;
        display: none;
        padding: 20px;
        box-sizing: border-box;
        top: 10px;
        box-shadow: 0px 5px 15px var(--boxShadow);
        transition: 0.5s;
        opacity: 0;
        transform: translateY(20px);
    }
    header nav{
        display: block;
        padding-top: 10px;
    }
    header nav a{
        color: var(--themeBlue);
        transition: 0.5s;
    }
    header nav a:hover{
        color: var(--themeBlueHover);
    }
    header nav svg{
        transition: 0.5s;
    }
    header nav svg polyline{
        stroke: var(--themeBlue);
        stroke-width: 2px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: transparent;
    }
    header nav span:hover>a>svg{
        rotate: 180deg;
    }
    header nav span:hover>a>svg polyline{
        stroke: var(--themeBlueHover);
    }
    header nav>a, header nav span, header nav span div a{
        display: block;
        padding: 5px 0px;
        margin: 2px 0px;
    }
    header nav span div a{
        border-bottom: 1px solid var(--borderGray);
        font-size: 15px;
        display: block;
    }
    header nav>a:nth-last-of-type(1){
        padding: 5px 0px 0px;
        margin: 2px 0px 0px;
    }
    header nav span>a:nth-of-type(2){
        float: right;
        padding-left: 10px;
    }
    header nav span div{
        display: block;
        max-height: 0px;
        overflow: hidden;
        transition: 0.5s;
        padding-left: 25px;
    }
    header nav span:hover>div{
        max-height: 2000px;
    }
    header nav span.socialAccounts>a:nth-of-type(2){
        margin-top: -36px;
    }
}
@media screen and (max-width: 690px){
    #topContactList div a:nth-of-type(2){
        display: none;
    }
    #topContactList div{
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    #topContactList div a:nth-of-type(3){
        float: none;
    }
    #servicesList article{
        min-width: auto;
    }
}
@media screen and (max-width: 540px){
    h1{
        font-size: 38px;
        line-height: 42px;
    }
    h2{
        font-size: 28px;
    }
}
@media screen and (max-width: 400px){
    #headerSlider{
        min-height: 740px;
    }
    #headerSlider a{
        padding: 12px;
        width: 100px;
        margin-right: 15px;
    }
    #projectListContent a{
        min-width: 300px;
    }
    #topContactList div a:nth-of-type(1){
        display: none;
    }
    #contactNotice aside{
        min-width: 100%;
    }
    #featuresNotice article{
        min-width: 100px;
    }
    #ourExecutiveTeam article{
        min-width: unset;
    }
    #teamMembers article>a:nth-of-type(1), #teamMembers article>a:nth-of-type(1)::after{
        width: 160px;
    }
    #aboutCompany>div>div:nth-of-type(2){
        min-width: auto;
    }
    #alertBoxContainer div{
        max-width: 100%;
    }
}
@media screen and (max-width: 350px){
    h1{
        font-size: 34px;
        line-height: 38px;
    }
    #headerScroller{
        padding-top: 100px;
    }
    #headerSlider a{
        padding: 10px;
        width: fit-content;
        margin-right: 10px;
    }
}