* {
  margin: 0;
  padding: 0;
}

/* Reset-ish */
*, *::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li, ol {
  list-style: none;
}

input, button,
input:focus,
button:focus,
textarea:focus,
select:focus,
details:focus,
[href]:focus,
[tabindex]:not([tabindex="-1"]):focus,
[contenteditable=true]:focus {
  outline: none;
}

.container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.txt-center {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .deskNone {
    display: none;
  }
}

.moNone {
  display: none;
}
@media screen and (min-width: 800px) {
  .moNone {
    display: block;
  }
}

.section-title {
  letter-spacing: -0.7px;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 18px;
  color: #0e1224;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

body {
  font-size: 14px;
  line-height: 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #504f4f;
  margin-top: 0;
}
@media screen and (min-width: 800px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.dropdown-menu {
  display: none;
}
.dropdown-menu.is-open {
  display: block;
  position: absolute;
  background: #fff;
  padding: 10px;
  min-width: 120px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}

/* Sections */
section {
  padding: 40px 0 0;
}
@media screen and (min-width: 800px) {
  section {
    padding: 60px 0 0;
  }
}

.section-sub {
  margin: 0 0 28px;
}
@media screen and (min-width: 800px) {
  .section-sub {
    font-size: 18px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 1rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #0e1224, #0c1430);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.1s ease-in;
}
.btn:hover {
  background: #fff;
  border: 1px solid #0e1224;
  color: #0e1224;
  transition: 0.1s ease-in;
}

.divider {
  width: 300px;
  border-top: 2px solid #006EAD;
  margin: 40px auto;
  position: relative;
}
@media screen and (min-width: 800px) {
  .divider {
    margin: 60px auto;
  }
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  width: 70%;
  left: 15%;
  height: 2px;
  background: #0e1224;
}
.divider::before {
  top: -7px;
  border-radius: 2px 2px 0 0;
}
.divider::after {
  bottom: -5px;
  border-radius: 0 0 2px 2px;
}

.pencil-banner {
  background: #0e1224;
  padding: 7px 0;
}
.pencil-banner .container > .flex {
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .pencil-banner .moNone {
    display: inline-block;
  }
}
.pencil-banner .pencil-social span {
  color: #fff;
  font-weight: 600;
}
.pencil-banner a {
  color: #fff;
}
.pencil-banner a:not(:first-child) {
  padding-left: 20px;
}
.pencil-banner img {
  display: inline-block;
  vertical-align: sub;
}

/* ----- Header -----*/
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}
header .container > .flex {
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  header .container > .flex {
    flex-direction: row;
  }
}

.brand {
  max-width: 100%;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.brand img {
  max-width: 60px;
}
@media screen and (min-width: 800px) {
  .brand {
    max-width: 150px;
  }
  .brand img {
    max-width: 150px;
  }
}
@media screen and (max-width: 799px) {
  .brand .togglemenu, .brand .togglemenu::before,
  .brand .togglemenu:after {
    background: #006EAD;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 32px;
    right: 0;
  }
  .brand .togglemenu::before {
    top: calc(50% - 8px);
  }
  .brand .togglemenu:after {
    top: calc(50% + 6px);
  }
  .brand .togglemenu.is-open {
    background: transparent;
  }
  .brand .togglemenu.is-open::before {
    transform: rotate(45deg);
  }
  .brand .togglemenu.is-open::after {
    transform: rotate(-45deg);
    top: -6px;
  }
}

@media screen and (max-width: 799px) {
  .menu {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    height: calc(100vh - 64px);
    -webkit-overflow-scrolling: touch;
    right: 0;
    top: 64px;
    z-index: 20;
    background: #f2f2f2;
  }
  .menu.is-open {
    display: block;
  }
}
.menu .menu-ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul {
    align-items: center;
    flex-direction: row;
  }
}
.menu .menu-ul .navPages {
  display: block;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  color: #0e1224;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover, .menu .menu-ul .navPages.active {
  color: #006EAD;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover .fas, .menu .menu-ul .navPages.active .fas {
  color: #006EAD;
}
.menu .menu-ul .navPages .fas {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul .navPages {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  .menu .menu-ul .navPages.lang {
    padding: 0 15px;
    margin-inline: 0;
  }
}

/* Footer */
footer {
  background: #0e1224;
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  footer {
    padding: 60px 0;
  }
}

.foot {
  display: grid;
  gap: 18px;
  grid-template-columns: 185px 1fr;
}
@media screen and (min-width: 600px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media screen and (min-width: 800px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1000px) {
  .foot {
    grid-template-columns: minmax(290px, 1fr) 0.7fr 0.7fr 0.7fr minmax(175px, 1fr);
    gap: 25px;
  }
}
.foot .ftr-brand-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
.foot .ftr-support img {
  display: inline-block;
  vertical-align: middle;
}
.foot p {
  color: #fff;
  padding: 0.25rem 0;
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic;
}
.foot .ftr-tlt {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin: 0 0 10px;
}
.foot a {
  display: block;
  color: #fff;
  padding: 1px 0;
  font-size: clamp(14px, 1vw, 18px);
}

.copyright {
  background: #fff;
  color: #0e1224;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  /*.devlop {
    margin-top: 10px;
    @include media(450px){
      float: right;
      margin-top: 0;
    }
    a{
      color: $main-color;
      font-weight: 600;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
  }*/
}

#about {
  background: rgba(0, 110, 173, 0.2);
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  #about {
    padding: 80px 0;
  }
}
#about .flex {
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  #about .flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#about .flex .left {
  order: 2;
}
@media screen and (min-width: 800px) {
  #about .flex .left {
    order: 1;
    width: 40%;
  }
}
#about .flex .left .section-title {
  margin-top: 30px;
  font-size: clamp(24px, 5vw, 70px);
}
@media screen and (min-width: 800px) {
  #about .flex .left .section-title {
    margin-top: 0;
  }
}
#about .flex .left .section-sub {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  #about .flex .left .section-sub {
    margin-top: 50px;
    font-size: 18px;
  }
}
#about .flex .right {
  order: 1;
}
@media screen and (min-width: 800px) {
  #about .flex .right {
    order: 2;
    width: 45%;
    position: relative;
  }
}

section.projects-section {
  padding: 40px 0 40px;
}
@media screen and (min-width: 800px) {
  section.projects-section {
    padding: 60px 0 60px;
  }
}

.projects-view {
  text-align: center;
}
.projects-view .sml-tagline {
  color: #006EAD;
  font-weight: 500;
  margin-bottom: 10px;
}
.projects-view .tabsUl {
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.projects-view .tabsUl li {
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 110, 173, 0.1);
  padding: 3px 20px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922), inset 0 4px 10px rgba(0, 0, 0, 0.0509803922);
  transition: 0.3s ease-in-out;
}
.projects-view .tabsUl li:hover, .projects-view .tabsUl li.active {
  background: rgba(0, 110, 173, 0.9);
  color: #fff;
  transition: 0.3s ease-in-out;
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
  margin-top: 40px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }
}
@media screen and (min-width: 900px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proj {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
.proj:hover {
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.0509803922);
}
.proj:hover .copy {
  background: #006EAD;
  transition: 0.3s ease-in-out;
}
.proj:hover .copy h4, .proj:hover .copy h3 {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.proj:hover .copy a {
  background: #fff;
  color: #006EAD;
  transition: 0.3s ease-in-out;
}

.proj .copy {
  padding: 14px;
  position: absolute;
  background: #fff;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.proj h4 {
  margin: 0 0 6px;
  color: #006EAD;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.proj h3 {
  margin: 0 0 6px;
  color: #0e1224;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.proj a {
  background: #006EAD;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  padding: 5px 15px;
  position: absolute;
  right: 15px;
  bottom: 27px;
  transition: 0.3s ease-in-out;
}/*# sourceMappingURL=projects.css.map */