@charset "UTF-8";
/*===================== [ color (define in sass) ] ===========================*/
/*===================== [ import ] =================================*/
/*==============================================  css Reset ==============================================*/
@import url(/vendor/animate/animate.css);
@import url(/vendor/slick/slick.css);
@import url(/vendor/slick/slick-theme.css);
@import url(/css/font.css);
* {
  direction: ltr;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none !important;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8125rem;
}

h6 {
  font-size: 0.9375rem;
}

p {
  margin: 0;
  padding: 0;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Nunito";
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: "Nunito";
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #eee;
  text-decoration: none;
}

big {
  font-size: 125%;
}

blockquote {
  quotes: "" "";
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote:before, blockquote:after {
  content: "";
}

label {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
}

select {
  border: 1px solid #bbb;
  border-radius: 3px;
  height: 3em;
  max-width: 100%;
}

b, strong {
  font-weight: bold;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: "Nunito";
  direction: ltr;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}

input,
textarea,
button,
select, option {
  font-family: "Nunito";
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #383735;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  color: #383735;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  font-weight: 400;
}

ul {
  list-style: none;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

main {
  min-height: 245px;
}

/*======================= [ mixed-in (sass) ] ============================*/
/*_ mixed-in for ( display=flex; flex=1;)_*/
/*_ mixed-in for ( display=flex;)_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = center )_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = space-between )_*/
/*_ mixed-in for ( transition effect )_*/
/*_ mixed-in for ( transition effect )_*/
/*============================ [ breakpoints for responsive in sass ] ==================================*/
/* xsm--Extra small  (smart phones, portrait iPhone, portrait 480x320 phones (Android)) */
/* sm--smart phones, Android phones, landscape iPhone */
/* sm--smart phones, Android phones, landscape iPhone */
/* md-- tablet, landscape iPad, lo-res laptops ands desktops */
/* lg-- hi-res laptops and desktops */
/* xl-- hi-res laptops and desktops */
/* 2xl -- Extra large screens, TV */
/* 3xl -- Extra large screens, TV */
/* 4xl -- Extra large screens, TV */
/*============================ [ container ] ==================================*/
.container {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.slick-track {
  display: flex !important;
  width: 100%;
}

/*need for slick*/
* {
  min-height: 0;
  min-width: 0;
}

.slick-slide {
  height: auto;
  width: 100%;
}

/*<< Start Code  :  >>*/
body {
  color: #383735;
  overflow-x: hidden;
}

.arrow-next,
.arrow-prev {
  position: absolute;
  bottom: 50%;
  background-color: #f7f3f0;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  z-index: 4;
  font-size: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  transform: translateY(50%);
  box-shadow: 0 0 5px rgba(206, 144, 93, 0.5);
}
.arrow-next svg,
.arrow-prev svg {
  color: #ce905d;
  height: 10px;
  width: 10px;
}

.arrow-prev {
  left: 0;
}

.arrow-next {
  right: 0;
}
.arrow-next svg {
  transform: rotate(180deg);
}

/*______________________________________________ [ (header) ] ____________________________________________*/
.bg-header {
  background-color: #f7f3f0;
  height: 500px;
}
@media (max-width: 1140px) {
  .bg-header {
    height: auto;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .bg-header {
    padding-bottom: 40px;
  }
}

/*_____________[ top-header ]______________*/
.top-header { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .top-header {
    flex-wrap: wrap-reverse;
  }
}
.top-header .menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 600px) {
  .top-header .menu {
    justify-content: center;
  }
}
.top-header .menu li.active-page a {
  color: #383735;
  text-shadow: 0 0 1px #ce905d;
}
.top-header .menu li a {
  color: #888481;
  font-size: 16px;
  margin: 0 25px;
  font-weight: 600;
}
@media (max-width: 1140px) {
  .top-header .menu li a {
    margin: 0 10px;
  }
}
@media (max-width: 600px) {
  .top-header .menu li a {
    margin: 0 25px 0 0;
  }
}
@media (max-width: 480px) {
  .top-header .menu li a {
    margin: 0 20px 0 0;
    font-size: 14px;
  }
}
@media (max-width: 346px) {
  .top-header .menu li a {
    margin: 0 15px 0 0;
  }
}
.top-header .menu li a:hover {
  color: #383735;
  text-shadow: 0 0 1px #ce905d;
}

.social { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 600px) {
  .social {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
.social li a {
  width: 35px;
  height: 35px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ce905d;
  margin-left: 10px;
  color: #ce905d;
}
.social li a:hover {
  background-color: #ce905d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(206, 144, 93, 0.5);
}
.social li a svg {
  width: 50%;
  height: 50%;
}
.social li:first-child a {
  margin-left: 0;
}

@media (max-width: 768px) {
  .logo {
    flex-basis: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .logo {
    display: flex;
    justify-content: center;
  }
}

.img-profile {
  height: 150px;
  width: 150px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../images/m14.jpg);
  animation: morph 8s ease-in-out 1s infinite;
  background-blend-mode: multiply;
  box-shadow: inset 0 0 0 9px rgba(206, 144, 93, 0.6);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .img-profile {
    height: 110px;
    width: 110px;
  }
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
/*_____________[ bottom-header ]______________*/
.bottom-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-items: flex-end;
  gap: 30px;
}
@media (max-width: 1140px) {
  .bottom-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.bottom-header .hold {
  width: 100%;
}
.bottom-header .hold:first-child {
  justify-self: baseline;
}
.bottom-header .text {
  padding-top: 60px;
}
@media (max-width: 1400px) {
  .bottom-header .text {
    padding-top: 30px;
  }
}
@media (max-width: 1140px) {
  .bottom-header .text {
    padding-top: 10px;
  }
}
.bottom-header .text h4 {
  font-size: 14px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.bottom-header .text h4 span {
  margin-right: 10px;
  color: #888481;
}
.bottom-header .text .arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #e4bd9c;
}
.bottom-header .text h2 {
  color: #383735;
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 346px) {
  .bottom-header .text h2 {
    font-size: 25px;
  }
}
.bottom-header .image {
  border-radius: 30px;
}
.bottom-header .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.bottom-header .proj-item {
  padding-bottom: 0;
}

.arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #e4bd9c;
}

.btn {
  border-radius: 10px;
  border: 1px solid #ce905d;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.btn .arrow {
  transition: 0.5;
}
.btn:hover {
  background-color: #ce905d;
  color: white;
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.btn span {
  margin-right: 10px;
}
@media (max-width: 600px) {
  .btn {
    font-size: 14px;
  }
}

p.prg {
  color: #9e9993;
  font-weight: 500;
  text-align: justify;
  width: 100%;
  word-spacing: 2px;
}
p.prg span {
  color: #ce905d;
}

#img-slider {
  width: 100%;
  height: 530px;
  z-index: 1000;
  position: relative;
}
@media (max-width: 992px) {
  #img-slider {
    height: 450px;
  }
}
@media (max-width: 768px) {
  #img-slider {
    height: 350px;
  }
}
@media (max-width: 600px) {
  #img-slider {
    height: 300px;
  }
}
@media (max-width: 480px) {
  #img-slider {
    height: 250px;
  }
}
@media (max-width: 346px) {
  #img-slider {
    height: 200px;
  }
}
#img-slider .slick-list, #img-slider .slick-track {
  height: 100%;
  border-radius: 30px;
  width: 100%;
}
#img-slider .proj-item figure {
  width: 100%;
  height: 100%;
}
#img-slider .proj-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#img-slider .proj-item:hover img {
  transform: scale(1);
}

/*______________________________________________ [ (Main) ] ____________________________________________*/
/*_____________[ dots-pattern ]______________*/
.dots-pattern { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
}
@media (max-width: 1140px) {
  .dots-pattern {
    position: relative;
    margin-top: -170px;
    margin-left: -30px;
  }
}
@media (max-width: 768px) {
  .dots-pattern {
    margin-left: -20px;
    margin-top: -115px;
  }
}
.dots-pattern .top-pattern { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .dots-pattern .top-pattern {
    padding-top: 15px;
  }
}
.dots-pattern .dot {
  width: 10px;
  height: 10px;
  background-color: #e4bd9c;
  margin-top: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.dots-pattern .dot.active {
  width: 10px;
  height: 20px;
  background-color: #ce905d;
  margin-top: 15px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .dots-pattern .dot.active {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .dots-pattern .dot {
    width: 8px;
    height: 8px;
    margin-top: 8px;
  }
}
.dots-pattern .line {
  height: 50px;
  width: 1px;
  background-color: #e4bd9c;
  margin: 15px 0;
}
@media (max-width: 768px) {
  .dots-pattern .line {
    height: 20px;
    margin: 8px 0;
  }
}

.dot3, .dot4 {
  background-image: radial-gradient(#e4bd9c 20%, transparent 20%), radial-gradient(#e4bd9c 20%, transparent 20%);
  background-position: 0 0, 20px 20px;
  background-size: 20px 20px;
  display: inline-block;
  transition: 0.9s;
  z-index: -1;
}

.dot3 {
  width: 300px;
  height: 100px;
  transition: 0.9s;
}
.dot3:hover {
  transform: translateY(10px);
}
@media (max-width: 1140px) {
  .dot3 {
    width: 225px;
  }
}

.dot4 {
  width: 150px;
  height: 300px;
  transition: 0.9s;
  position: absolute;
  right: -10%;
  bottom: 0;
  background-image: radial-gradient(#f7f3f0 20%, transparent 20%), radial-gradient(#f7f3f0 20%, transparent 20%);
}

/*_____________[ contact ]______________*/
.contact {
  background-color: #f7f3f0;
  width: 100%;
  border-radius: 30px;
  margin-top: -18px;
  padding: 40px 60px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1140px) {
  .contact {
    align-items: center;
    flex-direction: column;
    padding: 30px;
    margin-top: -60px;
  }
  .contact .phone {
    flex-basis: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 20px;
  }
}
.contact h3 {
  font-size: 25px;
  color: #565553;
}
@media (max-width: 1140px) {
  .contact h3 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .contact p {
    font-size: 10px;
  }
}
.contact .phone {
  margin-bottom: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  background-color: white;
  border-radius: 10px;
}
@media (max-width: 1140px) {
  .contact .phone {
    margin-bottom: 0;
  }
}
.contact .phone .number {
  padding: 15px;
  width: 300px;
  text-align: center;
  color: #888481;
  letter-spacing: 4px;
  font-size: 14px;
}
@media (max-width: 1140px) {
  .contact .phone .number {
    width: 100%;
    padding: 15px 5px;
  }
}
@media (max-width: 600px) {
  .contact .phone .number {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 15px 20px;
  }
}
@media (max-width: 346px) {
  .contact .phone .number {
    padding: 15px 10px;
  }
}
.contact .phone .call {
  background-color: #ce905d; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  border-radius: 0 10px 10px 0;
  color: white;
}
@media (max-width: 600px) {
  .contact .phone .call {
    width: 60px;
  }
}
.contact .phone .call:hover {
  background-color: #e4bd9c;
}
.contact .phone .call svg {
  height: 20px;
  width: 20px;
}

/*_____________[ project ]______________*/
.head-section { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  transition: 0.7s;
}
.head-section h3 {
  font-size: 30px;
}
@media (max-width: 600px) {
  .head-section h3 {
    font-size: 22px;
  }
}
.head-section hr {
  width: 70px;
  background-color: #ce905d;
  height: 4px;
  margin-top: 10px;
  transition: 0.7s;
  align-self: flex-start;
  border: none;
}
@media (max-width: 600px) {
  .head-section hr {
    height: 3px;
  }
}
.head-section span {
  color: #b8a786;
  font-size: 10px;
  padding-top: 5px;
}
.head-section:hover hr {
  width: 100%;
  transform: translateX(10px);
}

.tabs__category--list {
  display: flex;
}
.tabs__category--list li:first-child .tabs__btn {
  margin-left: 0;
}
.tabs__category--list li:hover .tabs__btn, .tabs__category--list li.tabs_active .tabs__btn {
  color: white;
  background-color: #ce905d;
}
.tabs__btn {
  background-color: white;
  border: 1px solid #e4bd9c;
  border-radius: 8px;
  padding: 8px 15px;
  margin-left: 5px;
  font-weight: 600;
  font-size: 12px;
}
.project {
  margin: 60px 0;
  position: relative;
}
.project .btn {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .project .btn {
    width: 100%;
    justify-content: center;
  }
}

.head-project { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.project-content {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  position: relative;
}
@media (max-width: 1140px) {
  .project-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .project-content {
    grid-gap: 10px;
  }
}

.proj-item {
  background-color: white;
  box-shadow: 0 10px 30px rgba(136, 132, 129, 0.1);
  border-radius: 30px;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 600px) {
  .proj-item {
    padding-bottom: 30px;
  }
}
@media (max-width: 346px) {
  .proj-item {
    border-radius: 20px;
  }
}
.proj-item figure {
  height: 250px;
  width: 100%;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .proj-item figure {
    height: 190px;
  }
}
@media (max-width: 600px) {
  .proj-item figure {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .proj-item figure {
    height: 130px;
  }
}
@media (max-width: 346px) {
  .proj-item figure {
    border-radius: 20px 20px 0 0;
    height: 100px;
  }
}
.proj-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 30px 0 0;
  transition: 1.5s;
}
@media (max-width: 346px) {
  .proj-item figure img {
    border-radius: 20px 20px 0 0;
  }
}
.proj-item:hover img {
  transform: scale(1.5);
}

.proj-text {
  padding: 20px;
}
@media (max-width: 1200px) {
  .proj-text {
    padding: 10px;
  }
}
.proj-text p {
  color: #383735;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .proj-text p {
    font-size: 10px;
  }
}
.proj-text .text-bot {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 40px);
}
@media (max-width: 1200px) {
  .proj-text .text-bot {
    width: calc(100% - 20px);
  }
}
.proj-text .text-bot .field {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.proj-text .text-bot .field span {
  margin-left: 3px;
}
@media (max-width: 600px) {
  .proj-text .text-bot .field span {
    font-size: 10px;
  }
}
.proj-text .text-bot .field span::before {
  content: ",";
  padding-right: 3px;
}
.proj-text .text-bot .field span:first-child {
  margin: 0;
}
.proj-text .text-bot .field span:first-child::before {
  content: " ";
  padding: 0;
}
@media (max-width: 1200px) {
  .proj-text .text-bot {
    left: 10px;
  }
}
@media (max-width: 768px) {
  .proj-text .text-bot {
    bottom: 5px;
  }
}
.proj-text .text-bot span {
  color: #b4b4b4;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .proj-text .text-bot span {
    font-size: 10px;
  }
}

.name {
  background-color: #f7f3f0;
  color: #ce905d; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  display: inline-flex;
  padding: 5px 7px;
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .name {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .name {
    font-size: 10px;
  }
}

/*_____________[ about me ]______________*/
.about-me {
  background-color: #f7f3f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
  padding: 60px 0;
}
@media (max-width: 1140px) {
  .about-grid {
    grid-template-columns: 250px 1fr;
  }
}
@media (max-width: 1140px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .about-grid {
    justify-items: center;
  }
}
@media (max-width: 768px) {
  .about-grid .logo {
    flex-basis: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .about-grid .logo {
    display: flex;
    justify-content: center;
  }
}
.about-grid .img-profile {
  height: 400px;
  width: 400px;
  background-position: 50%;
  background-image: url(../images/m9.jpg);
  background-position: center center/cover;
}
@media (max-width: 1800px) {
  .about-grid .img-profile {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 1140px) {
  .about-grid .img-profile {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 1140px) {
  .about-grid .img-profile {
    margin-bottom: 20px;
  }
}
.about-grid .skills { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 16px;
}
@media (max-width: 600px) {
  .about-grid .skills {
    line-height: 2;
  }
}
.about-grid .skills h4 {
  font-size: 16px;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .about-grid .skills h4 {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .about-grid .skills {
    font-size: 13px;
  }
}
.about-grid .skills ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.about-grid .skills ul li {
  color: #888481;
}
.about-grid .skills ul li::after {
  content: ",";
  margin: 0 10px;
}
.about-grid .skills ul li:last-child::after {
  content: "";
}
.about-grid .about-text { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 600px) {
  .about-grid .about-text h1 {
    text-align: center;
  }
}
.about-grid .about-text a {
  margin-top: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  padding: 10px 30px;
  border-radius: 10px;
  align-items: center;
  color: #e4bd9c;
  font-size: 16px;
  font-weight: 500;
  align-self: flex-end;
  border: 1px solid #ce905d;
}
@media (max-width: 600px) {
  .about-grid .about-text a {
    align-self: center;
  }
}
.about-grid .about-text a svg {
  width: 20px;
  height: 20px;
  color: #e4bd9c;
  margin-left: 10px;
}
.about-grid .about-text a:hover {
  background-color: #ce905d;
  color: white;
}

.history {
  margin: 30px 0 30px 0;
}
.history h4 {
  font-size: 16px;
}
@media (max-width: 600px) {
  .history h4 {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .history {
    margin: 30px 0 0 0;
  }
}
.history .road {
  position: relative;
}
.history .road img {
  width: 100%;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1800px) {
  .history .road img {
    height: 70px;
  }
}
@media (max-width: 1140px) {
  .history .road img {
    height: 80px;
  }
}
@media (max-width: 600px) {
  .history .road img {
    height: 70px;
  }
}
.history .road .step {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 30px;
  position: absolute; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 3px 6px rgba(56, 55, 53, 0.05);
  color: #888481;
}
.history .road .step span {
  font-weight: bold;
}
.history .road .step span:last-child {
  font-weight: 400;
  font-size: 13px;
}
@media (max-width: 600px) {
  .history .road .step {
    width: 60px;
    height: 60px;
    border-radius: 15px;
  }
  .history .road .step span:first-child {
    font-size: 12px;
  }
  .history .road .step span:last-child {
    font-size: 10px;
  }
}
.history .road .step::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: -15px;
  background-color: white;
  transform: translateX(-50%);
  border-radius: 50%;
}
.history .road .step1 {
  bottom: -45px;
  left: 50px;
}
@media (max-width: 1800px) {
  .history .road .step1 {
    bottom: -70px;
  }
}
@media (max-width: 1400px) {
  .history .road .step1 {
    left: 20px;
  }
}
@media (max-width: 1140px) {
  .history .road .step1 {
    left: 50px;
    bottom: -65px;
  }
}
@media (max-width: 768px) {
  .history .road .step1 {
    left: 30px;
    bottom: -65px;
  }
}
@media (max-width: 600px) {
  .history .road .step1 {
    bottom: -30px;
  }
}
@media (max-width: 480px) {
  .history .road .step1 {
    bottom: -38px;
  }
}
@media (max-width: 346px) {
  .history .road .step1 {
    bottom: -45px;
  }
}
.history .road .step2 {
  bottom: -72px;
  left: 330px;
}
.history .road .step2::before {
  top: -18px;
}
@media (max-width: 1800px) {
  .history .road .step2 {
    bottom: -60px;
  }
}
@media (max-width: 1400px) {
  .history .road .step2 {
    left: 40%;
    bottom: -65px;
  }
}
@media (max-width: 1140px) {
  .history .road .step2 {
    bottom: -55px;
  }
}
@media (max-width: 600px) {
  .history .road .step2 {
    bottom: -25px;
  }
}
.history .road .step3 {
  bottom: 4px;
  left: 72%;
  background-color: #e4bd9c;
}
.history .road .step3::before {
  top: -20px;
  background-color: #e4bd9c;
}
@media (max-width: 1800px) {
  .history .road .step3 {
    bottom: -40px;
  }
}
@media (max-width: 1400px) {
  .history .road .step3 {
    bottom: -52px;
  }
}
@media (max-width: 1140px) {
  .history .road .step3 {
    bottom: -35px;
  }
}
@media (max-width: 768px) {
  .history .road .step3 {
    bottom: -45px;
  }
}
@media (max-width: 600px) {
  .history .road .step3 {
    bottom: -10px;
  }
}
@media (max-width: 480px) {
  .history .road .step3 {
    bottom: -19px;
  }
}
@media (max-width: 346px) {
  .history .road .step3 {
    bottom: -25px;
  }
}

.about-me .img-profile {
  background-image: url(../images/m14.jpg);
}

/*_____________[ footer ]______________*/
footer {
  background-color: #c9a285;
  padding-top: 60px;
  position: relative;
}
@media (max-width: 600px) {
  footer {
    padding-top: 40px;
  }
}
footer .mid-foot {
  color: white; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .mid-foot .massi {
  font-size: 35px;
  font-weight: bold;
}
footer .mid-foot a {
  color: white;
}
footer .mid-foot .menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  padding: 30px 0;
}
footer .mid-foot .menu li a {
  margin: 0 20px;
  font-weight: 500;
  font-size: 16px;
}
footer .mid-foot .menu li a:hover {
  text-shadow: 0 0 1px white;
}
@media (max-width: 600px) {
  footer .mid-foot .menu li a {
    margin: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer .mid-foot .menu li a {
    margin: 0 10px;
    font-size: 14px;
  }
}
@media (max-width: 346px) {
  footer .mid-foot .menu li a {
    margin: 0 8px;
  }
}
footer .copyright {
  border-top: 1px solid white; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  color: white;
}
footer .copyright a {
  color: white;
}
footer .copyright .copyright-txt {
  font-size: 14px;
}
@media (max-width: 600px) {
  footer .copyright .copyright-txt {
    font-size: 12px;
  }
}
footer .copyright .copyright-txt a:hover {
  text-decoration: underline;
}
footer .copyright .social li a {
  border-color: white;
}
footer .copyright .social li a:hover {
  background-color: white;
  color: #c9a285;
}
@media (max-width: 600px) {
  footer .copyright .social {
    margin-top: 20px;
  }
}

/*============== return-to-top =============================*/
#return-to-top {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  background: #f7f3f0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#return-to-top svg {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  color: #ce905d;
  transition: 0.4s;
}
#return-to-top:hover svg {
  transform: rotate(90deg) translateX(-5px);
}

/*______________________________________________ [ (projects-page) ] ____________________________________________*/
.other-page {
  position: relative;
}
.other-page .bg-header {
  height: 300px;
  margin-bottom: 90px;
}
@media (max-width: 1140px) {
  .other-page .bg-header {
    margin-bottom: 130px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .other-page .bg-header {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .other-page .bg-header {
    margin-bottom: 100px;
  }
}
.other-page .hold-comment {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
  height: 150px;
}
@media (max-width: 600px) {
  .other-page .hold-comment {
    height: 200px;
  }
}
.other-page .comment {
  width: 50%;
  height: 150px;
  transform: translateY(54px);
}
@media (max-width: 1800px) {
  .other-page .comment {
    transform: translateY(93px);
  }
}
@media (max-width: 1140px) {
  .other-page .comment {
    width: 100%;
    transform: translateY(75px);
  }
}
@media (max-width: 600px) {
  .other-page .comment {
    height: 200px;
    transform: translateY(100px);
  }
}
.other-page .comment .comment-box {
  background-color: white;
  border-radius: 20px;
  width: 100%;
  height: 150px;
  box-shadow: 0 5px 10px rgba(136, 132, 129, 0.1); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: space-between;
  padding: 80px 30px 10px 30px;
  margin: 0 10px 10px 10px;
  position: relative;
}
@media (max-width: 600px) {
  .other-page .comment .comment-box {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .other-page .comment .comment-box {
    padding: 90px 15px 5px 15px;
  }
}
.other-page .comment .com-text {
  flex: 1;
}
.other-page .comment .com-text .com-top { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 30px;
}
.other-page .comment .com-text .com-top .com-name {
  flex: 1;
  line-height: 1;
}
@media (max-width: 600px) {
  .other-page .comment .com-text .com-top {
    padding: 0 15px;
  }
}
.other-page .comment .com-text .com-top .com-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(56, 55, 53, 0.5);
}
.other-page .comment .com-text .com-top .com-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1);
}
.other-page .comment .com-text h6 {
  color: #383735;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .other-page .comment .com-text h6 {
    font-size: 14px;
  }
}
@media (max-width: 346px) {
  .other-page .comment .com-text h6 {
    font-size: 12px;
  }
}
.other-page .comment .com-text span {
  color: #afaeae;
  font-size: 13px;
}
@media (max-width: 346px) {
  .other-page .comment .com-text span {
    font-size: 11px;
  }
}
.other-page .comment .com-text p {
  color: #616161;
  font-weight: lighter;
  font-size: 12px;
  width: calc(100% - 60px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  font-weight: 500;
  overflow: hidden;
}
@media (max-width: 600px) {
  .other-page .comment .com-text p {
    width: 100%;
  }
}
.other-page .contact {
  margin-bottom: 60px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .other-page .contact {
    margin-top: 40px;
  }
}
.other-page .head-project {
  margin-top: 40px;
}

.hold-bg {
  position: relative;
}

.page-count { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: center;
}
.page-count li a { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f7f3f0;
  border-radius: 50%;
  margin: 0 5px;
  color: #ce905d;
}
.page-count li a:hover {
  background-color: #e4bd9c;
  color: white;
}
.page-count li.active-count a {
  background-color: #e4bd9c;
  color: white;
}
.page-count li.disable-count a {
  background-color: #f8f8f8;
  color: rgb(194, 194, 194);
}
.page-count li:last-child a svg {
  transform: rotate(180deg);
}

.page-name { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #383735;
}
@media (max-width: 1140px) {
  .page-name {
    left: 50%;
    transform: translateX(-50%);
    bottom: 120px;
  }
}
@media (max-width: 600px) {
  .page-name {
    bottom: 150px;
  }
}
.page-name li::after {
  content: url("/images/icons/arrow-left.svg");
  color: #383735;
  transform: rotate(180deg);
  display: inline-block;
  margin: 0 5px;
}
.page-name li:last-child {
  font-weight: 300;
  font-size: 14px;
  color: #888481;
}
.page-name li:last-child::after {
  content: "";
}

/*______________________________________________ [ (single-project) ] ____________________________________________*/
#single header {
  position: relative;
}
#single .bg-header {
  height: auto;
  margin-bottom: 80px;
}
@media (max-width: 600px) {
  #single .bg-header {
    margin-bottom: 40px;
  }
}
#single .hold-bg {
  position: relative;
  padding-bottom: 80px;
}
#single .hold-bg .page-name {
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 100%;
  justify-content: center;
}
#single .dot4 {
  width: 150px;
  height: 300px;
  transition: 0.9s;
  position: absolute;
  right: 0;
  bottom: -200px;
  background-image: radial-gradient(#f7f3f0 20%, transparent 20%), radial-gradient(#f7f3f0 20%, transparent 20%);
}

.single-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1140px) {
  .single-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .single-item {
    margin-bottom: 40px;
  }
}
.single-item .single-img {
  width: 100%;
  border-radius: 30px;
  display: grid;
}
.single-item .single-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  height: 400px;
  box-shadow: 0 10px 20px rgba(56, 55, 53, 0.2);
}
@media (max-width: 600px) {
  .single-item .single-img img {
    height: 250px;
  }
}
.single-item .single-text {
  color: #383735; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.single-item .single-text h2 {
  margin-bottom: 10px;
  font-size: 25px;
}
.single-item .single-text h2 a {
  text-decoration: underline;
}
.single-item .single-text h2 a:hover {
  color: #ce905d;
}
.single-item .single-text p {
  color: #888481;
  word-break: keep-all;
}
@media (max-width: 600px) {
  .single-item .single-text p {
    font-size: 14px;
  }
}
.single-item .single-text .links {
  margin-top: 10px;
}
.single-item .single-text .links .head-section {
  margin-bottom: 20px;
}
.single-item .single-text .links .head-section h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.single-item .single-text .links .head-section hr {
  margin-top: 5px;
}
.single-item .single-text .links .head-section:hover hr {
  transform: translateX(0);
  width: 70px;
}
.single-item .single-text .links ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.single-item .single-text .links ul li {
  flex-basis: calc(25% - 10px);
  margin: 5px 10px 0 0;
}
@media (max-width: 600px) {
  .single-item .single-text .links ul li {
    margin: 5px 5px 0 0;
    flex-basis: calc(33% - 5px);
  }
}
@media (max-width: 480px) {
  .single-item .single-text .links ul li {
    margin: 5px 5px 0 0;
    flex-basis: calc(50% - 5px);
  }
}
.single-item .single-text .links ul li:last-child {
  flex-basis: 100%;
  margin: 10px 0 0 0;
}
.single-item .single-text .links ul li:last-child a {
  background-color: #ce905d;
  color: white;
  box-shadow: 0 5px 10px rgba(136, 132, 129, 0.4);
  font-size: 16px;
  padding: 10px 5px;
}
.single-item .single-text .links ul li:last-child a:hover {
  box-shadow: 0 0 10px rgba(136, 132, 129, 0.3);
}
.single-item .single-text .links ul li a {
  border: 1px solid #ce905d;
  border-radius: 10px;
  padding: 8px 5px;
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 600px) {
  .single-item .single-text .links ul li a {
    font-size: 12px;
  }
}
.single-item .single-text .links ul li a:hover {
  background-color: #ce905d;
  color: white;
}
.single-item .single-text .links ul li a span {
  position: absolute;
  top: -2px;
  right: 2px;
  color: #fce9da;
  font-size: 16px;
}

.tec { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  line-height: 2;
}
.tec h6 {
  font-size: 18px;
  margin-right: 10px;
}
.tec ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.tec ul li {
  font-size: 12px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.tec ul li::before {
  content: "";
  margin-right: 5px;
  width: 10px;
  height: 10px;
  background-color: #e4bd9c;
  border-radius: 2px;
}

.road-pic {
  width: 100%;
  margin: 60px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .road-pic {
    width: 100%;
    overflow-x: scroll;
    display: inline-block;
    padding-bottom: 30px;
  }
}
.road-pic img, .road-pic svg {
  width: 100%;
}
@media (max-width: 768px) {
  .road-pic img, .road-pic svg {
    height: 140px;
    width: 750px;
  }
}

.graphic__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  background-color: #f7f3f0;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 1200px) {
  .graphic__images {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1140px) {
  .graphic__images {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .graphic__images {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .graphic__images {
    padding: 15px;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .graphic__images {
    grid-template-columns: 1fr 1fr;
  }
}
.graphic__images img {
  height: 250px;
  width: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 480px) {
  .graphic__images img {
    height: 200px;
  }
}

.fslightbox-source {
  border-radius: 15px;
}/*# sourceMappingURL=style.css.map */