/* --------------------------------------------------------
Style Sheet for www.rossirm.com
version: 1.0
author: Rossi RM
MIT license: https://opensource.org/licenses/MIT
email: rossirm@abv.bg
website: https://rossirm.com
----------------------------------------------------------*/
/*** FONTS ***/
@font-face {
    font-family: 'AvdiraRegular';
    src: url('../fonts/Avdira_R.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avdira';
    src: url('../fonts/Avdira_R.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Andantino script';
    src: url('../fonts/andantino.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*** ANIMATIONS ***/
@-webkit-keyframes swipe {
    from {
        -webkit-margin-right: 10px;
    }
    to {
        -webkit-margin-right: 0px;
    }
}
@keyframes swipe {
    from {
      -moz-margin-right: 10px;
      -ms-margin-right: 10px;
      margin-right: 10px;
    }
    to {
      -moz-margin-right: 0px;
      -ms-margin-right: 0px;
      margin-right: 0px;
    }
}
@-webkit-keyframes spin {
    from
    {
        -webkit-transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(-360deg);
    }
}
@keyframes spin {
    from {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to
    {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
@keyframes pulse1 {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 #000;
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 3px #000;
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 #000;
	}
}

/*** ANIMATIONS ***/
@keyframes slideBottom {
  	from {
  		margin-top: -5%;
  	}
}
@-webkit-keyframes businesscard {
    0% {background-image: url("../Pictures/visit1.svg");}
    25% {background-image: url("../Pictures/visit2.svg");}
    50% {background-image: url("../Pictures/visit3.svg");}
    100% {background-image: url("../Pictures/visit4.svg");}
}
@-ms-keyframes businesscard {
    0% {background-image: url("../Pictures/visit1.svg");}
    25% {background-image: url("../Pictures/visit2.svg");}
    50% {background-image: url("../Pictures/visit3.svg");}
    100% {background-image: url("../Pictures/visit4.svg");}
}
@-moz-keyframes businesscard {
    0% {background-image: url("../Pictures/visit1.svg");}
    25% {background-image: url("../Pictures/visit2.svg");}
    50% {background-image: url("../Pictures/visit3.svg");}
    100% {background-image: url("../Pictures/visit4.svg");}
}
@-o-keyframes businesscard {
    0% {background-image: url("../Pictures/visit1.svg");}
    25% {background-image: url("../Pictures/visit2.svg");}
    50% {background-image: url("../Pictures/visit3.svg");}
    100% {background-image: url("../Pictures/visit4.svg");}
}
keyframes businesscard {
    0% {background-image: url("../Pictures/visit1.svg");}
    25% {background-image: url("../Pictures/visit2.svg");}
    50% {background-image: url("../Pictures/visit3.svg");}
    100% {background-image: url("../Pictures/visit4.svg");}
}
@-webkit-keyframes slideshow {
    0% {background-image: url("../Pictures/layer.jpg");}
    50% {background-image: url("../Pictures/tech.png");}
    100% {background-image: url("../Pictures/tech.png");}
}
@-ms-keyframes slideshow {
    0% {background-image: url("../Pictures/layer.jpg");}
    50% {background-image: url("../Pictures/tech.png");}
    100% {background-image: url("../Pictures/tech.png");}
}
@-moz-keyframes slideshow {
    0% {background-image: url("../Pictures/layer.jpg");}
    50% {background-image: url("../Pictures/tech.png");}
    100% {background-image: url("../Pictures/tech.png");}
}
@-o-keyframes slideshow {
    0% {background-image: url("../Pictures/layer.jpg");}
    50% {background-image: url("../Pictures/tech.png");}
    100% {background-image: url("../Pictures/tech.png");}
}
@keyframes slideshow {
    0% {background-image: url("../Pictures/layer.jpg");}
    50% {background-image: url("../Pictures/tech.png");}
    100% {background-image: url("../Pictures/tech.png");}
}
::-webkit-scrollbar {
  width: 9px;
}
/* Track */
::-webkit-scrollbar-track {
  background: white;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4886b9;
}
/*** CUSTOM CSS DARK MODE VARIABLES ***/
:root {
    --bg-color: white;
    --text-color: black;
    --info-color: white;
    --header-color: white;
    --bar-color: black;
    --mode-color: #000;
    --flip-color: white;
    --link-color:rgba(0,0,0,0.8);
    --border-color: black;
    --border-hover: #4886b9;
    --border: #000;
    --transparent: black;
}
/*** dark mode ***/
.dark-mode {
    --bg-color: black;
    --text-color: white;
    --info-color: white;
    --header-color: black;
    --bar-color: #000;
    --mode-color: black;
    --flip-color: black;
    --link-color: transparent;
    --border-color: transparent;
    --border-hover: transparent;
    --border: white;
    --transparent: transparent;
}
::selection {
  	background: #000;
  	color: white;
}
/*** MAIN HTML ELEMENTS ***/
* {
    box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
    scroll-behavior: auto;
}
body {
    font-family: "AvdiraRegular", normal, sans-serif;
    font-size: 1.1em;
    padding-top: 9px;
    padding-bottom: 0;
    margin: 0;
    background: #000;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    /*
    -moz-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    -ms-user-select:none;
    user-select:none;
    cursor: default; */
}
p {
    color: black;
    color: var(--text-color);
}
small {
    color: #4886b9;
    font-family: sans-serif;
    font-size: 7px;
    cursor: pointer;
}
a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #4886b9;
}
strong a {
    color: black;
    color: var(--text-color);
    text-decoration: none;
}
strong a:link {
    color: var(--text-color);
}
strong a:hover {
    color: #4886b9;
}
h1, h2 {
    font-size: 2vw;
}
h1, h2, h3, h4, h5 {
    color: #000;
    text-align: center;
    padding: 18px 0 18px 0;
    margin: 0 0 10px 0;
}
h6 {
    color: black;
    text-align: center;
    padding: 0;
    margin: 0 0 10px 0;
}
h3, h4 {
    color: black;
    color: var(--bar-color);
    margin: 0;
    text-align: center;
    text-overflow: ellipsis;
}
a h3:hover, a h4:hover {
    color: #4886b9;
    color: var(--mode-color);
}
h1 span, h2 span, h4 span, h5 span, h6 span {
    border: 4px dashed black;
    border-style: solid none solid none;
    border-radius: 10px;
    padding: 5px;
}
section#particles-js h2 span {
    color: white;
    border: 4px dashed #000;
    border-style: solid none solid none;
    border-radius: 10px;
    padding: 5px;
}
/*** PAGE SCROLLER ***/
.scroller {
  position: fixed;
  top: 0;
  z-index: 30;
  width: 100%;
  background-color: black;
}
.progressing-container {
  width: 100%;
  height: 8px;
  background: #000;
}
.progressing-bar {
  height: 8px;
  background: #4886b9;
  border-radius: 0 10px 10px 0;
  width: 0%;
}
/*** HEADER ***/
#header_area {
    background: url("../Pictures/layer.jpg") #4886b9;
    opacity: 0.9;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
    border-radius: 10% 0;
    /*   filter: grayscale(100%);   */
}
.free_area {
    background: #000;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    margin-top: -1px;
    height: 400px;
}
header div img {
    width: 2em;
    height: 2em;
    border-radius: 5px;
}
/*** THEME SWITCH ***/
div#theme-switch::before, img#theme-switch {
    cursor: pointer;
    background-color: var(--flip-color);
    box-shadow: 1px 1px 5px var(--mode-color);
    border-radius: 30%;
}
/*** TITLE ***/
#title {
    padding: 0.2em;
    padding-top: 0.1em;
    font-family: 'Andantino script';
    font-size: 46px;
    font-weight: lighter;
    margin: 0 130px;
    text-align: right;
    text-shadow: 2px 2px #000;
}
#title a:hover {
    color: white;
    text-shadow: 2px 2px #4886b9;
}
/******** NAVIGATION BAR *********/
nav {
    position: relative;
    z-index: 1;
    margin-top: -10px;
    background-color: white;
  	background-color: var(--header-color);
}
nav ul {
    margin: auto;
    text-align: right;
    padding: 10px;
    padding-top: 15px;
    box-shadow: 0px 0px 10px #000;
    z-index: 3;
}
nav ul li {
    display: inline-block;
}
nav ul li a {
  	display: inline-block;
    background-color: #000;
    background-color: var(--mode-color);
    border-radius: 5px;
  	height: 35px;
  	padding: 0 15px;
  	line-height: 35px;
    /*** margin-bottom: 1px; ***/
    color: white;
  	color: var(--info-color);
}
nav ul li a:hover {
  	border-bottom: 3px solid #000;
    border-color: var(--border);
    opacity: 1;
    background-color: var(--bar-color);
    background-color: #4886b9;
    color: white;
}
/******* STICKY HEADER *******/
.sticky-header {
    z-index: 2;
    padding-top: 8px;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 1);
}
/*** MOBILE HEADER ***/
#header {
    position: fixed;
    top: 0.45em;
    color: white;
    background-color: #000;
    height: 3em;
    width: 100%;
    opacity: 1;
    z-index: 3;
    box-shadow: 0px 0px 7px #000;
}
.mobile_logo {
    position: absolute;
    top: 3.3px;
    left: 0.5em;
    width: 3.1em;
    height: 3.1em;
    z-index: 1;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 5px 7px #000;
}
.mobile_logo:hover {
    box-shadow: 0px 5px 7px #4886b9;
}
.title {
    position: absolute;
    top: 0.8em;
    right: 0; /*** 2.2rem ***/
    width: 15em;
    height: 1.5em;
    z-index: 1;
}
/*** BARS ***/
.mobile-open {
    position: absolute;
    font-size: 1.7em;
    top: 0.3em;
    right: 1rem;
    z-index: 2;
}
.mobile-close {
    position: absolute;
    font-size: 1.7em;
    top: 0.3em;
    right: 1rem;
    z-index: 4;
}
#open {
    display: block;
    cursor: pointer;
    z-index: 4;
    color: white;
}
#open:hover {
    color: #4886b9;
}
#close {
    display: none;
    cursor: pointer;
    z-index: 4;
}
#close:hover {
    color: #4886b9;
}
#header-nav {
    display: none;
    position: fixed;
    font-weight: bold;
    background-color: rgba(0,0,0,0.85);
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: auto;
    z-index: 3;
}
#header-nav ul {
    position: relative;
    top: 30%;
    padding: 0;
    list-style-type: none;
}
#header-nav ul li {
    margin: 1rem;
}
#header-nav ul li a {
    color: white;
}
#header-nav ul li a:hover {
    color: #4886b9;
}
/*** COVER PHOTO ***/
/*
    -webkit-animation: slideshow 10s ease-in .1s infinite alternate;
    -moz-animation: slideshow 10s ease-in .1s infinite alternate;
    -ms-animation: slideshow 10s ease-in .1s infinite alternate;
    -o-animation: slideshow 10s ease-in .1s infinite alternate;
    animation: slideshow 10s ease-in .1s infinite alternate;
*/
/*** SECTIONS ***/
section {
    background-color: white;
    background-color: var(--bg-color);
    padding: 2%;
    padding: 1%;
    margin-bottom: 1px;
}
.oval {
    border-radius: 0 0 0 70px;
}
.notoval {
    border-radius: 70px 0 0 70px;
}
.ovalnot {
    border-radius: 70px 0 0 0;
}
.rightoval {
    border-radius: 0 0 70px 0;
}
section ul {
    padding-left: 20px;
    list-style-type: circle;
}
/*** PROJECTS ***/
.overflow {
    overflow: hidden;
}
.projects span {
    cursor: pointer;
    color: #000;
    border: 4px dashed black;
    border-style: solid none solid none;
    border-radius: 10px;
}
.projects span:hover {
    color: #4886b9;
    color: var(--text-color);
}
.greyscale:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform 0.4s;
    cursor: pointer;
}
/*** ILLUSTRATIONS ***/
.img1 {
    width: 20%;
    height: 20%;
    float: right;
}
.img3 {
    width: 30%;
    height: 30%;
    float: right;
}
.img2 {
    width: 170px;
    height: 170px;
    float: left;
}
/*** BOOK ***/
#quote {
    color: #000;
    font-size: 12pt;
    text-align: right;
    margin-top: 10px;
}
/*** SWIPE ***/
#special {
    color: #4886b9;
    font-size: 9pt;
    text-align: right;
    padding-right: 30px;
}
#special img {
    -webkit-animation: swipe 1.7s infinite;
    animation: swipe 1.7s infinite;
    animation-timing-function: steps(2);
    width: 5%;
}
#studio {
    text-align: right;
    padding-right: 30px;
}
/*** SKILLS ***/
.progress-bar {
    padding: 0.01em 16px;
    margin: -15px 0 -10px 0;
}
.bar {
    color: #000;
    background-color: #ccc;
    border-radius: 5px;
}
.progress-content {
    color: #fff;
    background-color: black;
    background-color: #000;
}
/*** LEFT SIDE ***/
.left-side {
    width: 48.99%;
    padding: 0;
    display: inline-block;
    border: none;
    margin-bottom: 10px;
}
.left-side:hover {
    border: none;
}
/*** RIGHT SIDE ***/
.right-side {
    width: 48%;
    padding: 0;
    display: inline-block;
    margin-left: 15px;
    margin-right: 0;
    vertical-align: top;
    border: none;
}
.right-side:hover {
    border: none;
}
.youtube {
    padding-top: 30px;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/*** PUBLICATIONS
ul.unordered-list {
    #list-style-type: disc;
    list-style: none;
    padding-left: 0;
}
ul.unordered-list a, rt {
    color: black;
    color: var(--text-color);
    text-decoration: none;
}
ul.unordered-list a:hover {
    color: #000;
}
ul.unordered-list li {
    padding-bottom: 7px;
}
ul.unordered-list li:before {
    content: '';
    display: inline-block;
    height: 1em;
    width: 1em;
    background-image: url('../Pictures/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 0;
} */

/*** ACCORDION ***/
#item {
    background-color: #000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    text-align: center;
}
#item:hover, #item:focus {
    background-color: #4886b9;
}
.accordion {
    overflow: visible;
    width: 100%;
    position: relative;
    z-index: 1;
}
#submenu {
    display: none;
    overflow: hidden;
    background-color: white;
    background-color: var(--bg-color);
    border-radius: 0 0 5px 5px;
    min-width: 100%;
}
#submenu p {
    padding: 15px;
    color: black;
    color: var(--text-color);
}
/*** LOCATION ***/
#map {
    width: 100%;
    height: 20em;
    background-color: grey;

/*
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    */
}
/*
#map:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}
*/
/*** bottom BUTTONS ***/
a .fas {
    color: white;
}
.fas.fa-cloud-download-alt, .fas.fa-link {
    color: #000;
}
.btn {
    position: fixed;
    bottom: 2%;
    right: 10px;
    background-color: rgba(0,0,0,0.8);
    border-style: solid;
    border-width: 1px;
    border-color: white;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    opacity: 1;
    z-index: 2;
}
.btn:hover {
    opacity: 0.8;
    background-color: #4886b9;
}
.phone {
    position: fixed;
    bottom: 2%;
    right: 59px;
    background-color: rgba(72,134,185,0.95);
    border-style: solid;
    border-width: 1px;
    border-color: white;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    opacity: 1;
    z-index: 2;
}
.phone:hover {
    background-color: #4886b9;
    color: white;
    opacity: 1;
}
/*** COPYRIGHT ***/
#copyright {
    font-family: sans-serif;
    font-size: 9pt;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: black;
}
#copyright b {
    color: #615221; /* rgba(97, 82, 33, 255);*/
}

.card {
    width: 100%;
    height: auto;
    text-align: center;
}
.card img {
    width: 30%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}
.card a {
    text-decoration: none;
    font-size: 22px;
    color: white;
}
.card a:hover {
    color: #4886b9;
}
.card i {
    font-size: 1.1em;
    margin-right: 0px;
}
.overflow .fa {
    color: #000;
}
.overflow .fa:hover {
  color: #4886b9;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  transition: transform 0.4s;
}
/*** MODAL BOXES ***/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3; /* Sit on top */
  padding-top: 3%; /* Location of the box */
  padding-bottom: 1%;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Fallback color */
}
/* Modal Content */
.modal p {
  color: black;
}
.modal-content {
  background-color: white;
  margin: auto;
  margin-bottom: 5%;
  padding: 10px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  width: 90%;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
}
.modal-content img {
  width: 40%;
  margin: 2%;
}
/* The Close Button */
.modal-close {
  color: #000;
  float: right;
  font-size: 34px;
  font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
  color: #4886b9;
  text-decoration: none;
  cursor: pointer;
}
/*** FOOTER ***/
footer {
    position: fixed;
    bottom: 0px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-style: solid double solid double;
    border-width: 1px;
    border-color: #000;
    padding: 9.5px;
    padding-bottom: 6px;
    bottom: 2%;
    border-radius: 5px;
    left: 10px;
    z-index: 2;
}
footer:hover {
    border-style: solid double solid double;
    border-color: #4886b9;
}
footer img {
    height: 20px;
    width: 20px;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 50%;
    border-color: #000;
    border-style: solid double solid double;
    border: none;

    -moz-filter: grayscale(40%);
    -o-filter: grayscale(40%);
    -ms-filter: grayscale(40%);
    -webkit-filter: grayscale(40%);
    filter: grayscale(40%);
}
footer img:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: #4886b9;

    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: grayscale(0%);
}
footer a {
    text-decoration: none;
}
#footer {
    bottom: 0;
    width: 100%;
    background-color: #fff;
    opacity: 0.95;
    padding: 7%;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 0;
}
.services {
    padding-right: 0;
    padding-left: 0;
    margin-top: -1px;
    padding-bottom: 0;
    background-color: black;
    background-color: var(--bg-color);
}
.services h2 {
    text-align: right;
}
.my-video {
    display: inline-block;
    cursor: pointer;
    width: 47%;
    border-radius: 0 10% 0 10%;
    border-style: none;
    margin-left: 10px;
    box-shadow: 1px 0px 9px grey;
    color: green;
    opacity: 0.9;
}
.fb-page {
    position: relative;
    top: -15px;
    left: 50px;
    width: 100%;
    text-align: left;
    padding-bottom: 50px;
}
#particles-js {
  width: 100%;
  height: 400px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background-color: black;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#loader{
  width: 100%;
  height: 100%;
  background: white;
  top: 0px;
  opacity: 0.99;
  position: fixed;
  z-index: 10000;
  background: linear-gradient(rgba(72,134,185, 0.97), rgba(255,255,255,0.97), rgba(255,255,255,0.97), rgba(255,255,255,0.97));
}
.loader {
  position: absolute;
  margin: 0 auto;
  left: 1%;
  right: 1%;
  top: 40%;
  width: 70px;
  background: center center no-repeat none;
  background-size: auto auto;
  background-size: 95px 95px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.deco {
  background: url("../Pictures/cover.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  border-style: none;
  z-index: 1;
  width: 100%;
  height: 330px;
  margin: 0;
  margin-top: -1px;
  text-align: center;
}
.fas.fa-chevron-left {
  color: white;
  opacity: 0.3;
  font-size: 5em;
  left: 0;
  top: 40px;
}
.fas.fa-chevron-right {
  color: white;
  opacity: 0.3;
  font-size: 5em;
  right: 5px;
  top: 40px;
}
.junior_logo {
  position: absolute;
  top: 0.55em;
  left: 1em;
  width: 3.6em;
  height: 3.6em;
  z-index: 3;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 2px 7px #000;
}
.junior_logo:hover {
  box-shadow: 0px 0px 7px #4886b9;
}
/*** MARQUE TEXT ***/
.marq {
  padding: 5px;
  padding-top: 12px;
}
marquee {
  color: #000;
  font-weight: 600;
}
marquee a {
  color: #000;
}
marquee a:hover {
  color: #4886b9;
}
.business {
    background: url("../Pictures/visit2.svg") transparent;
    background-size: 100% 100%;
    -webkit-animation: businesscard 10s infinite alternate;
    -moz-animation: businesscard 10s infinite alternate;
    -ms-animation: businesscard 10s infinite alternate;
    -o-animation: businesscard 10s infinite alternate;
    animation: businesscard 10s infinite alternate;
}
.studio {
    text-align: center;
    background: rgba(0,0,0,0.5); /*rgb(72,134,185,0.7);*/
    width: 100%;
    height: 200px;
    color: white;
    position: absolute;
    margin-top: 20px;
    padding: 3%;

    display: table-cell;
    vertical-align: middle;
}
.studio img {
    width: 50%;
    text-align: center;
    cursor: help;
}
.studio img:hover {
    transform: scale(1.1);
}
.studio div {
    float: left;
    width: 16.66%;
    padding: 7px;
    display: inline-block;
}
.logo_height {
    background-size: 100% 100%;
    display: block;
    width: 24em;
    height: 24em;
    margin: auto;
    z-index: 1;
}
.technology {
    text-align: center;
}
.technology img {
    width: 50%;
    filter: grayscale(100%);
}
.technology img:hover {
  filter: grayscale(0%);
}
.junior_logo, .mobile_logo {
    -webkit-animation-name: spin;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-name: spin;
    animation-timing-function:ease;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*----OWL CAROUSEL---*/
.clients {
  padding-top: 20px;
}
.clients img {
  cursor: pointer;
}
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 45px;
  cursor: ew-resize;
}
.clients .owl-item img {
  width: 100%;
}
.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: grey !important;
}
.clients .owl-dot.active {
  background-color: #000 !important;
}
@media screen and (max-width: 1400px) {
  .logo_height {
      width: 17em;
      height: 17em;
  }
}
@media screen and (min-width: 1000px) {
    .logo {
        background: url("../Pictures/logo.png") #EE4266; /*#000; */
        background-size: 100% 100%;
        border-radius: 50%;
        width: 5em;
        height: 5em;
        margin: auto;
        z-index: 1;
        box-shadow: -2px -3px 20px white;
        /*4078A6*/

        transform: scale(1);
    	  animation: pulse 3s infinite;
    }
    .logo:hover {
        background-image: url("../Pictures/logo2.png");
        background-size: 100% 100%;
        box-shadow: -2px -3px 20px #4886b9;
        cursor: pointer;
    }
    #header {
        display: none;
    }
    #language_bar {
        top: 18px;
    }
    .services {
        padding-left: 10%;
        padding-right: 10%;
    }
    #loader {
      display: none;
    }
}
/****** MOBILE SCREEN *******/
@media screen and (max-width: 1100px) {
    .logo_height {
      width: 14em;
      height: 14em;
    }
    .junior_logo {
      left: 0.5em;
    }
    .studio {
        height: 180px;
    }
}
@media screen and (max-width: 1000px) {
    body {
      background: #000;
      padding-bottom: 0;
    }
    .free_area {
      background: url("../Pictures/studioX.png") #000;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-attachment: fixed;
    }
    section {
      padding: 6%;
      padding-top: 3%;
    }
    .card img {
      width: 50%;
      height: auto;
    }
    .card i {
      margin-right: 3px;
    }
    .deco {
      height: 230px;
    }
    .studio {
      height: 400px;
    }
    #particles-js {
      height: 600px;
    }
    .studio div {
      width: 33.33%;
    }

    .logo_height {
      width: 15em;
      height: 15em;
    }
    #header {
      display: none;
    }
}
@media screen and (max-width: 999px) {
    body {
      margin-top: 2em;
    }
    #header {
      display: block;
    }
    nav, #title {
      display: none;
    }
    #header_area {
      margin-top: 1%;
      background-attachment: scroll;
    }
    .logo_height {
      width: 17em;
      height: 17em;
    }
    #can {
      display: none;
    }
}
@media screen and (max-width: 950px) {
    .logo_height {
        width: 16em;
        height: 16em;
    }
}
@media screen and (max-width: 900px) {
    .logo_height {
        width: 15em;
        height: 15em;
    }
}
@media screen and (max-width: 800px) {
    #header_area {
      margin-top: 2%;
    }
    .logo_height {
        width: 14em;
        height: 14em;
    }
    h1, h2 {
      font-size: 4vw;
    }
    .left-side {
      width: 100%;
      display: block;
    }
    .right-side {
      width: 100%;
      display: block;
      margin-left: 0;
    }
    .right-side p:first-child {
      margin-top: 5px;
    }
    .deco {
      height: 200px;
    }
    .studio {
      height: 330px;
    }
}
@media screen and (max-width: 750px) {
    .logo_height {
        width: 13em;
        height: 13em;
    }
}
@media screen and (max-width: 670px) {
    .logo_height {
        width: 11em;
        height: 11em;
    }
    .studio {
      height: 280px;
    }
}
@media screen and (max-width: 600px) {
    .logo_height {
        width: 10em;
        height: 10em;
    }
    .my-video {
        display: inline-block;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
    .fb-page {
        top: -5px;
        left: 10px;
        width: 100%;
        text-align: center;
        top: 10px;
        padding-bottom: 50px;
    }
    .free_area {
        background-size: 100%;
        height: 200px;
    }
    h2 {
      font-size: 6.5vw;
    }
    .card img {
      width: 100%;
      height: auto;
    }
    .img1, .img3 {
      width: 40%;
      height: 40%;
      float: right;
    }
    .modal-content img {
      width: 100%;
      margin: 0;
    }
    #footer {
      padding: 25%;
      padding-top: 10%;
    }
    .phone {
      border-radius: 50%;
    }
    .phone span {
      display: none;
    }
    .modal-content {
      margin-bottom: 20%;
    }
    .loader {
      top: 45%;
      width: 70px;
    }
    .deco {
      height: 150px;
    }
    .studio div {
      width: 49.99%;
    }
    #particles-js {
      height: 700px;
    }
    .studio {
      height: 500px;
    }
}
@media screen and (max-width: 550px) {
    .logo_height {
        width: 9em;
        height: 9em;
    }
}
@media screen and (max-width: 500px) {
    #header_area {
      margin-top: 5%;
    }
    .logo_height {
        width: 8em;
        height: 8em;
    }
    .studio {
      padding-top: 10%;
      height: 400px;
    }
}
@media screen and (max-width: 450px) {
    .logo_height {
        width: 7em;
        height: 7em;
    }
}
@media screen and (max-width: 400px) {
    .logo_height {
        width: 6em;
        height: 6em;
    }
    .deco, .deco2 {
      height: 100px;
    }
    .studio {
      height: 400px;
    }
    #particles-js {
      height: 550px;
    }
}
@media screen and (max-width: 330px) {
  .logo_height {
      width: 5em;
      height: 5em;
  }
  .free_area {
      display: none;
  }
  .title {
      display: none;
  }
  #copyright {
      font-size: 8pt;
  }
  .studio div {
    width: 100%;
  }
  .studio {
    height: 1000px;
  }
  #particles-js {
    height: 1150px;
  }
}
@media screen and (max-width: 310px) {
    #header_area {
        display: none;
    }
    .card {
      display: none;
    }
}
@media screen and (max-width: 280px) {
    footer {
      display: none;
    }
    .img2 {
      display: none;
    }
    .deco {
      height: 50px;
    }
    .studio {
      height: 900px;
    }
    #particles-js {
      height: 1050px;
    }
}
@media screen and (max-width: 200px) {
    .studio {
      display: none;
    }
    #particles-js {
      height: 300px;
    }
}
@media screen and (max-width: 150px) {
    .deco {
      display: none;
    }
}
@media screen and (max-width: 120px) {
    .mobile_logo {
      display: none;
    }
}


.social-icons a {
  text-decoration: none;
  color: #333; /* Основен цвят */
  font-size: 7vw; /* Размер на иконите */
  margin: 3px;
  transition: 0.3s;
}

/* Пример за цвят при посочване (hover)
.social-icons a:hover {
  color: #007bff;
}
*/

/* Специфични цветове по избор */
.fa-youtube { color: #FF0000; }
.fa-facebook-square { color: #1877F2; }
.fa-instagram { color: #E4405F; }
.fa-spotify { color: #1DB954; }

#footer {
    padding: 40px 0;
}

@media (min-width: 750px) {
  .social-icons a {
    font-size: 50px; /* Размер на иконите */
  }
}



.logo-slider {
  overflow: hidden; /* Скрива всичко извън контейнера */
  padding: 20px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.scroll-track {
  display: inline-block;
  animation: scroll 20s linear infinite; /* 20s е скоростта */
}

.scroll-track img {
  /* Ползваме clamp за размера на логата */
  height: clamp(40px, 2vw, 80px);
  margin: 0 30px; /* Разстояние между логата */
  vertical-align: middle;
  filter: grayscale(100%);
}
.scroll-track img:hover {
  filter: grayscale(0%);
}
/* Анимацията */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* Мести се до средата (заради дублираните лога) */
}

/* Спира на пауза при посочване с мишката (опционално) */
.logo-slider:hover .scroll-track {
  animation-play-state: paused;
}
