@font-face {
  font-family: 'Intro Black';
  src: URL('ttf/Intro_Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Intro Regular';
  src: URL('ttf/Intro_Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Intro Bold';
  src: URL('ttf/Intro_bold.ttf') format('truetype');
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

body {
  width: 1480px;
  margin: auto;
}

body.night {
  background-color: black;
}

/* Header */
header{
  height: 88px;
  padding: 2px 31px 8px 31px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.background-color {
  background-color: #3B3F7E;
}

.log {
  width: 82px;
  height: 50px;
}

/** main **/
.about {
  height: 467px;
  padding: 40px;
}

.row-block {
  background: #3B3F7E;
  width: 1100px;
  border-radius: 45px;
  margin: auto;
}

h1 {
  font-family: Intro Black;
  font-size: 47px;
  font-weight: 900;
  line-height: 47px;
  text-align: left;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

h3 {
  margin-bottom: 0;
}

.main-about span {
  display: block;
  font-family: Intro Regular;
  font-weight: 400;
  font-size: 18.5px;
  line-height: 18.5px;
  color: #FFF;
}

.main-about span:nth-child(-n + 3) {
  width: 62%;
}

.main-about span:first-child {
  width: 59%;
}

.main-about span:last-child {
  width: 65%;
}

.about-container {
  display: flex;
  flex-direction: row;
}

.about-link {
  display: flex;
  margin-top: 54px;
}

.about-link a,
.about-plus a {
  text-decoration: none;
  z-index: 200;
}

.link-button {
  display: flex;
  width: 180px;
  height: 50px;
  border: 3px solid #169992;
  border-radius: 45px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: Intro Regular;
  font-weight: 400;
  color: #fff;
}

.about-link a div.telegram {
  background-color: #169992;
  margin-left: -4px;
}

.about-link a div.whats-app {
  margin-left: 15px;
}

.about-img-flag {
  display: block;
  position: absolute;
  z-index: 100;
  top: 70px;
  min-width: 1420px;
  overflow: hidden;
  margin: auto;
  padding: 40px;
  height: 496px;
}

.about-img-flag img {
  display: block;
  width: 985px;
  height: 657px;
  transform: rotate(-13.5deg);
  position: relative;
  left: 43%;
  bottom: 163px;
}

.img-shadow {
  -webkit-filter: drop-shadow(-10px -10px 40px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(-10px -10px 40px rgba(0, 0, 0, 0.25));
}

.projects {
  width: 1180px;
  margin: 8% auto auto auto;
  display: flex;
  flex-direction: column;
}

.projects-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.projects-row:first-child div {
  display: flex;
  width: 380px;
  height: 480px;
  border-radius: 45px;
  background-color: #141414;
}

.projects-row:first-child div a {
  display: flex;
  position: relative;
  bottom: 7%;
  left: 10%;
  min-height: 5%;
  align-content: end;
  align-items: end;
  width: 173px;
  font-family: Intro Regular;
  text-decoration: none;
  font-weight: 400;
  font-size: 26px;
  color: #169992;
  line-height: 26px;
}

.projects-row:last-child div {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 35px;
}
.projects-row:last-child div a {
  display: flex;
  width: 200px;
  height: 50px;
  border: 3px solid #169992;
  border-radius: 45px;
  background-color: black;
  color: #169992;
  text-decoration: none;
  font-family: Intro Regular;
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  justify-content: center;
  align-items: center;
}
.projects-row:last-child div a span {
  margin-left: 5%;
}

.about-plus {
  display: flex;
  width: 1180px;
  margin: auto;
  flex-direction: column;
}

.about-plus div {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.about-plus .item-block {
  display: flex;
  width: 580px;
  height: 700px;
  overflow: hidden;
  flex-direction: column;
}

.about-plus .margin-top {
  margin-top: 45px;
}

.about-plus .row-margin-top {
  margin-top: 51px;
}

.about-plus .item-radius {
  border-radius: 45px;
}

.item-block h2 {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 47px;
  line-height: 47px;
  text-align: left;
  padding: 0 6.5%;
  letter-spacing: -1px;
  color: #fff;
  margin-top: 46px;
  margin-left: 10px;
}

.item-block img.phone-background {
  width: 698.62px;
  height: 698.62px;
  transform: rotate(18deg);
  position: relative;
  bottom: 13.5%;
  z-index: 10;
  display: flex;
  left: 0.9%;
}

.item-block img.work-plan {
  width: 594px;
  height: 594px;
  position: relative;
  right: 2%;
  /*top: -1%;*/
}

.item-block img.notebook {
  width: 900px;
  height: 750px;
  position: relative;
  bottom: 17%;
  right: 27%;
}

.item-block .title {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 34px;
  line-height: 35px;
  color: #fff;
  z-index: 10;

}
/** phone */
.phone .title.position-bottom {
  margin-left: 8%;
  margin-top: -52.5%;
}

.phone .description {
  padding: 2% 8%;
}
/** plan */
.plan .title.position-bottom {
  margin-left: 9.5%;
  margin-top: -2.5%;
}

.plan .description,
.notebook .description {
  padding: 2% 4% 2% 10%;
}
/** notebook */
.notebook .title.position-top {
  margin-top: 6.6%;
  padding: 0 10%;
}

.item-block .description {
  z-index: 10;
  font-family: Intro Black;
  font-weight: 900;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  letter-spacing: -0.5px;
}
/** about-plus first block */
.about-plus .item-block:first-child {
  margin-right: 20px;
}

.about-plus div:first-child .item-block:first-child {
  border-radius: unset;
  background-color: revert;
  height: 709px;
  margin-top: -5px;
  margin-left: -4px;
  margin-right: 24px;
}

.about-plus div:first-child .item-block:first-child .description {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 29px;
  line-height: 34px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: -1px;
  padding: inherit;
}

.linear-gradient {
  background: -webkit-linear-gradient(#3B3F7E, #169992);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-plus .map {
  height: 484px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 33px 65px;
  max-height: 550px;
  overflow: hidden;
  background-image: url('../img/map.png');
  background-repeat: round;
}

.map .map-button {
  width: 245px;
  background-color: #169992;
  margin-top: 38px;
}

.map h3 {
  color: #fff;
  font-family: Intro Black;
  font-weight: 900;
  font-size: 30px;
  line-height: 30px;
  padding: 0 0 7px 0;
}

.map .description {
  font-family: Intro Regular;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  padding: 0 3px;
}

.license-block {
  padding: 50px 45px;
}

.about-plus .license-block {
  height: 280px;
  width: 490px;
}

.license-block h3 {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 53.5px;
  line-height: 53.5px;
  color: white;
  margin-top: 0;
}

.license-block .license-button {
  width: 180px;
}

.license-button {
  background-color: #169992;
  margin: 38.5% auto 0 auto;
  z-index: 100;
  position: relative;
}

.license-background {
  position: relative;
  bottom: 128%;
  z-index: 0;
  width: 830px;
  min-height: 633px;
  left: 1%;
  display: block;
}

.about-plus .type-activity-block {
  height: 380px;
  background-color: revert;
  width: 595px;
  margin-right: -0.5%;
}

.type-activity-block h3 {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 49px;
  line-height: 49px;
  margin-top: 0;
  letter-spacing: -1px;
  color: #3B3F7E;
  text-align: left;
  margin-left: -1%;
}

.type-activity-block .description {
  font-size: 23px;
  line-height: 25px;
  text-transform: uppercase;
  height: 100%;
}

.specter-callback {
  margin-top: 20px;
}

.specter-callback > div {
  display: flex;
  flex-direction: column;
  min-width: 530px;
  padding: 30px 25px;
}

.about-plus .specter-callback > div {
  height: 640px;
}

.specter h4 {
  margin: 8px 0 15px;
  font-family: Intro Black;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  line-height: 20px;
  text-indent: 9px;
  color: #fff;
  letter-spacing: 0.2px;
}

.specter .description {
  font-family: Intro Regular;
  font-weight: 400;
  font-size: 18.5px;
  line-height: 24px;
  height: 100%;
  letter-spacing: 0.25px;
  margin-right: -25px;
  margin-left: -1px;
}

.callback {
  background: -webkit-linear-gradient(#3B3F7E, #169992);
}

.callback h4 {
  font-family: Intro Black;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  font-weight: 900;
  letter-spacing: -0.35px;
  margin: 5px 4px -10px;
}

.callback img {
  width: 393px;
  height: 360px;
  margin: auto;
}

.callback-button {
  width: 245px;
  margin: auto;
  border-color: #3B3F7E;
}

.callback .callback-button {
  width: 245px;
}

.world-map {
  height: 540px;
  overflow: hidden;
  padding: 5px 55px;
}

.about-plus .world-map {
  display: flex;
  flex-direction: column;
  width: 1070px;
}

.world-map h4 {
  display: flex;
  width: 405px;
  height: 45px;
  font-family: Intro Black;
  font-weight: 599;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

.ids-button {
  border-radius: 45px;
  border: 1px solid #169992;
  background-color: #169992;
  display: flex;
  justify-content: center;
}

.about-plus .ids-button-small {
  width: 72px;
  height: 10px;
  padding: 3px 4px;
  z-index: 100;
  position: relative;
  left: 22.25%;
  top: 13%;
}

.ids-button img {
  display: flex;
  min-width: 20%;
  height: 100%;
}

.ids-button span {
  display: flex;
  width: 63%;
  color: #fff;
  flex-direction: row;
  margin-left: 5%;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-family: Intro Regular;
}

.ids-button-small span {
  font-size: 8px;
}

.world-map-img {
  display: flex;
  z-index: 0;
  position: relative;
  right: -2%;
  bottom: 22.5%;
  width: 1104px;
  height: 515px;
}

.about-plus .ids-button-normal {
  position: relative;
  z-index: 100;
  bottom: 32%;
  width: 223px;
  height: 38px;
  padding: 6px 15px 6px 20px;
  border-width: 3px;
}

.ids-button-normal span {
  font-size: 25px;
  margin-top: auto;
}

.partner-customer > div {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.partner-customer > div:first-child {
  margin-right: 20px;
}

.about-plus .partner-customer > div {
  width: 580px;
  height: 380px;
}

.partner-block img {
  z-index: 50;
  width: 579px;
  height: 588px;
  display: flex;
  position: relative;
  bottom: 14.5%;
}

.partner-block a {
  display: flex;
  width: 187px;
  position: relative;
  z-index: 100;
  margin: auto;
  top: 77%;
}

.customer-block h3 {
  font-family: Intro Black;
  color: #fff;
  font-size: 53px;
  position: relative;
  z-index: 45;
  margin-top: 0;
  left: 8%;
  top: 14.5%;
  line-height: 53.5px;
  text-transform: uppercase;
  font-weight: 900;
}

.customer-block img {
  position: relative;
  z-index: 50;
  width: 580px;
  height: 387px;
  bottom: 14%;
}

.customer-block a {
  position: relative;
  z-index: 100;
  width: 186px;
  margin: auto;
  top: 63%;
}

.go-over-button {
  height: 50px;
  position: relative;
  z-index: 100;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 3px solid #169992;
  background-color: #169992;
  font-family: Intro Regular;
  color: #fff;
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
}

.about-plus .go-over-button {
  display: flex;
  width: 180px;
}

.feedback-block {
  width: 1180px;
  height: 120px;
}

.feedback-block h3 {
  margin: 3% 15px 2% 43px;
  font-family: Intro Black;
  color: #fff;
  font-size: 52px;
  line-height: 53.5px;
  text-align: center;
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: 62.7%;
}

.feedback-block a {
  width: 186px;
  margin: auto 0;
}

.feedback-block .go-over-button {
  z-index: 100;
  position: relative;
}

.feedback-block img {
  position: relative;
  z-index: 50;
  width: 285px;
  height: 211px;
  bottom: 78%;
  right: 7.65%;
  border-radius: 45px;
}

.callback-info-block {
  display: flex;
  flex-direction: row;
  width: 1180px;
  height: 520px;
  border-radius: 45px;
  background: -webkit-linear-gradient(-75deg, #3B3F7E, #169992);
  margin: 51px auto auto;
  padding: 15px 0;
}

.callback-info-block > div {
  width: 50%;
  padding: 0 19px;
}

.callback-info-block > div:first-child {
  text-align: right;
  border-right: 3px solid #fff;
}

.callback-info-block > div:first-child span {
  margin-left: auto;
}

.callback-info-block > div:last-child {
  text-align: left;
}

.callback-info-block > div:last-child span {
  margin-right: auto;
}

.callback-info-block span {
  display: block;
  font-family: "Intro Bold";
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}

.callback-info-block .title {
  width: 85%;
  height: 57px;
}

.callback-info-block div:first-child .title {
  padding: 0 5px;
}

.callback-info-block .legal-address {
  width: 58%;
  height: 56px;
}

.callback-info-block .actual-address,
.callback-info-block .director {
  width: 58%;
  height: 56px;
}

.callback-info-block .bank-requisite {
  height: 97px;
}

.callback-info-block .ogrn,
.callback-info-block .inn,
.callback-info-block .kpp,
.callback-info-block .phone,
.callback-info-block .email {
  height: 36px;
}

.footer {
  margin: 51px auto auto;
  border-top: 3px solid #fff;
  width: 1180px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 40px;
}

.footer > span {
  font-size: 20px;
  line-height: 20px;
  font-family: Intro Bold;
  color: #fff;
}

.footer > div {
  display: flex;
  margin-top: -5px;
}

.footer > div a:first-child {
  margin-right: 4px;
}

.footer > div a {
  display: flex;
  width: 31px;
  height: 31px;
}

.partners h1 {
  font-family: "Intro Black";
  font-weight: 600;
  font-size: 47px;
  line-height: 47px;
  text-align: center;
}

.partner-item-block {
  display: flex;
  flex-direction: column;
  width: 960px;
  height: 470px;
  border-radius: 45px;
  justify-content: end;
  background-repeat: round;
  margin: 40px auto auto;
  padding: 40px 60px;
}

.partner-item-block h2 {
  font-family: Intro Black;
  font-weight: 900;
  font-size: 47px;
  line-height: 47px;
  color: #fff;
  margin: 0;
}

.partner-item-block h2.dark {
  color: #1B3348;
}

.partner-item-block a {
  font-family: Intro Regular;
  font-weight: 400;
  font-size: 37px;
  line-height: 37px;
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.betongarant-background {
  background-image: url('../img/partner-betongarant.png');
}

.smolavtodor-background {
  background-image: url('../img/partner-smolavtodor.png');
}

.ucperesvet-background {
  background-image: url('../img/partner-ucperesvet.png');
}

.rsasm-ucoz-background {
  background-image: url('../img/partner-rsasm-ucoz.png');
}

.design_akulenko92-background {
  background-image: url('../img/partner-design_akulenko92-background.png');
}
