/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/

html {
  font-family: "Inter", sans-serif;
  background-color: #fff;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background-color: #fff;
  font-weight: 400;
  font-style: normal;
  color: #373737;
  font-size: 14px;
}

a,
a:hover,
a:focus,
i,
input,
button,
input:focus,
.transition {
  text-decoration: none;
  outline: none;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
  box-shadow: none;
}

a {
  color: #000;
}

iframe {
  border: 0;
  outline: none;
}

::-moz-selection {
  background: #000;
  text-shadow: none;
  color: #fff;
}

::selection {
  background: #000;
  text-shadow: none;
  color: #fff;
}

img {
  max-width: 100%;
  border: none;
  outline: none;
  height: auto;
}

input,
textarea {
  border-radius: 0;
  resize: none;
}

ul {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2"),
    url("/assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent;
  background-image: none;
  color: #000;
}

/* 1.2 Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

figure {
  margin: 0;
}

svg,
img {
  max-width: 100%;
  height: auto;
}

/*-----------------------------------------------------------------
  1. >>> Header Style
----------------------------------------------------------------*/

.ds-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background-color: #fff;
  padding: 15px 0;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.ds-header.ds-fixed-header {
  padding: 0px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

.ds-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ds-logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #2c2c6f;
  display: flex;
  align-items: center;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

.ds-logo img {
  width: 85px;
  margin: 3px 9px 3px 0;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

.ds-header-inner:hover .ds-logo img {
  width: 91px;
  margin: 0 9px 0 0;
}

.ds-logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-right: 12px;
}

.ds-header-inner:hover .ds-logo {
  color: #2c2c6f;
  letter-spacing: 3px;
}

.ds-social {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ds-social li {
  margin-left: 12px;
}

.ds-social li:first-child {
  margin-left: 0;
}

.ds-social li a {
  border-radius: 100%;
  color: #fff;
  width: 32px;
  height: 32px;
  background-color: #2c2c6f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
}

.ds-social li a:hover {
  background-color: #f26464;
  color: #fff;
}

/*-----------------------------------------------------------------
  2. >>> Banner Style
----------------------------------------------------------------*/
.ds-banner {
  margin-top: 120px;
}

.ds-banner section {
  padding-left: 70px;
  padding-right: 100px;
}

.ds-banner section h1 span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 30px;
  margin-top: 15px;
}

.ds-banner section h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #373737;
}

.ds-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-top: 60px;
}

.ds-numbers li {
  margin-right: 60px;
}

.ds-numbers li:last-child {
  margin-right: 0;
}

.ds-numbers strong {
  display: block;
  color: #f26464;
  font-size: 36px;
  font-weight: 800;
}

.ds-numbers span {
  font-size: 16px;
  letter-spacing: 1px;
}

.ds-numbers li:hover {
  color: #f26464;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.myImage {
  padding: 6px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  margin: 3px;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease;
}

.myImage1:hover {
  padding: 2px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.2s;
  /* When the animation is finished, start again */
  animation-iteration-count: 1;
}

@keyframes shake {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  5% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  35% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  65% {
    transform: translate(-2px, -1px) rotate(1deg);
  }

  95% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

/*-----------------------------------------------------------------
  3. >>> About Style
----------------------------------------------------------------*/

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

.ds-heading {
  display: inline-block;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  border-bottom: 3px solid #f26464;
  padding-bottom: 7px;
  margin-bottom: 23px;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.ds-heading:hover {
  box-shadow: magenta;
  color: #f26464;
  border-bottom: 3px solid #be5151;
  cursor: default;
}

.ds-about-section p,
.ds-about-section li {
  color: #373737;
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
  margin-bottom: 60px;
}

.ds-button {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #f26464;
  padding: 17px 30px;
  border: 2px solid #f26464;
  border-radius: 60px;
}

.ds-button:hover {
  background-color: #f26464;
  color: #fff !important;
}

.ds-button.ds-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

.ds-arrow-button i {
  display: inline-block;
  vertical-align: middle;
}

/*-----------------------------------------------------------------
  4. >>> Skills Style
----------------------------------------------------------------*/

.ds-skills-section {
  padding-bottom: 105px;
}

.ds-skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 11px;
}

.ds-skills-list li {
  display: inline-block;
  color: #555;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 27px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.ds-skills-list li:hover {
  border: 1px solid #f26464;
  color: #f26464;
  cursor: default;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

/*-----------------------------------------------------------------
  5. >>> Experience Style
----------------------------------------------------------------*/

.ds-experience-section {
  padding-bottom: 120px;
}

.ds-experience-list section {
  padding-right: 70px;
}

.ds-experience-list {
  padding-top: 15px;
}

.ds-officeName {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.ds-experience-list span {
  display: block;
}

span.ds-year {
  color: #373737;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 10px;
}

span.ds-department {
  color: #373737;
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 30px;
}

.ds-experience-list p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.ds-experience-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 10px;
}

.ds-experience-list ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}

.ds-experience-list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: #373737;
}

/*-----------------------------------------------------------------
  6. >>> Work Style
----------------------------------------------------------------*/

.ds-work-section {
  padding-bottom: 40px;
}

.ds-work-list {
  padding-left: 70px;
  padding-top: 40px;
  padding-right: 70px;
  background-color: #f6f8fa;
  margin-bottom: 40px;
}

.ds-work-list section {
  padding-top: 20px;
  padding-right: 120px;
}

.ds-work-title {
  color: #373737;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.ds-work-list p {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}

.ds-work-list .ds-button {
  margin-top: 20px;
}

.ds-work-det-hed {
  padding-top: 42px;
  padding-bottom: 80px;
}

.ds-work-det-title {
  font-weight: 600;
  color: #000;
  font-size: 48px;
  margin-bottom: 20px;
}

.ds-work-det-dep {
  display: block;
  font-weight: 600;
  color: #000;
  font-size: 18px;
}

.ds-work-content-sec {
  padding: 100px 0;
}

.ds-work-content-sec p {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 30px;
}

.ds-work-content-sec h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.ds-work-content-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-work-content-sec li {
  font-size: 18px;
  line-height: 36px;
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}

.ds-work-content-sec li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: #373737;
}

/*-----------------------------------------------------------------
  7. >>> Footer Style
----------------------------------------------------------------*/

.ds-footer {
  background-color: #000;
  padding: 120px 0;
}

.ds-footer section span {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding-bottom: 20px;
}

.ds-footer section h4 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.ds-footer section p {
  letter-spacing: 1.13px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
}

.ds-footer section .ds-button {
  margin-bottom: 40px;
}

.ds-copyright {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-size: 16px;
}

.ds-copyright a {
  color: rgba(255, 255, 255, 0.5);
}

.ds-copyright a:hover {
  color: #f26464;
}

/*-------------------------------------------------------------------------------
 8. >>> Additional Links
-------------------------------------------------------------------------------*/

.ds-additional-links {
  margin-bottom: 40px;
}

.ds-additional-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 11px;
}

.ds-additional-links li {
  display: inline-block;
  color: #555;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 27px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.ds-additional-links li:hover {
  border: 1px solid #f26464;
  color: #f26464;
  cursor: default;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.ds-additional-links .ds-active li {
  border: 1px solid #f26464;
  color: #f26464;
  cursor: pointer;
}

/*-------------------------------------------------------------------------------
 9. >>> About page
-------------------------------------------------------------------------------*/

.ds-additional-pages {
  padding-top: 60px;
  padding-bottom: 120px;
}

.ds-additional-pages {
  margin-bottom: 60px;
}

.ds-additional-pages ul {
  margin-bottom: 60px;
  margin-top: 20px;
  padding-left: 30px;
}

.ds-additional-pages li {
  margin-bottom: 10px;
}

.ds-additional-pages li strong {
  font-weight: 500;
}

.ds-additional-pages h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.ds-additional-pages a {
  font-weight: 400;
}

.ds-additional-pages a:hover {
  color: #f26464;
}

.ds-additional-pages p,
.ds-additional-pages li {
  color: #373737;
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
}

.ds-additional-pages .ds-section-content {
  margin-bottom: 60px;
}

.ds-section-sub {
  font-size: 20px;
  background: #d3d3d3;
  padding: 10px 20px;
  margin: 20px 0;
  border-radius: 10px;
}

/*-------------------------------------------------------------------------------
 Responsive XS Style @media (max-width: 767px)
-------------------------------------------------------------------------------*/

@media (max-width: 767px) {
  .ds-header,
  .ds-header.ds-fixed-header {
    padding: 0;
  }

  .ds-banner,
  .ds-about-section,
  .ds-additional-pages,
  .ds-skills-section,
  .ds-experience-section,
  .ds-work-section,
  .ds-work-details-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ds-logo img {
    width: 75px;
  }

  .ds-header-inner:hover .ds-logo img {
    width: 81px;
  }

  .ds-logo {
    font-size: 0;
  }

  .ds-banner {
    margin-top: 80px;
  }

  .ds-banner figure {
    padding: 30px 0;
  }

  .ds-banner section {
    padding-left: 0;
    padding-right: 0;
  }

  .ds-banner section h1 span {
    margin-top: 0;
    padding-bottom: 0;
  }

  .ds-banner section h1,
  .ds-work-det-title {
    font-size: 30px;
    line-height: 40px;
  }

  .ds-numbers {
    margin-top: 20px;
  }

  .ds-numbers li {
    margin-right: 30px;
  }

  .ds-numbers strong {
    font-size: 30px;
  }

  .ds-numbers span {
    font-size: 14px;
  }

  .ds-about-section {
    padding-bottom: 60px;
  }

  .ds-about-section p,
  .ds-additional-pages p,
  .ds-work-content-sec p,
  .ds-work-content-sec li {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .ds-about-section li,
  .ds-additional-pages li {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .ds-skills-list li {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .ds-skills-section .col-12,
  .ds-experience-list .col-12 {
    margin-bottom: 40px;
  }

  .ds-skills-section,
  .ds-work-section,
  .ds-experience-section {
    padding-bottom: 0;
  }

  .ds-experience-list section {
    padding-right: 0;
  }

  .ds-work-list {
    padding: 30px;
  }

  .ds-work-list p {
    font-size: 15px;
    line-height: 30px;
  }

  .ds-footer {
    padding: 60px 10px;
  }

  .ds-footer section h4 {
    font-size: 40px;
  }

  .ds-copyright {
    font-size: 14px;
  }

  .ds-footer section {
    padding-bottom: 30px;
  }

  .ds-button {
    padding: 11px 10px;
  }

  .ds-work-details-section {
    padding-top: 30px;
  }

  .ds-work-det-title {
    margin-bottom: 7px;
  }

  .ds-work-content-sec h2 {
    font-size: 20px;
  }

  .ds-work-content-sec {
    padding: 30px 0;
  }

  .ds-work-list section {
    padding-right: 0;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ds-work-list section {
    padding-right: 30px;
  }

  .ds-banner section {
    padding-right: 0px;
  }

  .ds-about-section p,
  .ds-additional-pages p,
  .ds-about-section li {
    font-size: 20px;
    line-height: 30px;
  }

  .ds-numbers li {
    margin-right: 20px;
  }

  .ds-banner section h1,
  .ds-work-det-title {
    font-size: 30px;
    line-height: 32px;
  }

  .ds-numbers strong {
    font-size: 30px;
  }

  .ds-numbers {
    margin-top: 10px;
  }

  .ds-banner section h1 span {
    padding-bottom: 10px;
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ds-banner section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .ds-banner section {
    padding-right: 0;
  }

  .ds-work-list section {
    padding-right: 30px;
    padding-bottom: 60px;
  }
}
