/* -----------------
global settings 
------------------*/
@font-face {
  font-family: "Inter Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Regular"), url("../fonts/Inter-Regular.woff") format("woff");
}

@font-face {
  font-family: "Inter Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Italic"), url("../fonts/Inter-Italic.woff") format("woff");
}

@font-face {
  font-family: "Inter Thin BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Thin BETA"),
    url("../fonts/Inter-Thin-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Thin Italic BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Thin Italic BETA"),
    url("../fonts/Inter-ThinItalic-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Extra Light BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Extra Light BETA"),
    url("../fonts/Inter-ExtraLight-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Extra Light Italic BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Extra Light Italic BETA"),
    url("../fonts/Inter-ExtraLightItalic-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Light BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Light BETA"),
    url("../fonts/Inter-Light-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Light Italic BETA";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Light Italic BETA"),
    url("../fonts/Inter-LightItalic-BETA.woff") format("woff");
}

@font-face {
  font-family: "Inter Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Medium"), url("../fonts/Inter-Medium.woff") format("woff");
}

@font-face {
  font-family: "Inter Medium Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Medium Italic"),
    url("../fonts/Inter-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: "Inter Semi Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Semi Bold"),
    url("../fonts/Inter-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Inter Semi Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Semi Bold Italic"),
    url("../fonts/Inter-SemiBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Inter Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Bold"), url("../fonts/Inter-Bold.woff") format("woff");
}

@font-face {
  font-family: "Inter Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Bold Italic"),
    url("../fonts/Inter-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Inter Extra Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Extra Bold"),
    url("../fonts/Inter-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Inter Extra Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Extra Bold Italic"),
    url("../fonts/Inter-ExtraBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Inter Black";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Black"), url("../fonts/Inter-Black.woff") format("woff");
}

@font-face {
  font-family: "Inter Black Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Inter Black Italic"),
    url("../fonts/Inter-BlackItalic.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
::before,
::after {
  box-sizing: border-box;
}
body {
  font-family: "Inter Regular";
  font-weight: normal;
  font-size: 16px;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
h1 {
  font-weight: 700;
}
h2 {
  font-weight: 600;
}
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
p {
  font-size: 16px;
}
.container {
  width: 85%;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

/* -----------------
header 
------------------*/
.header {
  width: 100%;
  padding-top: 30px;
}
.header .logo img {
  width: 70px;
}

/* -----------------
home section 
------------------*/
.home-section {
  position: relative;
  width: 100%;
  height: 680px;
  background-image: url("../img/graphic1.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 60% 100%;
}
.home-section .about {
  width: 35%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-section .about .name {
  width: 100%;
  text-align: left;
}
.home-section .about .name p {
  font-family: "Inter Bold";
  font-size: 54px;
}
.home-section .about .designation {
  width: 100%;
  text-align: left;
}
.home-section .about .designation p {
  font-family: "Inter Bold";
  font-size: 30px;
  margin-top: -5px;
}
.home-section .about .description {
  width: 100%;
  text-align: left;
}
.home-section .about .description p {
  font-family: "Inter Regular";
  font-size: 20px;
  margin-top: 50px;
  line-height: 30px;
}
.home-section .hireme {
  width: 30%;
  position: absolute;
  bottom: 20px;
}
.home-section .hireme .hireme-heading p {
  font-family: "Inter Bold";
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
}
.home-section .hireme .hireme-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-section .hireme .hireme-items .hireme-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-section .hireme .hireme-items .hireme-item a {
  font-family: "Inter Bold";
  font-size: 18px;
  margin-left: 5px;
  color: #000000;
}

/* --------------
Testimonials
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow Semi Condensed", sans-serif;
}
a:link,
a:active,
a:visited,
a:hover {
  color: #3f51b5;
}

.outerdiv {
  width: 100%;
  min-height: 100vh;
  background: #edf2f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerdiv {
  transform: scale(0.9);
  margin: 1rem;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 22rem);
  grid-template-columns: repeat(4, 17rem);
}
.eachdiv {
  padding: 2rem 8rem 3rem 14rem;
  /* border-radius: 0.8rem; */
  /* box-shadow: 5px 5px 20px #6d6b6b6b; */
  color: white;
}
.div1 {
  background: #49505a;
  grid-column: 1/3;
  grid-row: 1/2;
  background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  /* padding: 2rem 2rem; */
  background-position-x: 4rem;
  background-position-y: 0.5rem;
}
.div2 {
  background: #49556b;
  grid-column: 3/4;
  grid-row: 1/2;
}
.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}
.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}
.div5 {
  background: #18202d;
  grid-column: 2/4;
  grid-row: 2/3;
}
.userdetails {
  display: flex;
}
.imgbox {
  margin-right: 1rem;
}
.imgbox img {
  border-radius: 50%;
  width: 5rem;
  border: 2px solid #cec5c5;
}
.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detbox p {
  margin: 0;
}
.detbox .name {
  color: hsl(0, 0%, 100%);
  /* font-size: 0.9rem; */
  margin-bottom: 0.1rem;
  font-weight: 600;
  font-style: italic;
}
.detbox .name.dark {
  color: #49505a;
}
.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 100%;
  font-size: 0.8rem;
}
.detbox .designation.dark {
  color: #49505a;
}
.detbox-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
}
.detbox-bottom .name {
  color: hsl(0, 0%, 80%);
  margin-bottom: 0.1rem;
  font-weight: 300;
  font-style: italic;
}
.review {
  /* padding-left: .5rem; */
}
.review h4 {
  font-size: 1.4rem;
  color: #fff;
  /* color: #F3DEFF; */
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.review.dark h4 {
  color: #4b5258;
}
.review p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  opacity: 90%;
  line-height: 1.5;
}
.review.dark p {
  color: #0e0e0e;
}
.attribution {
  font-size: 1rem;
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}
.attribution a {
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
}
@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }
  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
  }
  .attribution {
    position: relative;
  }
}

/* --------------
experience
---------------*/
.experience {
  width: 100%;
  padding: 50px 0;
  background-color: #6562cf;
  border-top: 5px solid #ffb510;
}
.experience .experience-heading p {
  font-family: "Inter Bold";
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 30px;
}
.experience .experience-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.experience .experience-items .experience-item {
  width: 48%;
  margin-bottom: 20px;
}
.experience .experience-items .experience-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 26px;
}

/* --------------
people and teams
---------------*/
.teams {
  width: 100%;
  /*padding: 50px 0;*/
  background-image: url("../img/graphic2.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 40% 480px;
  min-height: 480px;
  /* height: 480px; */
  margin-top: 50px;
}
.teams .teams-heading p {
  font-family: "Inter Bold";
  font-size: 34px;
  color: #3f4d79;
  margin-bottom: 30px;
}
.teams .teams-description p {
  width: 65%;
  font-size: 18px;
  color: #000000;
  margin-bottom: 40px;
  line-height: 26px;
}
.teams .teams-list-items {
  width: 55%;
  margin-left: 20px;
}
.teams .teams-list-items .teams-list-item {
  width: 100%;
  display: flex;
  /*flex-wrap: wrap;*/
  margin-bottom: 30px;
}
.teams .teams-list-items .teams-list-item img {
  margin-right: 15px;
  width: 15px;
  height: 15px;
}
.teams .teams-list-items .teams-list-item p {
  font-size: 18px;
  color: #000000;
  line-height: 26px;
}
.teams-img-sm {
  display: none;
}
.teams-img-sm img {
  display: block;
  width: 80%;
  margin: 20px auto 30px auto;
}
/* --------------------
software and platform
---------------------*/
.software {
  background-image: none;
  background-image: url("../img/graphic4.svg");
  background-size: 50% 100%;
}
.software .teams-description p {
  width: 64%;
}
.software .teams-list-items {
  width: 54%;
}

/* ----------------------------
architecture and infrastructure
-----------------------------*/
.architecture {
  background-image: none;
  position: relative;
  /* height: 620px; */
  background-color: #fafafa;
  padding: 50px 0 0 0;
  margin-top: 0px;
}
.teams.architecture .teams-description p {
  width: 100%;
}
.architecture .bg-img {
  /* position: absolute;
  top: 230px;
  left: 0; */
  width: 100%;
}
.architecture .bg-img img {
  width: 100%;
}
.architecture .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.architecture .container .head-desc {
  width: 52%;
}
.architecture .container .items {
  width: 48%;
  padding-top: 110px;
}
.architecture .container .items .teams-list-items {
  width: 100%;
  margin-left: 0;
}
.architecture .container .items .teams-list-items-2 {
  width: 100%;
  margin-top: 50px;
  margin-left: 70px;
}
.architecture .container .items .teams-list-items-2 .teams-list-item {
  margin-bottom: 10px;
}
.architecture .container .items .teams-list-items-2 .teams-list-item {
  font-size: 18px;
  color: #000000;
}
.architecture .container .items .teams-list-items-2 .teams-list-item img {
  margin-right: 10px;
  width: 10px;
}

/* --------------
processes
---------------*/
/* --------------
footer
---------------*/
.footer {
  width: 100%;
  padding: 20px 0;
  background-color: #3f4d79;
}
.footer .row {
  justify-content: space-between;
}
.footer .hireme {
  width: 40%;
}
.footer .hireme .hireme-heading p {
  font-family: "Inter Bold";
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
}
.footer .hireme .hireme-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .hireme .hireme-items .hireme-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .hireme .hireme-items .hireme-item a {
  font-family: "Inter Bold";
  font-size: 18px;
  margin-left: 5px;
  color: #ffffff;
}
.footer .copyright {
  width: 44%;
}
.footer .copyright p {
  margin-top: 50px;
  font-family: "Inter Regular";
  font-size: 18px;
  color: rgb(255, 255, 255);
  text-align: right;
}
.footer .copyright p a {
  font-family: "Inter Bold";
  color: #ffffff;
}

/* --------------
responsive
---------------*/
@media (max-width: 767px) {
  .container {
    width: 90%;
  }
  .header .logo img {
    width: 50px;
  }

  .home-section {
    height: auto;
    padding: 30px 0 0 0;
    background-image: none;
  }
  .home-section .about {
    width: 100%;
    display: block;
    height: auto;
  }
  .home-section .about .name p {
    font-size: 44px;
  }
  .home-section .about .designation p {
    font-size: 24px;
  }
  .home-section .about .description p {
    margin-top: 30px;
  }
  .home-section .hireme {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .home-section .hireme .hireme-heading p {
    text-align: left;
    font-size: 24px;
  }
  .home-section .hireme .hireme-items .hireme-item {
    margin-bottom: 10px;
  }
  .home-section .hireme .hireme-items .hireme-item img {
    width: 25px;
  }

  .experience .experience-heading p {
    font-size: 24px;
  }
  .experience .experience-items .experience-item {
    width: 100%;
  }
  .experience .experience-items .experience-item p {
    font-size: 16px;
  }

  .teams {
    height: auto;
    padding-bottom: 20px;
    background-image: none;
  }
  .teams .teams-heading p {
    font-size: 24px;
  }
  .teams .teams-description p {
    font-size: 16px;
    width: 100%;
  }
  .teams-img-sm {
    display: block;
  }
  .teams .teams-list-items {
    width: 100%;
    margin-left: 0;
  }
  .teams .teams-list-items .teams-list-item p {
    font-size: 16px;
  }

  .architecture .bg-img {
    display: none;
  }
  .architecture .container .head-desc {
    width: 100%;
  }
  .architecture .container .items {
    width: 100%;
    padding-top: 0;
  }
  .architecture .container .items .teams-list-items-2 {
    margin-left: 20px;
  }
  .architecture .container .items .teams-list-items-2 .teams-list-item {
    word-break: break-all;
    margin-right: 15px;
  }

  .footer .hireme {
    width: 100%;
  }
  .footer .hireme .hireme-heading p {
    font-size: 24px;
  }
  .footer .hireme .hireme-items {
    justify-content: space-between;
  }
  .footer .hireme .hireme-items .hireme-item a {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer .copyright {
    width: 100%;
  }
  .footer .copyright p {
    text-align: left;
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 95%;
  }
  .home-section {
    height: 420px;
  }
  .home-section .about {
    display: block;
    height: auto;
    margin-top: 30px;
  }
  .home-section .about .name p {
    font-size: 34px;
  }
  .home-section .about .designation p {
    font-size: 22px;
  }
  .home-section .about .description p {
    font-size: 16px;
    margin-top: 10px;
  }
  .home-section .hireme {
    bottom: 10px;
  }
  .home-section .hireme .hireme-heading p {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .home-section .hireme .hireme-items .hireme-item {
    margin-bottom: 5px;
  }

  .experience .experience-heading p {
    font-size: 22px;
  }
  .experience .experience-items .experience-item p {
    font-size: 16px;
  }

  .teams {
    margin-top: 0;
    padding: 50px 0;
    height: auto;
  }
  .teams .teams-heading p {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .teams .teams-description p {
    margin-bottom: 30px;
  }
  .teams .teams-list-items .teams-list-item:nth-child(2) {
    margin-bottom: 0;
  }
  .teams .teams-description p,
  .teams .teams-list-items .teams-list-item p {
    font-size: 16px;
  }
  .teams .teams-list-items .teams-list-item img {
    width: 12px;
    height: 12px;
  }

  .architecture .container .items .teams-list-items-2 {
    margin-left: 20px;
  }
  .architecture .container .items .teams-list-items-2 .teams-list-item {
    font-size: 16px;
    word-break: break-all;
    padding-right: 20px;
  }

  .processes {
    height: auto;
    padding-bottom: 10px;
  }

  .footer {
    padding: 40px 0;
  }
  .footer .hireme {
    width: 50%;
  }
  .footer .hireme .hireme-items {
    justify-content: space-between;
  }
  .footer .hireme .hireme-items .hireme-item {
    margin-bottom: 5px;
  }
  .footer .copyright {
    width: 50%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .home-section {
    height: 560px;
  }
  .home-section .about {
    display: block;
    height: auto;
    margin-top: 70px;
  }
  .home-section .about .name p {
    font-size: 44px;
  }
  .home-section .about .designation p {
    font-size: 28px;
  }
  .home-section .hireme {
    width: 35%;
  }
  .home-section .hireme .hireme-heading p {
    font-size: 28px;
  }
  .home-section .hireme .hireme-items .hireme-item img {
    width: 20px;
  }
  .home-section .hireme .hireme-items .hireme-item a {
    font-size: 14px;
  }

  .experience .experience-heading p,
  .teams .teams-heading p {
    font-size: 28px;
  }

  .architecture .container .items .teams-list-items-2 .teams-list-item {
    font-size: 16px;
    word-break: break-all;
    padding-right: 20px;
  }

  .footer {
    padding: 40px 0;
  }
  .footer .hireme {
    width: 50%;
  }
}

@media (min-width: 1290px) {
}
