:root {
  --color:#478B8D;
  --color-2:#3E4249;
  --color-3:#e4e4e6;
  --color-4:rgb(2, 162, 167);
  --color-5:#f44336;
  --color-6:#ee6784;
  --color-7:#f5ca75;
  --color-8:#f4f4f5;
}
@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight:lighter;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight:100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight:bold;
  font-style:normal
}
@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight:400;
  font-style:normal
}

@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("./../asset/Poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight:normal;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: unset;
  color: unset;
  font-family: "Poppins";
  font-weight: 400;
  box-sizing: border-box;
}
* body {
  font-family: sans-serif;
}

header {
  overflow-x: hidden;
}

body {
  background-color: var(--color-3);
}

::-webkit-scrollbar {
  width: 10px;
}

a {
  text-decoration: none;
  color: unset;
}

html {
  scroll-behavior: smooth;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #3E4249;
}

::-webkit-scrollbar-thumb {
  background-color: #478B8D;
}

.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line-break {
  margin-block: 1rem;
  background-color: #f5ca75;
  width: 100%;
  height: 1px;
}

.line-break-mid {
  margin-block: 1rem;
  background-color: #f5ca75;
  width: 100%;
  height: 3px;
}

h1{
  font-family: "Poppins";
  
}
h3{
  font-family: "Poppins";
  font-weight: 300;
}

p{
  font-family: "Poppins";
  font-weight: 400;
}

li,a{
  
  font-family: "Poppins";
  font-weight: 300;
}
body{
  font-family: "Poppins";
}
li{
  list-style: none;
}

.header {
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 120px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: flex-start;
  text-align: center;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.nav-links a {
  font-weight: 300;
  color: var(--color-2);
}

.nav-links li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--color-3);
  display: block;
  margin: 0.4rem auto;
  transition: 0.5s;
}

.nav-links li:hover::after {
  width: 100%;
}

.close {
  cursor: pointer;
  display: none;
  margin: 0;
  padding: 0;
  width: 50px;
}

.bars {
  display: none;
  margin: 0;
  padding: 0;
  width: 50px;
  cursor: pointer;
}

.sticky {
  padding: 1rem 1rem;
  background: rgb(2, 162, 167);
}

#click {
  font-size: 1rem;
}



@media (max-width: 900px) {
  .nav-links a {
    color: var(--color-3);
  }
  .close {
    display: block;
  }
  .text-box h1 {
    font-size: 2.2rem;
  }
  .nav-links ul li {
    display: block;
  }
  .bars {
    display: block;
  }
  .nav-links {
    height: 100vh;
    position: absolute;
    background: var(--color-2);
    height: 100vh;
    width: 30vh;
    padding: 1em;
    top: 0;
    right: -500px;
    text-align: left;
    z-index: 2;
    transition: ease 0.5s;
  }
  .nav-links ul {
    padding-top: 8rem;
  }
}
.container {
  background-color: #3E4249;
  width: 97%;
  margin: 1rem auto;
  margin-bottom: 0;
  color: #f4f4f5;
  padding: 1rem;
  z-index: 1000;
}

.hero__section {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
}

.g-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.greatings h1 {
  font-family:"Poppins";
  font-weight: 300;
  font-size: 3.4rem;
  color: #C0DFB8;
  margin: 0;
  padding: 0;
  /* line-height: 1; */
}

.greatings .greating_p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.1rem;
  color: #f4f4f5;
}

.hero__imag img {
  max-width: 700px;
  width: 100%;
}

.date {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 1.2rem;
  color: #C0DFB8;
}

@media screen and (max-width: 1400px) {
  .greeating_h2 p {
    font-size: 2.7rem;
  }
  .date {
    display: none;
  }
  .hero__section {
    display: flex;
    gap: 1rem;
  }
  .hero__imag {
    align-self: start;
  }
}
/* tablet */
@media screen and (max-width: 61.1875rem) {
  .greeating_h2 p {
    font-size: 2.7rem;
  }
  .date {
    display: none;
  }
  .hero__section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: unset;
  }
  .hero__imag {
    align-self: center;
  }
}
/* SKILLS */
.skills {
  margin-top: 9rem;
  border-top: 1px solid #C0DFB8;
  padding-top: 3rem;
}

.skill__contianer {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 30px;
  padding-block-start: 72px;
}

.skills__title {
  font-size: 1.6rem;
}

.skill__title_h2 {
  text-align: center;
  font-size: 4rem;
}

/* tablet */
@media screen and (max-width: 61.1875rem) {
  .skill__contianer {
    display: grid;
    padding: 0.7rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 20px;
    text-align: center;
  }
  .skill__title_h2 {
    font-size: 6rem;
    color: #f5ca75;
  }
  .skills__title {
    font-size: 1.9rem;
    margin-bottom: 0.4rem;
  }
  .skills__description {
    font-size: 1.1rem;
  }
}
/* mobile */
@media screen and (max-width: 61.1875rem) {
  .skill__contianer {
    display: grid;
    padding: 8rem;
    padding-top: 12rem;
  }
  .poster_items {
    grid-template-columns: 1fr;
  }
  .skill__contianer {
    background-color: #478B8D;
    border-radius: 0.5rem;
    padding: 1rem;
  }
  .skills__title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .skills__description {
    font-size: 0.9rem;
  }
}
.mywork {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 22rem;
  background: url(../asset/bg_flower1.png);
  background-position: center;
  background-size: cover;
}
.mywork .mywork_h1 {
  font-size: 3rem;
  text-transform: uppercase;
}
.mywork ul {
  display: flex;
  justify-content: space-between;
  min-width: 240px;
  max-width: 540px;
}
.mywork ul li {
  cursor: pointer;
  font-size: 1.3rem;
}
.mywork ul li:hover {
  color: rgb(2, 162, 167);
  border-bottom: 1px solid rgb(2, 162, 167);
}

/* Web porfolio */
.web__design {
  margin-bottom: 8rem;
  padding: 2rem;
  background-color: #033738;
  color: #e4e4e6;
  font-size: 1.2rem;
}

.web__design ul li {
  padding-bottom: 0.1rem;
}

.web__design_exp .heading {
  font-size: 3rem;
  margin-top: 1rem;
  color: #f5ca75;
}

.web__design_exp {
  padding: 1rem;
}

.web__showcase {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.web__design img {
  object-fit: contain;
  padding: 0;
  margin: 0;
}

.web__showcase__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 420px;
  padding-bottom: 2rem;
}

.web__showcase__item img {
  max-width: 400px;
  height: 600px;
  object-fit: contain;
}

.web__showcase__item .sm {
  width: 300px;
  object-fit: contain;
}

.web__showcase__item button {
  margin-top: 0.4rem;
  width: 11rem;
  border-radius: 0.1rem;
  outline: none;
  border: none;
  background-color: #bf173b;
  color: #f4f4f5;
  font-size: 1.5rem;
}

/* mini desktop */
@media screen and (max-width: 1400px) {
  .web__design {
    padding: 0;
  }
  .web__showcase {
    flex-wrap: wrap;
  }
}
/* tablet */
@media screen and (max-width: 61.1875rem) {
  .web__showcase__item img {
    max-width: 355px;
  }
}
/* mobile */
@media screen and (max-width: 61.1875rem) {
  .web__showcase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  .web__showcase__item img {
    max-width: 355px;
  }
}
/* Graphic design */
.gfx__design {
  padding: 2rem;
  background-color: #033738;
  color: #e4e4e6;
  font-size: 1.2rem;
}

.gfx__design ul li {
  padding-bottom: 0.1rem;
}

.gfx__design_exp .heading {
  font-size: 3rem;
  margin-top: 1rem;
  color: #f5ca75;
}

.poster {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}

.poster_items {
  gap: 1rem;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: auto;
}

.poster_item img {
  min-width: 200px;
  max-width: 366px;
  width: 100%;
}

.cover {
  max-width: 600px;
}

.logos {
  margin-top: 1rem;
  width: 100%;
  background-color: #e4e4e6;
  border: 2px solid #478B8D;
  border-radius: 1rem;
}

.logo_items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
}

.logo_item img {
  max-width: 100px;
}

/* tablet */
@media screen and (max-width: 61.1875rem) {
  .web__showcase__item img {
    max-width: 355px;
  }
  .process_card:first-of-type {
    margin-bottom: 4rem;
  }
  .process__cards {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
  }
  body {
    font-size: 20px;
  }
  .greeating_h2 p {
    font-size: 2.7rem;
  }
  .date {
    display: none;
  }
  .hero__section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: unset;
  }
  .hero__imag {
    align-self: center;
  }
  .poster_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .poster_item:nth-child(4) {
    grid-column: 1/4;
    grid-row: 3/4;
  }
  .logo_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo_item {
    margin: auto;
  }
  .contact_section {
    flex-direction: column;
    width: 100%;
  }
  .contact_desc {
    margin-left: 1rem;
  }
  .side-bg {
    display: none;
    font-size: 2rem;
  }
  .faq {
    width: 100%;
  }
}
/* mobile */
@media screen and (max-width: 61.1875rem) {
  .poster_items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .poster {
    display: flex;
    flex-direction: column;
  }
}
.process__section {
  padding-inline: 1.4rem;
}

.process__section .heading {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 3rem;
  color: #478B8D;
}

.process__cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.process_card img {
  width: 200px;
  margin-top: -7rem;
}

.process_card .dev {
  width: 300px;
  margin-top: -12rem;
}

.process_card:nth-of-type(2) {
  background-color: #033738;
  color: #e4e4e6;
}

.process_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24rem;
  background-color: #f4f4f5;
  padding: 1.6rem;
  border-radius: 0.3rem;
}
.process_card p{
  font-weight: 400;
}
.process_card_h1 {
  padding-top: 0.6rem;
  font-size: 1.5rem;
  color: #ee6784;
}

.process_card:nth-of-type(2) .process_card_h1 {
  color: #ffaa00;
}

/* tablet */
@media screen and (max-width: 61.1875rem) {
  .process_card:first-of-type {
    margin-bottom: 4rem;
  }
  .process__cards {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
  }
}
.contact {
  display: flex;
  position: relative;
}

.contact_section {
  display: flex;
  width: 93%;
  margin-top: 6rem;
  z-index: 22;
  background-color: #3E4249;
  padding-bottom: 2rem;
}

.contact img .title {
  font-size: 3rem;
  margin: 2rem 0rem;
}

.contact_section_part {
  padding-left: 1.2rem;
}

.contact_desc {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact_desc p {
  padding-top: 2rem;
  color: #C0DFB8;
  width: 32rem;
  font-size: 3rem;
}

.faq {
  max-width: 300px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgb(2, 162, 167);
  cursor: pointer;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question .ques_heading {
  font-size: 1.8rem;
  color: #f4f4f5;
  margin-bottom: 0.4rem;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.2s ease;
  border-left: 1px solid #ee6784;
}

.answer p {
  padding-top: 0.7rem;
  line-height: 1.4;
  font-size: 1.2rem;
}

.faq.active .answer {
  max-height: 760px;
  animation: fade 1s ease-in-out;
}

svg {
  transition: transform 0.5s ease-in;
}

.faq.active svg {
  transform: rotate(180deg);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.side-bg {
  width: 200px;
  height: 200px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2222;
  padding-right: 0.5rem;
}

.answer-list {
  margin-bottom: 1rem;
}

.anwer-heading {
  color: #f4f4f5;
  font-size: 0.9rem;
}

.anwer-p {
  color: #C0DFB8;
}

.answer-lists {
  padding: 1em;
  padding-left: 2em;
}

.card--work-history {
  padding: 1em;
  margin-top: 2em;
  padding-left: 2em;
}

.card--work-history .strong {
  color: #e4e4e6;
  font-size: 0.9rem;
}

.contact_section {
  max-width: 2000px;
}

.card--work-history p {
  color: #C0DFB8;
}

/* tablet */
@media screen and (max-width: 61.1875rem) {
  .side-bg {
    display: none;
  }
  .contact_section {
    width: 100%;
  }
  .contact_desc {
    margin-left: 1.7rem;
  }
  .contact_desc p {
    width: 23rem;
  }
}
@media (max-width: 747px) {
  .contact_section {
    flex-direction: column;
    width: 100%;
  }
  .contact_desc {
    margin-left: 1rem;
  }
  .contact_desc p {
    font-size: 1.7rem;
  }
}
.logo {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo img {
  width: 50px;
}

.logo p {
  font-size: 1.5rem;
}

/*# sourceMappingURL=index.css.map */
