body {
  color: #0f1430;
  font-family: Sora, sans-serif;
  font-size: 17px;
  line-height: 28px;
}

h1 {
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}

h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.body {
  font-size: 18px;
}

.section {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.blue {
  background-image: url('../images/corner.svg'), linear-gradient(#fff, rgba(67, 153, 255, .1) 67%);
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: contain, auto;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1300px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.container.hero {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container.grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.container.socket, .container.socketcontainer {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #ebebeb;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  display: flex;
  position: fixed;
  top: 0;
}

.accent-title {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #4399ff;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.body-2 {
  color: #4399ff;
}

.logo {
  height: 40px;
}

.flex-col {
  flex: 0 auto;
}

.experience {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(67, 153, 255, .1);
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 24px;
  display: flex;
  box-shadow: 0 2px 20px rgba(67, 153, 255, .1);
}

.footer {
  flex: none;
  margin-top: auto;
  margin-bottom: 0;
}

.mark {
  width: 16px;
  height: 16px;
  border-top: 2px solid #4399ff;
  border-bottom: 2px #4399ff;
  border-left: 2px solid #4399ff;
}

.experience-wrapper {
  height: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.line {
  width: 24px;
  height: 2px;
  background-color: #4399ff;
  margin-bottom: 24px;
}

.items {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  align-items: stretch;
  font-size: 16px;
  display: flex;
  position: relative;
}

.nav-item {
  height: 100%;
  cursor: pointer;
  background-color: rgba(67, 153, 255, 0);
  flex: none;
  align-items: center;
  padding: 16px;
  transition: opacity .35s cubic-bezier(.68, -.55, .265, 1.55);
  display: flex;
}

.nav-item:hover {
  background-color: rgba(67, 153, 255, .1);
}

.button {
  color: #fff;
  cursor: pointer;
  background-color: #4399ff;
  background-image: url('../images/corner.svg');
  background-position: 200% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 20px;
  font-weight: 600;
  transition: all .35s cubic-bezier(.68, -.55, .265, 1.55);
  display: flex;
}

.button:hover {
  background-position: 100% 100%;
}

.button.dark {
  color: #0f1430;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(15, 20, 48, .1);
  transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}

.button.dark:hover {
  color: #fff;
  background-color: #0f1430;
}

.body-3 {
  font-weight: 400;
}

.text-wrap {
  text-align: left;
  margin-bottom: 32px;
}

.text-wrap.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.skill-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.skill {
  background-color: #fff;
  border: 1px solid rgba(15, 20, 48, .1);
  flex-direction: column;
  padding: 24px;
  display: flex;
  box-shadow: 4px 2px 12px rgba(67, 153, 255, .1);
}

.icon {
  width: 80px;
  height: 80px;
  background-color: #4399ff;
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05));
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  transition: all .4s;
  display: flex;
}

.icon:hover {
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .4));
}

.image {
  width: 70px;
  height: 70px;
}

.contact-grid {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.number {
  font-size: 48px;
  line-height: 48px;
}

.divider-contact {
  width: 100%;
  height: 1px;
  opacity: .1;
  background-color: #fff;
}

.contact-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  display: flex;
}

.contact-link {
  font-size: 20px;
  line-height: 24px;
}

.contact-label {
  opacity: 1;
}

.socket {
  color: #fff;
  background-color: #0f1430;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 300;
}

.contact-link-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.contact-link-wrapper:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 60px;
  height: 60px;
  opacity: 1;
  color: #fff;
  background-color: #18204d;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.client {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid rgba(15, 20, 48, .1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.client-logo {
  height: 60px;
  max-width: 150px;
}

.client-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.socket-wrapper {
  grid-column-gap: 24px;
  opacity: .6;
  flex: none;
  display: flex;
}

.heading-2 {
  font-size: 70px;
  line-height: 77px;
}

.heading-3 {
  font-size: 50px;
  line-height: 55px;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  flex-direction: column;
  display: flex;
}

.footer-container {
  color: #fff;
  background-color: #0f1430;
  padding-top: 120px;
  padding-bottom: 120px;
}

.embed-icon {
  width: 22px;
  height: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-divider {
  height: 6rem;
  background-color: #0f1430;
  margin-top: -6rem;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 19px;
    line-height: 30px;
  }

  h1 {
    font-size: 72px;
    line-height: 82px;
  }

  h2 {
    font-size: 52px;
    line-height: 61px;
  }

  .section {
    margin-left: auto;
    margin-right: auto;
  }

  .container {
    max-width: 1500px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .flex-col {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }

  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container.grid {
    grid-template-columns: 1fr;
  }

  .container.socketcontainer {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    text-align: center;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    display: grid;
  }

  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .accent-title {
    font-size: 18px;
  }

  .experience {
    border-color: rgba(15, 20, 48, .1);
  }

  .mark {
    width: 14px;
    height: 14px;
  }

  .line {
    margin-bottom: 16px;
  }

  .items {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .skill-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .skill {
    border-color: rgba(15, 20, 48, .1);
  }

  .icon {
    width: 60px;
    height: 60px;
  }

  .image {
    width: 40px;
    height: 40px;
  }

  .contact-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .number {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 32px;
  }

  .socket {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    font-size: 14px;
    display: flex;
  }

  .client {
    border-color: rgba(15, 20, 48, .1);
  }

  .client-logo {
    height: 50px;
    max-width: 130px;
  }

  .client-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .text-block {
    opacity: .6;
  }

  .socket-wrapper {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 44px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.blue {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container.socketcontainer {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .navbar {
    padding: 16px 24px;
  }

  .accent-title {
    font-size: 16px;
  }

  .logo {
    height: 32px;
  }

  .experience-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .nav-item {
    display: none;
  }

  .button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .text-wrap {
    margin-bottom: 24px;
  }

  .skill-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .contact-link {
    font-size: 18px;
    line-height: 20px;
  }

  .socket {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .client-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-divider {
    height: 5rem;
    margin-top: -5rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }

  h1 {
    font-size: 32px;
    line-height: 38px;
  }

  h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .section.blue {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container.socketcontainer {
    align-items: center;
    padding-bottom: 0;
  }

  .accent-title {
    font-size: 14px;
  }

  .logo {
    height: 28px;
  }

  .flex-col {
    flex: none;
  }

  .experience {
    padding: 20px;
  }

  .experience-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .text-wrap {
    width: 100%;
    margin-bottom: 24px;
  }

  .text-wrap.mobile {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .skill-wrapper {
    grid-template-columns: 1fr;
  }

  .skill {
    padding: 20px;
  }

  .contact-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .socket {
    font-size: 12px;
  }

  .client {
    padding: 20px;
  }

  .client-logo {
    height: 35px;
    max-width: 70px;
  }

  .client-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .heading {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}

#w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad20-cfcc5d11, #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad27-cfcc5d11, #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad30-cfcc5d11, #w-node-a9a396c8-d8a1-0217-695f-02b4954d3739-cfcc5d11 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4c168eea-3c6a-7eac-8e16-467c32587474-fc03c1b6 {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-db9b9103-7a52-84ab-0e2a-66b1c9e2757e-fc03c1b6, #w-node-daa2c4c6-c8ca-a268-77bc-5f591540f3a0-fc03c1b6, #w-node-_049993ed-03f9-50a3-55d2-bdff13bced2f-fc03c1b6, #w-node-a9a396c8-d8a1-0217-695f-02b4954d3739-fc03c1b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad20-cfcc5d11 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b3855757-d19c-f292-4aac-5e61bb2e0350-fc03c1b6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db9b9103-7a52-84ab-0e2a-66b1c9e2757e-fc03c1b6 {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad20-cfcc5d11 {
    grid-column-end: 2;
  }

  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad27-cfcc5d11 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad30-cfcc5d11 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-db9b9103-7a52-84ab-0e2a-66b1c9e2757e-fc03c1b6 {
    grid-column-end: 2;
  }

  #w-node-daa2c4c6-c8ca-a268-77bc-5f591540f3a0-fc03c1b6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_049993ed-03f9-50a3-55d2-bdff13bced2f-fc03c1b6 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad20-cfcc5d11 {
    grid-column-end: 2;
  }

  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad27-cfcc5d11 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-eea528f6-bfbd-b32a-d8a3-c33718e0ad30-cfcc5d11 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-db9b9103-7a52-84ab-0e2a-66b1c9e2757e-fc03c1b6 {
    grid-column-end: 2;
  }

  #w-node-daa2c4c6-c8ca-a268-77bc-5f591540f3a0-fc03c1b6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_049993ed-03f9-50a3-55d2-bdff13bced2f-fc03c1b6 {
    grid-area: 3 / 1 / 4 / 2;
  }
}


