@charset "UTF-8";
/* ITEAMO.NET <<< ========================================================================== */
html, .iteamo * {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  border: 0px none;
  box-sizing: border-box;
  vertical-align: inherit;
  text-rendering: optimizeLegibility; /* optimizeSpeed  optimizeLegibility */
  -webkit-font-smoothing: subpixel-antialiased; /* antialiased none */
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  max-height: 9999px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.iteamo *::before, .iteamo *::after {
  box-sizing: border-box;
}

.iteamo table {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}

/* >>> ITEAMO.NET ========================================================================== */
[float=left] {
  float: left;
}

[float=right] {
  float: right;
}

[clear] {
  clear: both;
}

br[clear] {
  display: block !important;
  line-height: 0px;
  height: 0px;
}

b {
  font-weight: bold !important;
}

.iteamo .contacts a.mail:after {
  text-decoration: underline;
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
  cursor: pointer;
}
.iteamo .contacts a.mail:hover:after {
  text-decoration: none;
}

.iteamo .contacts a.phone:after, .iteamo .contacts a.map:after {
  text-decoration: underline;
  content: attr(data-start) "" attr(data-middle) "" attr(data-end);
  cursor: pointer;
}
.iteamo .contacts a.phone:hover:after, .iteamo .contacts a.map:hover:after {
  text-decoration: none;
}

.iteamo .contacts a.map:before {
  background-image: url("/iteamo/public/images/icons/contacts/map2.png");
}

.iteamo .contacts a.mail:before {
  background-image: url("/iteamo/public/images/icons/contacts/mail.png");
}

.iteamo .contacts a.phone:before {
  background-image: url("/iteamo/public/images/icons/contacts/phone.png");
}

.iteamo .contacts a.skype:before {
  background-image: url("/iteamo/public/images/icons/contacts/skype.png");
}

.iteamo .contacts a.telegram:before {
  background-image: url("/iteamo/public/images/icons/contacts/telegram.png");
}

.iteamo #layout > header .languageSelector [lang=russian][lang]:before {
  background-image: url("/iteamo/public/images/icons/languages/russian.png");
}
.iteamo #layout > header .languageSelector [lang=english][lang]:before {
  background-image: url("/iteamo/public/images/icons/languages/english.png");
}
.iteamo #layout > header .languageSelector [lang=spanish][lang]:before {
  background-image: url("/iteamo/public/images/icons/languages/spanish.png");
}
.iteamo #layout > header .languageSelector [lang=turkish][lang]:before {
  background-image: url("/iteamo/public/images/icons/languages/turkish.png");
}

.iteamo .contacts a.link:before {
  background-image: url("/iteamo/public/images/icons/sites/external.png");
}

.iteamo a {
  text-decoration: underline;
  color: #1a3a74;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.iteamo a[active], .iteamo a:hover {
  text-decoration: none;
  color: #3d6da6;
}
.iteamo p {
  vertical-align: baseline;
}
.iteamo a[href^="#"] {
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
}

html {
  width: 100%;
  min-height: 100%;
  overflow: auto;
  font-size: 16px;
  line-height: 25px;
  vertical-align: top;
  font-family: arial;
  color: #444444;
  background: url(/projects/iteamo/index/public/images/bg/clouds.png) 0px 0% repeat;
  animation: background 30s forwards;
  animation-timing-function: ease-out;
}
@keyframes background {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 300px 0%;
  }
}

.iteamo {
  /*
  #test {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 100%;
    min-height: 100%; 
    background: red;
    z-index: 100000;
  }
  // **/
}
.iteamo body {
  overflow-x: hidden;
  width: 100%;
  min-width: 380px;
}
.iteamo body > #layout {
  display: flex;
  flex-direction: column;
  padding: 0px 8px;
  margin: 0px auto;
  min-height: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  width: 1000px;
}
@media (max-width: 1000px) {
  .iteamo body > #layout {
    width: 100%;
  }
}
.iteamo #layout > header {
  padding: 10px 0px;
  width: 100%;
  display: grid;
  place-items: left;
  column-gap: 10px;
  row-gap: 10px;
  grid-template-columns: auto 1FR;
  justify-content: space-between;
  align-content: start;
  justify-items: stretch;
  align-items: center;
  grid-template-areas: "LOGO LANG" "LOGO MENU" "LOGO CONTACTS";
}
@media (max-width: 780px) {
  .iteamo #layout > header {
    column-gap: 0px;
    grid-template-areas: "LOGO LANG" "LOGO CONTACTS" "MENU MENU";
  }
}
@media (max-width: 550px) {
  .iteamo #layout > header {
    grid-template-areas: "LOGO LANG" "CONTACTS CONTACTS" "MENU MENU";
  }
}
.iteamo #layout > header #logo {
  grid-area: LOGO;
  justify-self: start;
  align-self: start;
  text-decoration: none;
  display: flex !important;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  height: 120px;
}
.iteamo #layout > header #logo > * {
  height: 100%;
  flex-grow: 0;
}
.iteamo #layout > header #logo img {
  height: 100%;
  display: block;
  animation: logo 2s;
}
@keyframes logo {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(120%);
  }
  100% {
    filter: brightness(100%);
  }
}
.iteamo #layout > header #logo img:hover {
  filter: brightness(110%);
}
.iteamo #layout > header .menu {
  grid-area: MENU;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  column-gap: 30px;
  row-gap: 15px;
  margin: 0px 0px;
  margin-left: 30px;
  list-style-type: none;
  font-size: 1.8rem;
}
@media (max-width: 1000px) {
  .iteamo #layout > header .menu {
    column-gap: 0px;
    margin-left: 0px;
  }
}
@media (max-width: 550px) {
  .iteamo #layout > header .menu {
    font-size: 1.5rem;
  }
}
.iteamo #layout > header .menu li a {
  display: block;
  padding: 5px 8px;
}
.iteamo #layout > header .menu li a[active], .iteamo #layout > header .menu li a:hover {
  background: rgba(187, 209, 220, 0.6);
}
.iteamo #layout > header .contacts {
  grid-area: CONTACTS;
  justify-self: end;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
  column-gap: 15px;
  row-gap: 5px;
  width: 100%;
}
@media (max-width: 550px) {
  .iteamo #layout > header .contacts {
    column-gap: 10px;
    justify-content: space-between;
    font-size: 1rem;
  }
}
.iteamo #layout > header .languageSelector {
  grid-area: LANG;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: right;
  column-gap: 10px;
  row-gap: 2px;
}
.iteamo #layout > header .languageSelector [lang] {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  font-size: 1.2rem;
  padding: 2px 3px;
}
.iteamo #layout > header .languageSelector [lang]:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 550px) {
  .iteamo #layout > header .languageSelector [lang] {
    font-size: 1rem;
  }
}
.iteamo #layout > header .languageSelector [lang][active] {
  text-decoration: none;
  background: rgba(187, 209, 220, 0.6);
}
.iteamo .breadCrumbs {
  margin-left: -100%;
  margin-right: -100%;
  padding-left: 100%;
  padding-right: 100%;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.2) inset;
  z-index: 10000;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 30px;
  font-size: 1.2rem;
  background: #1a3a74;
  color: #bbd1dc;
  overflow: hidden;
  margin-bottom: 10px;
}
.iteamo .breadCrumbs * {
  display: inline;
  vertical-align: baseline;
  color: #bbd1dc;
  font-size: 1.2rem;
}
.iteamo .breadCrumbs h1 {
  font-size: 1.5rem;
}
.iteamo .breadCrumbs dd {
  font-size: 1rem;
  float: right;
}
.iteamo .breadCrumbs dd * {
  font-size: 1rem;
}
.iteamo .breadCrumbs[count="1"] {
  text-align: center;
}
.iteamo .breadCrumbs a.home {
  text-decoration: none;
  color: white;
}
.iteamo .breadCrumbs a.home:before {
  content: "⌂";
  font-size: 2rem;
  line-height: 20px;
}
.iteamo .breadCrumbs a.home:hover:before {
  color: #65a8dd;
}
.iteamo main {
  flex-grow: 1;
}
.iteamo footer {
  margin-left: -100%;
  margin-right: -100%;
  padding-left: 100%;
  padding-right: 100%;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.2) inset;
  z-index: 10000;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 30px;
  font-size: 1.2rem;
  background: #1a3a74;
  color: #bbd1dc;
  flex-shrink: 0;
  text-align: center;
}
.iteamo footer * {
  display: inline;
  vertical-align: baseline;
  color: #bbd1dc;
  font-size: 1.2rem;
}
.iteamo footer h1 {
  font-size: 1.5rem;
}
.iteamo footer dd {
  font-size: 1rem;
  float: right;
}
.iteamo footer dd * {
  font-size: 1rem;
}
@media (max-width: 550px) {
  .iteamo footer {
    font-size: 1rem;
    line-height: 25px;
  }
  .iteamo footer * {
    font-size: 1rem;
  }
}
.iteamo .contacts a {
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}
.iteamo .contacts a.mail {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.mail:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.mail:after {
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}
.iteamo .contacts a.telegram {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.telegram:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.skype {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.skype:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.link {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.link:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.phone {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.phone:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.phone:after {
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}
.iteamo .contacts a.map {
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.iteamo .contacts a.map:before {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  content: " ";
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.iteamo .contacts a.map:after {
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

.iteamo {
  /*
  #test {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 100%;
    min-height: 100%; 
    background: red;
    z-index: 100000;
  }
  // **/
}
@media (max-width: 880px) {
  .iteamo #layout > header {
    grid-template-areas: "LOGO LANG" "LOGO CONTACTS" "MENU MENU";
  }
}
@media (max-width: 780px) {
  .iteamo #layout > header {
    column-gap: 0px;
    grid-template-areas: "LOGO LANG" "CONTACTS CONTACTS" "MENU MENU";
  }
  .iteamo #layout > header .contacts {
    justify-content: space-between;
  }
}
@media (max-width: 550px) {
  .iteamo #layout > header {
    grid-template-columns: 1FR;
    grid-template-areas: "LANG" "LOGO" "CONTACTS" "MENU";
  }
  .iteamo #layout > header #logo {
    width: 100% !important;
    max-width: 100% !important;
    height: 115px;
  }
  .iteamo #layout > header .languageSelector {
    width: 100%;
    justify-self: center;
    justify-content: space-between;
    column-gap: 5px;
  }
  .iteamo #layout > header .contacts {
    column-gap: 2px;
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=main.css.map */
