:root {
	--details: #e1a800;
	--hover: #564000;
}
a, input, button {
  text-decoration: none;
  transition: 0.5s;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10;
	background-color: #fff;
	padding: 10px 0px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.header img {
	max-width: 150px;
}
.header p {
	color: inherit;
	margin-bottom: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-align: right;
}
.header.nav-sticky {
	padding: 8px 0px;
}
.header.nav-sticky p {
	color: inherit;
}
@media (max-width: 767.98px) {
	.header .container{
		flex-direction: column;
	}
  .header img {
    max-width: 100px;
  }
	.header p {
		text-align: center;
	}
}

/*slides*/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 140px 0 80px
}
.hero .row {
  align-items: center;
}
.hero h1 {
  font-size: 32px;
}
.hero .links {
  display: flex;
  gap: 10px;
  padding: 20px 0;
}
.hero .links a:hover, .service .row.content a:hover, .about .links a:hover {
  box-shadow: 0px 4px 9px rgba(23, 66, 113, 0.5);
  transform: translateY(-5px);
}
.hero .links img {
  max-width: 160px;
}
.hero img.image {
  display: block;
  max-width: 60%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.flaticon-ux:before, .flaticon-plan:before, .flaticon-test:before {
  margin-left: 0;
}
.discover .row {
  align-items: center;
}
.discover ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 14px;
  margin-bottom: 14px;
}
.discover li {
  display: flex;
  align-items: center;
}
.discover li p {
  margin-bottom: 0;
}
.service .row.title {
  display: flex;
  justify-content: center;
}
.service .links.col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}
.service .row.content a img {
  max-width: 160px;
}
.team .row.title {
  justify-content: center;
}
.team .single-team {
  max-width: 80%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
}
.team .single-team img {
  margin-bottom: 20px;
}
.about {
  padding-bottom: 120px;
}
.about .row {
  flex-direction: column;
  align-items: center;
}
.about .row h3 {
  max-width: 70%;
  margin-bottom: 20px;
  text-align: center;
}
.about .links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.about .links img {
  max-width: 160px;
}
@media (max-width: 767.98px) {
  .hero {
    padding: 150px 0 40px
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero .links {
    justify-content: center;
  }
  .hero .links img, .service .row.content a img, .about .links img {
    max-width: 100px;
  }
  .service .links.col-md-4 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    margin-bottom: 20px;
  }
  .single-work {
    padding: 30px 0;
  }
  .discover {
    padding: 0;
  }
  .discover * {
    text-align: center;
  }
  .team {
    padding: 20px 0;
  }
  .team .col-md-6 {
    margin: 10px 0;
  }
  .team .single-team {
    max-width: 100%;
    height: auto;
  }
  .team h2 {
    margin-bottom: 20px;
  }
  .about .row h3 {
    max-width: 100%;
  }
}

/*footer*/
.footer-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 10px;
  column-gap: 20px;
}
.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 33%;
}
.column img {
  max-width: 150px;
  margin-bottom: 14px;
}
.column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: inherit;
}
.column p {
  margin-bottom: 4px;
  font-size: 14px;
  color: inherit;
}
.column p.disclaimer {
  font-size: 12px;
}
.column a {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--details);
  transition: 0.5s;
  font-weight: 400 !important;
}
.column a:hover {
  color: var(--hover);
}
.column ul {
  list-style: none;
  align-self: flex-end;
  width: 90%;
  padding-left: 0;
}
.column li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hover);
}
.copyright {
  width: 100%;
  margin-bottom: 0;
  padding: 20px 0;
  background-color: var(--details);
  text-align: center;
  color: #fff;
}
@media (max-width: 767.98px) {
  .footer-area {
      max-width: 500px;
      flex-direction: column;
  }
  .column {
      align-items: center;
      width: 100%;
      margin-bottom: 1rem;
  }
  .column p, .column a {
      max-width: 90%;
      text-align: center;
  }
  .column ul {
      align-self: center;
      width: 90%;
  }
  .copyright {
      padding: 20px 0 !important;
      font-size: 12px;
  }
}
@media (max-width: 460px) {
  .column {
      align-items: flex-start;
  }
  .column p, .column a {
      text-align: start;
  }
  .column ul {
      width: 100%;
  }
}

/*Thanks area*/
.thanks-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto auto;
  padding: 200px 10px;
}
.thanks-icon {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}
.thanks-text {
  max-width: 900px;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .thanks-area {
    max-width: 490px;
  }
  .thanks-icon {
    max-width: 100px;
  }
  .thanks-text {
    font-size: 16px;
  }
}
/*Thanks area End*/

/*Docs*/
.wrapper {
	padding: 140px 0 60px;
}
.wrapper h1 {
	text-align: center;
	margin-bottom: 16px;
	font-size: calc(1rem + 1.5vw);
}
.wrapper h1 {
  color: inherit;
}
.wrapper ul {
  padding-left: 20px;
  list-style: disc !important;
}
.wrapper p, .wrapper li {
  font-weight: 400 !important;
  color: inherit;
}
.wrapper p:last-child {
	margin-bottom: 0;
}
.wrapper p:not(:last-child) {
	margin-bottom: 16px;
}
.wrapper a {
	text-decoration: none;
	cursor: pointer;
  color: var(--details);
  transition: 0.5s;
}
.wrapper a:hover {
  color: var(--hover);
}
@media (max-width: 767.98px) {
  .wrapper{
    padding: 180px 0 40px;
  }
}
/*Docs End*/

#cookPopup{display:none;justify-content:space-between;flex-direction:column;align-items:center;gap:1rem;position:fixed;bottom:15px;left:50%;width:900px;max-width:90%;transform:translateX(-50%);padding:25px;background-color:white;border-radius:4px;box-shadow:2px 3px 10px rgba(0,0,0,0.4);z-index:9999}
#cookPopup a {color:var(--details);transition: 0.5s;} #cookPopup a:hover {color:var(--hover);}
    #cookPopup p{margin:0;text-align:left}
    .cookPopup_btn{padding:7px 15px;cursor:pointer;border:none;background:var(--details);border-radius:4px;font-weight:800;color:#fff; transition: 0.5s;}
    .cookPopup_btn:hover{background: var(--hover);}
    @media(min-width:576px){
        #cookPopup.show{display:flex;align-items:center}}
    @media(max-width:575px){
        #cookPopup.show{display:block;text-align:left}.cookPopup_btn{margin:10px 0 0 0}}
    .cookPopup_title{font-size:16px;font-weight:700}
    .cookPopup_desc{font-size:16px}.show{display:flex !important}