:root {
  --main-color: #b19777;
}
* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
}

.container {
  /* width: 1170px; */
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

/* start settings Box */
.settings-container {
    position: absolute;
transform: translateY(50%);
}

.settings-box {
  position: absolute;
  left: -250px;
  top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  width: 250px;
  z-index: 1000;
  min-height: 100vh;
  transition: 1.5s;
}
.settings-box.open {
  left: 0px;
}

.settings-box .toggle-settings {
  position: absolute;
  right: -30px;
  top: 50%;
  background-color: #9f8d76;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  transform: translateY(-50%);
}
.settings-box .toggle-settings .fa-cog {
  width: 30px;
  padding: 8px 0px;
}
.settings-box .option-box.color {
  position: relative;
  top: 40%;
  background-color: #9f8d76;

  display: inline-block;
  margin-right: -20px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  transform: translateY(-20px);
}
.settings-box .option-box.color h4 {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  color: slateblue;
  padding-bottom: 10px;
}

.settings-box .settings-container .option-box .colors-list li {
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  display: inline-block;
 
}
.settings-box .settings-container .option-box .colors-list li.active {
  opacity: 1;
}
.settings-box .settings-container .option-box .colors-list li:first-child {
  background-color: #b19777;
}
.settings-box .settings-container .option-box .colors-list li:nth-child(2) {
  background-color: #df8059;
}
.settings-box .settings-container .option-box .colors-list li:nth-child(3) {
  background-color: #0bdfea;
}
.settings-box .settings-container .option-box .colors-list li:nth-child(4) {
  background-color: #f22424;
}
.settings-box .settings-container .option-box .colors-list li:nth-child(5) {
  background-color: #ede210;
}
.settings-box .option-box.random {
  position: relative;
  top: 45%;
  background-color: #9f8d76;
  padding: 25px 27px -5px 57px;
  display: inline-block;
  margin-right: -20px;
  width: 100%;

  text-align: center;
  margin-bottom: 20px;
}
.settings-box .option-box.random h4 {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  color: slateblue;
  padding-bottom: 10px;
}
.settings-box .random-backgrounds .yes,
.settings-box .random-backgrounds .no {
  width: 60px;
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  height: 32px;
  margin-left: 23px;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.5;
  cursor: pointer;
}
.settings-box .random-backgrounds span.active {
  opacity: 1;
}
.settings-box .random-backgrounds .yes {
}
.settings-box .random-backgrounds .no {
}
.settings-box .option-box {
  width: 100%;
  height: calc(45% / 3);
}

.settings-box .option-box.display {
  position: relative;
  top: 51%;
  background-color: #9f8d76;

  padding: 25px 27px -5px 57px;
  display: inline-block;
  margin-right: -20px;
  width: 100%;

  text-align: center;
}

.settings-box .option-box.display h4 {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  color: slateblue;
  padding-bottom: 10px;
}
.bullets-option span {
  width: 60px;
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  height: 32px;
  margin-left: 23px;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.5;
  cursor: pointer;
}
.bullets-option span.active {
  opacity: 1;
}

.settings-box .reset-options {
  position: relative;
  top: 62%;
  background-color: #ff3c41;

  height: 44px;
  transform: translateX(50%);
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

/* end settings Box */

.nav-bullets {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 1105;
}
.nav-bullets .bullet {
  width: 20px;
  height: 20px;
  border: 3px solid var(--main-color);
  margin: 10px auto;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.nav-bullets .bullet .tooltip {
  background-color: var(--main-color);
  width: 120px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  position: absolute;
  right: 40px;
  top: -5px;
  text-align: center;
  cursor: default;
  pointer-events: none;
  display: none;
}
.nav-bullets .bullet:hover .tooltip {
  display: block;
}
.nav-bullets .bullet .tooltip:before {
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent transparent var(--main-color);
  height: 0;
  width: 0;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

/* start landing page */
.landing-page {
  min-height: 100vh;
  background-image: url(../image/1.jpg);
  background-size: cover;
  position: relative;
}
.landing-page .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.landing-page .container {
  position: relative;
  z-index: 1000;
}
.header-area {
  position: relative;
  z-index: 2;
  color: #ffff;
  display: flex;
  padding: 10px;
}
.header-area .logo {
  width: 150px;
  padding: 15px;
}
.header-area .logo img {
  width: 120px;
}
.header-area .links-container {
  width: 100%;
  text-align: right;
}
.header-area .links {
  list-style: none;

  padding-left: 0px;
}

.header-area .links li {
  display: inline-block;
  margin-left: 10px;
}
.header-area .links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.header-area .links li a:hover,
.header-area .links li a.active {
  color: var(--main-color);
}
.header-area .toggle-menu {
  width: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;

  display: none;
  position: relative;
}

.header-area .toggle-menu.menu-active:before {
  content: '';
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

.header-area .toggle-menu:focus {
  outline: none;
}
.header-area .toggle-menu span {
  display: block;
  background-color: #fff;
  height: 3px;
  margin-bottom: 4px;
}

.introduction-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 80%;
}
.introduction-text h1 {
  font-size: 40px;
  margin: 0 0 12px;
}
@media (max-width: 575px) {
  .introduction-text h1 {
    font-size: 26px;
  }
}

.introduction-text h1 span {
  color: var(--main-color);
}
.introduction-text p {
  line-height: 1.6;
  font-size: 20px;
}

.introduction-text p span {
  color: var(--main-color);
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .header-area .links {
    display: none;
  }

  .header-area .links.open {
    background-color: #fff;
    padding: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 24px;
    width: 50%;
    border-radius: 4px;
    text-align: left;
  }
  .header-area .links.open li {
    display: block;
    margin: 10px;
  }
  .header-area .links.open li a {
    color: var(--main-color);
    font-weight: bold;
  }

  .header-area .toggle-menu {
    display: inline-block;
  }
}

/* end landing page */

/* start about Us */

.about-us {
  padding-top: 5px;
  padding-bottom: 50px;
  display: block;
  text-align: center;
}
/* @media (max-width: 1991px) {
    .about-us {
      display: block;
      text-align: center;
}
}
@media (max-width: 575px) {
    .about-us {
      display: block;
      text-align: center;
} */

/* .about-us .info-box {
 flex: 1;
} */
.about-us .info-box h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 20px 0 20px;
  line-height: 1.9;
}
.about-us .info-box p {
  line-height: 1.8;
  color: #645c5cbf;
  margin: 0;
  padding-bottom: 40px;
}
/* .about-us .image-box {
 
  text-align: center;
  border-style: none;
  position: relative;
  width: 100%;
} */
.about-us img {
  text-align: center;
  border-style: none;
  position: relative;
  width: 100%;
  height: 100%;
}

/* .about-us .image-box img {
 width: 900px;
 height: 600px;
} */

/* end about Us */
/* start our skill */
.skills {
  padding-top: 5px;
  padding-bottom: 50px;
  background-color: #eee;
}

.skills h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 20px 0 20px;
  text-align: center;
}
.skills .skill-box {
  background-color: #fff;
  display: flex;
  padding: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .skills .skill-box {
    display: block;
  }
}

.skills .skill-box .skill-name {
  font-weight: bold;
  width: 140px;
  text-align: center;
  line-height: 30px;
}

@media (max-width: 767px) {
  .skills .skill-box .skill-name {
    width: 100%;
    margin-bottom: 15px;
  }
}

.skills .skill-box .skill-progress {
  height: 30px;
  width: 100%;
  background-color: #f6f6f6;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.skills .skill-box .skill-progress span {
  position: absolute;
  left: 0;
  top: 0;

  width: 0%;
  height: 100%;
  background-color: var(--main-color);
  transition: all 1s;
}

/* end our skill */
/* start gallery */
.gallery {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.gallery h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 20px 0 20px;
  text-align: center;
}
.gallery .images-box {
  text-align: center;
}

.gallery .images-box img {
  width: 200px;
  height: 200px;
  padding: 3px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  margin: 5px;
  cursor: pointer;
}
.popup-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.popup-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1001;
}
.popup-box h3 {
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  color: var(--main-color);
}
.popup-box img {
  max-width: 100%;
}
.close-button {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-family: Arial, Tahoma;
}

/* end gallery */
/* start timeline  */
.timeline {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #eee;
}
.timeline h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 20px 0 20px;
  text-align: center;
}
.timeline .container .timeline-content {
  position: relative;
  overflow: hidden;
}
.timeline .container .timeline-content:before {
  content: '';
  width: 2px;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  margin-left: -1px;
  top: 0;
}
.timeline .container .timeline-content .year {
  margin: 20px auto;
  width: 50px;
  background-color: var(--main-color);
  position: relative;
  z-index: 2;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  padding: 2px 5px;
  font-weight: bold;
}
.timeline .timeline-content .content {
  padding: 20px;
  background-color: rgb(230, 225, 167);
}
.timeline .timeline-content .left,
.timeline .timeline-content .right {
  width: calc(50% - 25px);
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 767px) {
  .timeline .timeline-content .left,
  .timeline .timeline-content .right {
    width: 100%;
    margin-bottom: 20px;
  }
  .timeline .timeline-content .left:before,
  .timeline .timeline-content .right:before {
    display: none;
  }

  .timeline .timeline-content .left .content:before,
  .timeline .timeline-content .right .content:before {
    display: none;
  }
}

.timeline .timeline-content .left {
  float: left;
}

.timeline .timeline-content .right:before {
  left: -35px;
}

.timeline .container .timeline-content .right {
  float: right;
}

.timeline .timeline-content .left:before {
  right: -35px;
}
.timeline .container .timeline-content .right:before,
.timeline .container .timeline-content .left:before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 3px solid var(--main-color);
  position: absolute;
  right: -35px;
  border-radius: 50%;
  top: 20px;
}

.timeline .container .timeline-content .content h3 {
  font-weight: bold;
  color: var(--main-color);
  margin: 0 0 10px;
}
.timeline .container .timeline-content .content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.clearfix {
  clear: both;
}
.timeline .timeline-content .left .content:before {
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent transparent rgb(230, 225, 167);
  height: 0;
  width: 0;
  position: absolute;
  right: -20px;
  top: 20px;
}
.timeline .timeline-content .right .content:before {
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent rgb(230, 225, 167) transparent transparent;
  height: 0;
  width: 0;
  position: absolute;
  left: -20px;
  top: 20px;
}
.clearfix {
  clear: both;
}

/* end timeline  */
/* start features */
.features {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.features h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 0px 0 60px;
  text-align: center;
  padding-bottom: 30px;
}
.features .feat-box {
  display: inline-block;
  width: calc(94% / 3);
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .features .feat-box {
    width: calc(94% / 2);
    text-align: center;
    margin-bottom: 40px;
  }
}

.features .feat-box h4 {
  font-size: 22px;
  margin: 15px 0 40px;
  text-align: center;
  position: relative;
}

.features .feat-box h4::before {
  content: '';
  width: 40px;
  height: 4px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -20px;
}
.features .feat-box p {
  width: 80%;
  margin: 0 auto;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .features .feat-box h4 {
    font-size: 16px;
    margin: 15px 0 40px;
    line-height: 1.2;
  }
}

/* end features */
/* start testimonials */

.testimonials {
  height: 900px;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .testimonials {
    height: 1767px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.testimonials:before {
  content: '';
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--main-color);
}
.testimonials:after {
  content: '';
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #333;
}

.testimonials h2 {
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  margin: 20px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonials .ts-box {
  position: relative;
  z-index: 2;
  width: calc(98% / 3);
  float: left;
  background-color: #fff;
  padding: 20px;
}

@media (max-width: 767px) {
  .testimonials .ts-box {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    width: 96%;
  }
}

.testimonials .ts-box:not(:last-of-type) {
  margin-right: 1%;
}
.testimonials .ts-box > p {
  margin: 0 0 20px;
  line-height: 1.2;
  font-size: 13px;
  color: #707070;
  font-style: italic;
  text-align: center;
}
.testimonials .ts-box .person-info {
  overflow: hidden;
}

.testimonials .ts-box .person-info img {
  float: left;
  border-radius: 50%;
  width: 100%;
  height: 300px;
}
.testimonials .ts-box .person-info h4 {
  text-align: center;
}
.testimonials .ts-box .person-info p {
  text-align: center;
  color: #707070;
}

/* end testimonials */

/* start contact */
.contact {
  min-height: 600px;
  background-image: url(../image/map.png);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.contact .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.contact .container {
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-weight: bold;
  font-size: 30px;
  color: var(--main-color);
  margin: 0px 0 60px;
  text-align: center;
  padding-bottom: 30px;
}
.contact form {
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}
.contact form .left {
  float: left;
  width: 49%;
}
.contact form .right {
  float: right;
  width: 49%;
}
@media (max-width: 767px) {
  .contact form .left,
  .contact form .right {
    float: none;
    width: 100%;
  }
}

.contact form input:not([type='submit']),
.contact form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  background-color: rgba(218, 218, 218, 0.8);
}
.contact form input:not([type='submit']):focus,
.contact form textarea:focus {
  outline: 1px solid var(--main-color);
}
.contact form input {
  height: 40px;
}

.contact form textarea {
  height: 150px;
}
.contact form input[type='submit'] {
  padding: 10px;
  width: 100%;
  border-color: transparent;
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
}
.contact form textarea:focus::-webkit-input-placeholder,
.contact form input:not([type='submit']):focus::-webkit-input-placeholder {
  transition: 0.3s;
  opacity: 0;
}
.contact form textarea:focus::-ms-input-placeholder,
.contact form input:not([type='submit']):focus::-ms-input-placeholder {
  transition: 0.3s;
  opacity: 0;
}
.contact form textarea:focus::placeholder,
.contact form input:not([type='submit']):focus::placeholder {
  transition: 0.3s;
  opacity: 0;
}

/* end contact */

/* start footer */

.footer {
  background-color: #333;
  color: #eee;
  padding: 15px;
  text-align: center;
}

/* end footer */

/* start Grid System */

@media (min-width: 576px) {
  /*  Small Devices => landscape Phones */
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  /*  Medium Devices => tablette */
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  /*  Desktops  */
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  /*  Large Screens  */
  .container {
    max-width: 1140px;
  }
}

/* end Grid System */
