@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100&family=Genos:wght@200&family=Kenia&family=La+Belle+Aurore&family=Roboto+Slab:wght@200&family=Rubik+Vinyl&family=Source+Code+Pro:wght@300&display=swap");
:root {
  --light-color: #ccc;
  --extra-light-color: #f4f4f4;
  --max-width: 1300px;
  --primary-color: #ffbc00;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
body {
  font-family: "Noto Sans", sans-serif;
}
img {
  width: 100%;
}
p {
  margin: 1rem 0;
  line-height: 1.4;
}

/* utilities classes */
.container {
  margin: auto;
  max-width: var(--max-width);
}
.my-logo {
  width: 110px;
}
.list {
  display: grid;
  grid-template-columns: repeat(4, auto);
}
.btn {
  padding: 1rem 1rem;
  margin: 1rem 0;
  border: none;
}
.btn-primary {
  background: #ddd;
  color: #000;
  transition: background 0.3s ease;
}
.btn-dark {
  background-color: #333;
  color: white;
  transition: background 0.3s ease;
}
.btn:hover {
  background: var(--primary-color);
}
.el-heading {
  font-size: 4rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 1rem;
}
.l-heading {
  font-size: 3.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 1rem;
}
.m-heading {
  font-size: 2.5rem;
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 0.75rem;
}
.s-heading {
  font-size: 1.5rem;
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 0.5rem;
}
.text-center {
  text-align: center;
}
.text-bold {
  font-weight: bolder;
}

.py-1 {
  padding: 1rem 0;
}
.py-2 {
  padding: 1.5rem 0;
}
.py-3 {
  padding: 2rem 0;
}
.my-1 {
  margin: 1rem 0;
}
.my-2 {
  margin: 1.5rem 0;
}
.my-3 {
  margin: 2rem 0;
}

.short-line {
  border-bottom: var(--primary-color) 3px solid;
  width: 80px;
  margin: auto;
  margin-bottom: 0.75rem;
}
.text-fields input,
.text-fields textarea {
  font-family: "Genos", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

/* showcase-img */
.border {
  border: 1px var(--light-color) solid;
  border-radius: 10px;
}

/* navbar styling */
#main-header {
  background: url("/img/showcase.jpg") no-repeat center center/cover;
  height: 100vh;
}
#navbar .img-container {
  height: 100%;
  background: url("/img/showcase.jpg") no-repeat 20% 30% / cover;
  border-bottom: 2px var(--primary-color) solid;
}

#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#navbar .list li {
  padding: 1.5rem 1rem;
}
#navbar .list li a {
  color: #fff;
  transition: all 0.2s ease-in;
  padding-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 3px transparent solid;
}
#navbar .list li a.current {
  border-bottom: var(--primary-color) 3px solid;
}
#navbar .list li a:hover {
  border-bottom: #fff 3px solid;
}
#showcase .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90vh;
  color: #fff;
}

/* speciality content css */
#awards-special {
  padding: 2rem 0;
}
#awards-special .container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 1;
  text-align: center;
  padding: 2rem;
}
#awards-special .container i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#awards-special .award-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#awards-special .award-container .card:nth-child(odd) {
  background: var(--extra-light-color);
}
#awards-special .award-container .card:nth-child(even) {
  background: var(--light-color);
}
#awards-special ul {
  text-align: center;
  padding: 3rem;
}
#awards-special ul li:last-child {
  font-size: 2rem;
  font-weight: bolder;
}
#awards-special ul li:nth-child(2) {
  font-size: 1.5rem;
  font-weight: bolder;
  margin: 0.5rem;
}

/* progress section */
#progress {
  padding: 2rem 0;
}
#progress .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1;
  text-align: center;
  padding: 2rem;
}
#progress .award-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1rem;
}

#progress .container i {
  color: #fff;
  margin-bottom: 1rem;
  background: #333;
  padding: 3rem;
  border-radius: 100%;
  transition: all 1s ease;
  position: relative;
}
#progress .container .progress-step {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  font-size: 30px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: all 1s;
  padding-top: 10px;
}
#progress .container i:hover .progress-step {
  background: #333;
}
#progress .container i:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}
#progress .container .process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin: auto;
  margin-bottom: 2rem;
}

/* main-footer */
#main-footer {
  background: #333;
  color: white;
  padding: 1rem;
}
#main-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main-footer a i {
  color: white;
  font-size: 1.5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0.5rem;
  margin-right: 10px;
}
#main-footer a i:hover {
  background: var(--primary-color);
}

/* about page css */
#inner-header {
  background: url("../img/showcase.jpg") no-repeat 20% 30% / cover;
  height: 5.5rem;
  border-bottom: 3px solid #ffbc00;
}
#about-me .about-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 1rem;
}
#about-me .about-container > div {
  padding: 1rem;
  border-left: 3px var(--primary-color) solid;
  background: var(--extra-light-color);
}
#about-award .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#about-award .container .card {
  text-align: center;
}
#about-award .container i {
  color: var(--primary-color);
}

/* about progress css */
#about-progress {
  background: #333;
  color: white;
}
#about-progress .container {
  margin: 1.5rem auto;
}
#about-progress .line {
  background: var(--primary-color);
  height: 20px;
  width: 100%;
  overflow: hidden;
  background: var(--light-color);
  margin-bottom: 0.75rem;
  border-radius: 5px;
}
#about-progress .line div {
  height: 100%;
  color: #fff;
  text-align: center;
  background: #ffbc00;
  border-radius: 5px;
}

/* special container */
#special {
  background: var(--extra-light-color);
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1;
}
#special img {
  width: 80%;
  height: 100%;
}

/* testimonials section */
#testimonials .test-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1;
}
#testimonials .test-container > div {
  margin: 0.5rem;
}
#testimonials .test-container > div p {
  padding: 0.5rem;
}
#testimonials .test-container > div div {
  display: flex;
  align-items: center;
}
#testimonials .test-container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 1rem;
}

/* about work  */

.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.item {
  position: relative;
  background: #ffbc00;
  overflow: hidden;
}
.item::after {
  content: "";
  position: absolute;
  display: block;
  background: inherit;
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1);
}
.item:hover:after {
  transform: scale(2) translateX(0) translateY(0) rotate(-28deg);
}
.item:hover .item-image {
  transform: scale(1.2);
}
.item:hover .item-text {
  opacity: 1;
  transform: translateY(0);
}
.item-image {
  height: auto;
  transform: translateZ(0);
  display: block;
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.item-image:before {
  content: "";
  display: block;
  padding-top: 75%;
  overflow: hidden;
}
.item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
}
.item-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  z-index: 1;
  color: #fff;
  transform: translateY(-20%);
  transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 300ms;
}
.item-text-wrap {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.item-text-title {
  font-size: 2rem;
  padding: 0 1rem;
  margin: 5px 0 0 0;
}
.item-text-category {
  text-transform: uppercase;
  font-size: 1.2rem;
  opacity: 0.7;
  margin: 0;
}
/* contact form  */
#invite {
  background: var(--primary-color);
  margin: -16px 0;
  color: white;
  padding: 2rem;
}
#personal-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2;
  text-align: center;
  background: #333;
  color: white;
  padding: 2rem;
}
#contact-a .text-fields {
  display: grid;
  grid-template-areas: "name email" "subject phone" "message message";
  grid-gap: 1.2rem;
  margin-bottom: 1.2rem;
}
#contact-a .container {
  max-width: 950px;
}
#contact-a .text-fields .name-input {
  grid-area: name;
}
#contact-a .text-fields .subject-input {
  grid-area: subject;
}
#contact-a .text-fields .email-input {
  grid-area: email;
}
#contact-a .text-fields .phone-input {
  grid-area: phone;
}
#contact-a .text-fields .message-input {
  grid-area: message;
  height: 100px;
}
#contact-a .text-fields .text-input {
  padding: 0.5rem 1rem;
}

#contact-a button[type="submit"] {
  width: 50%;
  font-size: 1rem;
}

@media all and (max-width: 1300px) and (min-width: 1100px) {
  .container {
    max-width: 1100px;
  }
}
@media all and (max-width: 1100px) and (min-width: 950px) {
  .container {
    max-width: 950px;
  }
}
@media all and (max-width: 810px) and (min-width: 500px) {
  .l-heading {
    font-size: 2.5rem;
  }
  .container {
    max-width: 800px !important;
  }
  #progress .container {
    padding: 1rem;
    overflow-x: scroll;
  }
  #progress .container::-webkit-scrollbar {
    display: none;
  }
  #progress .card {
    margin: 0.25rem;
  }
  #progress .container .card i {
    padding: 1rem !important;
    font-size: 2rem;
    margin: 1rem !important;
  }
  #awards-special .award-container {
    overflow-x: scroll;
  }
  #awards-special .award-container::-webkit-scrollbar {
    display: none;
  }
  #testimonials .test-container {
    overflow-x: scroll;
  }
  #testimonials .test-container::-webkit-scrollbar {
    display: none;
  }
  #testimonials .test-container .card > p {
    margin-bottom: 2rem;
  }
}
