/* ===== IMPORTED STYLE ===== */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, abbr, acronym, address, big, cite, code, del, em, img, small, strike, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, 
aside, canvas, details, embed, figure, figcaption, footer, header, main, menu, nav, output, section, summary, time, mark, audio, video  {
  font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style: none;}
blockquote, q {quotes: none; }
blockquote::before, blockquote::after, q::before, q::after {content: none;}
table {border-collapse: collapse; border-spacing: 0;}
a {text-decoration: none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);-webkit-tap-highlight-color: transparent;outline: none !important;}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust: none;-webkit-overflow-scrolling: touch;}
input, button, select {border: none;outline: none;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
select::ms-expand {display: none;}
input::-ms-clear {display: none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
  --black: #0a0a0a;
  --white: #fff;
  --main-color: #00486b;
  --main-font:'Montserrat';
}
html {
  font-size:10px;
  height:100%;
  /*scroll-behavior: smooth;*/
}
body {
    background: #000;
    font-weight: 300;
  font-family: var(--main-font);
  font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;  
    overflow-x: hidden;
  color: #fff;
    height:100%;
}
.page-wrapper {
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  height:100%;
}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}

a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}

b, strong {font-weight:bold;}

p, .text {font-size: 1.8rem;}
p:not(:last-child) {margin-bottom: 1em;}

ul:not([class]) li,
ol:not([class]) li {
  margin-bottom: 1em;
}
ul:not([class]),
ol:not([class]) {
  padding-left: 20px;
  margin-bottom: 20px;
}
p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {
  text-decoration: none;
}
p a, ul:not([class]) li a, ol:not([class]) li a {
  color: red;
  text-decoration: underline;
}

/* Flexbox */
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.flex-wrap {flex-wrap: wrap;}
.flex-column {flex-direction: column;}
.align-center {align-items: center}
.align-end {align-items: flex-end;}
.align-start {align-items: flex-start;}
.justify-center {justify-content: center;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.grid {display:grid;}
.col-2 {grid-template-columns: repeat(2, 1fr);}
.col-3 {grid-template-columns: repeat(3, 1fr);}
.col-4 {grid-template-columns: repeat(4, 1fr);}
.col-5 {grid-template-columns: repeat(5, 1fr);}
.col-6 {grid-template-columns: repeat(6, 1fr);}
.grid-col-1 {grid-column: span 1;}
.grid-row-1 {grid-row: span 1;}
.grid-col-2 {grid-column: span 2;}
.grid-row-2 {grid-row: span 2;}
.grid-col-3 {grid-column: span 3;}
.grid-row-3 {grid-row: span 3;}
.grid-col-4 {grid-column: span 4;}
.grid-row-4 {grid-row: span 4;}
.grid-col-5 {grid-column: span 5;}
.grid-row-5 {grid-row: span 5;}

.gap-1 {gap:1rem;}
.gap-2 {gap:2rem;}
.gap-3 {gap:3rem;}
.gap-4 {gap:4rem;}
.gap-5 {gap:5rem;}
/* // CSS Grid */

.svg-library {display:none;}

.container {
  width:100%;
  max-width:1540px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
}

.red {border:1px solid red;}
.blue {border:1px solid blue;}
.green {border:1px solid green;}

.mobile-btn {display:none;}

.noscroll {overflow: hidden;}

.mobile-menu__content {display:none;}

.text--uppercase {text-transform:uppercase;}
.text--center {text-align:center;}
.text--left {text-align:left;}
.text--right {text-align:right;}
.text--black {color:var(--black);}
.text--white {color:var(--white);}
.text--colored {color:var(--main-color);}
.text--bold {font-weight: bold;}

.position-relative {position: relative;}
.position-absolute {position: absolute;}

.sm-show {display:none;}

.section {padding:10rem 0;}
.section-title {margin-bottom:1em;}

.w-5 {width:5%;}
.w-10 {width:10%;}
.w-15 {width:15%;}
.w-20 {width:20%;}
.w-25 {width:25%;}
.w-30 {width:30%;}
.w-33 {width:33.33%;}
.w-35 {width:35%;}
.w-40 {width:40%;}
.w-45 {width:45%;}
.w-50 {width:50%;}
.w-55 {width:55%;}
.w-60 {width:60%;}
.w-65 {width:65%;}
.w-70 {width:70%;}
.w-75 {width:75%;}
.w-80 {width:80%;}
.w-85 {width:85%;}
.w-90 {width:90%;}
.w-95 {width:95%;}
.w-100 {width:100%;}

/* Buttons */
.btn {
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: normal;
  display:inline-flex;
  padding:1.2em 3em;
  background: var(--main-color);
  position:relative;
  text-align:center;
  transition: all 0.25s;
  justify-content: center;
  align-items: center;
  border:1px solid var(--main-color);
  text-transform: uppercase;
  color:#fff;
}
.btn:hover {
  cursor:pointer;
  transition: all 0.25s;
  background: transparent;
  border:1px solid #fff;
}
.btn--transparent {
  border:1px solid #fff;
  color:#fff;
  background: transparent;
}
.btn--transparent:hover {
  background: var(--main-color);
  border:1px solid var(--main-color);
}

.show-hidden-block span:last-child, .show-hidden-block.active span:first-child  {display:none;}
.show-hidden-block.active span:last-child {display:block;}

/* Icons */
.icon {display:block;}


/* Titles */
.h1, h1 {
  display:block;
  line-height: 1.1;
  font-size: 7rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.h2, h2 {
  display:block;
  line-height: 1.2;
  font-size: 5rem;
  font-weight: bold;
}
.h3, h3 {
  display:block;
  line-height: 1.3;
  font-size: 3rem;
  font-weight: bold;
}
.h4, h4 {
  display:block;
  line-height: 1.3;
  font-size: 3rem;
}
.h5, h5 {
  display:block;
}
.h6, h6 {
  display:block;
}

/* Custom default style */
.block-wrapper {margin: 0 -10px;}
.block-item {padding:0 10px;}
.two-column .block-item {flex:0 0 50%;max-width:50%;}
.three-column .block-item {flex:0 0 33.33%;max-width:33.33%;}
.four-column .block-item {flex:0 0 25%;max-width:25%;}
.five-column .block-item {flex:0 0 20%;max-width:20%;}

/* Marker list */
.marker--list li {
  display: flex;
  align-items: flex-start;
}
.marker--list li::before {
  content:'';
  display: block;
  min-width: 5px;
  height:5px;
  background: rgba(45, 167, 205, 1);;
  border-radius: 50%;
  margin:1rem 1rem 0 0;
}

/* Overlay for image */
.img--overlay {
  position: relative;
}
.img--overlay::before {
  content:'';
  display:block;
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(45,167,205,0.3);
  z-index: 1;
  transition: all 0.5s;
}

/* CSS Counter */
.counter {
  counter-reset: list;
}
.counter-item::before {
    content: '';
  counter-increment: list;
    content: "0" counter(list);
}
.counter-item:nth-child(n+10)::before {
    content: counter(list);
}

/* Popup  */
.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  display: none;
}
.popup-window, .thanks-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  z-index: 110;
  transition: all .3s;
  background: var(--main-color);
  padding: 3rem;
  border-radius: 10px;
  width: 35em;
  min-width: 15em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-window.active {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}
.close-popup {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  display: block;
  overflow: visible;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.close-popup::before, .close-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  display: block;
  width: 20px;
  height: 1px;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
.close-popup::after {
  left: 0;
  transform: rotate(-45deg);
}

/* Thanks window */
.thanks-window {
  z-index: 130;
}
.thanks-window.active {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}
.thanks-window__title {
  margin-bottom:0.3em;
}
.thanks-window p {
  text-align: center;
}

/* ===== Custom Styles =====*/
.header {
  top:0;
  left:0;
  z-index: 5;
  padding:3rem 0;
}
.header .container {
  max-width: 100%;
  padding:0 5rem;
}

/* Sticky header animation*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
/* Sticky header animation - end */

.header-fixed-top {
    animation-duration: 0.8s;
    animation-name: fadeInDown;
    animation-timing-function: ease-in-out;
    background:var(--black);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
  border-bottom:1px solid rgba(255,255,255,0.5);
  padding: 2rem 0;
}
.language-select {
  margin-right:3rem;
}
.language-link {
  margin-right:1.5em;
}
.language-link.active {
  font-weight: bold;
  color:rgba(45,167,205,1);
}
.first-screen {
  height: 100vh;
  padding-top:5rem;
  background: url(../images/main1.webp) no-repeat center center / cover;
}
.fs-decor {
  top:0;
  left:0;
  width:120rem;
  height: 120rem;
  border-radius: 10rem;
  background: rgba(45,167,205,0.7);
  transform: rotate(-30deg) translate(-10rem, -25rem);
}
.fs-decor::before {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  border-radius: 10rem;
  background: rgba(45,115,205,0.3);
  transform: rotate(-10deg);
}
.fs-content::before {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:45rem;
  height: 45rem;
  border-radius: 5rem;
  transform: rotate(-30deg) translate(-10rem, -20rem);
  border:1px solid #fff;
  z-index: 0;
  opacity: 0.15;
}
.fs-content p {
  margin:1em 0 2em;
  font-size: 2rem;
  position: relative;
}
.fs-content .about-img {
  margin-top:50px;
}
.fs-content .about-img::before {
  background: rgba(0,0,0,0.5);
}
.fs-btn-row .btn {
  width: 25rem;
  margin-right:2rem;
}
.menu li {
  margin:0 0 0 2em;
}
.menu li a {
  text-transform: uppercase;
  color:#fff;
}
.menu li a:hover, .to-home:hover {
  color:rgba(45,167,205,1);
}
.mobile-menu__content .contact-item {
  text-align: center;
  display: block;
}
.to-home {
  color:#fff;
  text-transform: uppercase;
}
.logo {
  font-size:3.5rem;
  color:#fff;
}
.about-img img {
  border-radius: 30px;
  box-shadow: 8rem 8rem 0 rgba(45,167,205,0.1);
}
.bg-title {
    top: 0;
    font-size: 13rem;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    z-index: 0;
  font-weight: bold;
  opacity: 0.15;
}
.bg-title.right {
   right: 0.5em;
}
.bg-title.left {
  left: 0.5em;
}
.work-process {
  overflow: hidden;
}
.process-item {
  padding:5rem 4rem;
  border:1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  background: rgba(45,167,205,0.1);
  position: relative;
  margin-bottom:4rem;
}
.work-process__column {
  width: 48%;
}
.work-process__column:first-child {
  transform: translateY(8rem);
}
.process-item .h4 {
  margin-bottom:1em;
  font-weight: bold;
  text-transform: uppercase;
}
.process-num {
  position: absolute;
  right:0.5em;
  top:0.3em;
  font-weight: bold;
  font-size: 7rem;
  opacity: 0.1;
  line-height: 1;
}
.decor-element {
  top:0;
  width:60rem;
  height: 60rem;
  border-radius: 5rem;
  background: rgba(45,167,205,0.7);
  transform: rotate(-30deg) translate(20rem, 20rem);
  opacity: 0.3;
}
.decor-element::before {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  border-radius: 5rem;
  background: rgba(45,115,205,0.5);
  transform: rotate(-10deg);
}
.decor-element.right {
  right:0;
}
.decor-element.left {
  top:auto;
  bottom:0;
  left:0;
  width:33rem;
  height: 33rem;
  transform: rotate(-30deg) translate(-10rem, -15rem);
  opacity: 0.5;
}
.brif {
  background: rgba(45,167,205,0.7);
  overflow: hidden;
}
.brif p, .portfolio p {
  width: 70%;
  text-align: center;
  margin: 0 auto 1em;
}
.brif .btn-container {
  margin-top:5rem;
}
.decor-bg {
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  width:60%;
  height: 300%;
  background: #00486b;
  opacity: 0.3;
  z-index: 0;
}
.decor-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    background: rgba(45,115,205,0.7);
    transform: rotate(-10deg);
}
.services  {
  overflow: hidden;
}
.service-wrapper:not(:last-child) {
  margin-bottom:6rem;
}
.service-title {
  display: block;
  top:0;
  left:0;
  color:#fff;
  background: var(--main-color);
  font-weight: bold;
  padding:0.5em 1em;
  font-size: 2.5rem;
  border-radius: 20px;
  transform: translateY(-50%);
  min-width: 40rem;
}
.service__body {
  width:85%
}
.service__body {
  padding:6rem 3rem 3rem 3rem;
  border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    background: rgba(45,167,205,0.1);
}
.service-item__icon {
  display:flex;
  width:4rem;
  height:4rem;
  flex:none;
  justify-content: center;
  align-items: center;
  background:silver;
  border-radius: 5px;
  margin-right:2rem;
}
.service__body__content {
  max-height:7.5rem;
  overflow: hidden;
  transition: all 0.25s;
}
.service__body.active .service__body__content {
  max-height:1000px;
  transition: all 0.25s;
}
.service__body.active .service__body__content p:first-child {
  display: block;
  height: auto;
}
.service__body p {
  margin-bottom:1em;
}
.service__body p:first-child {
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  height: 3em;
}
.service-list li {
  line-height:1.5;
  font-weight: bold;
}
.service-list {
  margin-bottom:1em;
}
.more-link::before {
  content:'';
  display:block;
  width:4px;
  height:4px;
  background:gray;
  margin-right:1rem;
}
.more-link span:last-child {
  display:none;
}
.more-link.active span:last-child {
  display:block;
}
.more-link.active span:first-child {
  display:none;
}
.more-link:hover {
  color:var(--main-color);
}
.services .decor-element {
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  width:65rem;
  height: 65rem;
  opacity: 0.1;
}
.portfolio__wrapper {
  margin-top:4rem
}
.portfolio-img img {
  aspect-ratio: 1.3;
  width:100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.portfolio .btn-container {
  margin-top:5rem;
}
.portfolio__wrapper {
  gap:5px;
}
.card-inner {
  color:#fff;
  left:0;
  top:50%;
  transform: translateY(-50%);
  padding: 2em 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  font-size: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.card-inner::before, .card-inner::after {
  content:'';
  display:block;
  background: #fff;
  height:1px;
  width:100%;
  position: absolute;
  left:0;
  top:0;
  transition: all 0.25s;
  transform: translateX(-100%);
}
.card-inner::after {
  right:0;
  bottom:0;
  left:auto;
  top:auto;
  transform: translateX(100%);
}
.portfolio-card:hover .card-inner {
  opacity: 1;
  visibility: visible;
  transition: all 0.25s;
}
.portfolio-card:hover .img--overlay::before {
  background: rgba(0,0,0,0.5);
  transition: all 0.5s;
}
.portfolio-card:hover .card-inner::after, .portfolio-card:hover .card-inner::before {
  transform: translateX(0);
  transition: all 0.5s;
}
.portfolio-card {
  display: block;
}
.card__overlay {
  width: 100%;
  bottom:0;
  left:0;
  padding:2rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.card__overlay__text {
  display: block;
  text-align: right;
  font-size: 1.6rem;
  color:#fff;
}
.portfolio-card:hover .card__overlay {
  opacity: 1;
  visibility: visible;
  transition: all 0.25s;
}
.contact__wrapper {
  margin:0 auto;
}
.contact__wrapper p {
  text-align: center;
}
.contact-item {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom:0.3em;
}
.social {
  margin-top:3rem;
}
.social li {
  margin:0 7px;
}
.social li img {
  width:50px;
}
form .btn-container {
  margin-top:4rem;
}
.popup__content .h3 {
  margin-bottom: 1em;
}
.popup__content p {
  text-align: center;
  margin-bottom: 2em;
}
.input-wrapper {
  margin-bottom:3rem;
}
.input-wrapper input, .input-wrapper textarea {
  display:block;
  border-bottom:1px solid #FFF;
  height:5rem;
  color:#fff;
  font-size: 1.6rem;
  font-family: 'Montserrat';
  font-weight: normal;
  background: none;
}
.input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
  color:#fff;
  font-size: 1.6rem;
  font-family: 'Montserrat';
  font-weight: normal;
}
.input-wrapper textarea {
  padding: 1em 0;
  overflow: hidden;
}
.brif__content {
  padding: 15rem 0 10rem;
  background: rgba(45,167,205,0.1);
}
.brif__content-head p {
  width: 70%;
  margin:0 auto;
  text-align: center;
}
.brif__body hr {
  display:block;
  width: 100%;
  border:none;
  border-bottom:1px dashed rgba(255,255,255,0.5);
  margin:3rem 0;
}
.brif__body {
  padding:4rem 0;
}
.brif__body .input-wrapper {
  margin:0;
}
.brif__body p {
  font-size: 1.4rem;
  color:silver
}
.brif__content .to-home {
  display: none;
}
.form-item-title {
  font-weight: bold;
  font-size: 2rem;
}
.page-up {
  width:50px;
  height:50px;
  border-radius:50%;
  background: #2DA7CD url(../images/icons/angle_down_white.svg) no-repeat center center;  
  background-size: 20px 20px;
  display:flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 50px;
  bottom:50px;
  z-index: 1;
  display:none;
  transform: rotate(180deg);
}
.page-up:hover {
  cursor: pointer;
}
.footer {
  padding:3rem 0;
  background: rgba(45,167,205,0.2);
}
.footer p {
  font-size: 14px;
  text-align: center;
}

/* ===== Custom Styles END =====*/