@charset "UTF-8";
:root {
  --white:white;
  --primaryColor:#0f1c2f;
  --accentColor:#c1272d;
  --transTeamFunc: cubic-bezier(0.33, 1, 0.68, 1);
  --widthAside:280px;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: var(--primaryColor);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accentColor);
  border-radius: 50px;
}

body {
  font-family: "Poppins", sans-serif;
}

.placeholder-shadow {
  top: 0;
  left: 100vw;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 28, 47, 0.8470588235);
  z-index: 6;
  opacity: 0;
  transition: all 500ms var(--transTeamFunc) 200ms;
}
.placeholder-shadow.active {
  left: 0px;
  opacity: 1;
}

/* this is app styles */
.container-app {
  position: relative;
  left: 0;
  transition: all 500ms var(--transTeamFunc) 200ms;
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
}
.container-app.active {
  left: var(--widthAside);
  width: calc(100% - var(--widthAside));
  transition: all 500ms var(--transTeamFunc) 200ms;
}

/* Icon is hide and show class btn-toggle-side */
.btn-toggle-side {
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  cursor: pointer;
  transition: all 500ms var(--transTeamFunc) 200ms;
  z-index: 5;
}
.btn-toggle-side span {
  width: 34px;
  height: 3px;
  background-color: var(--accentColor);
  border-radius: 4px;
  transition: all 0.5s var(--transTeamFunc) 100ms;
  left: 8px;
}
.btn-toggle-side span:nth-child(1) {
  transform: translateY(-13px);
  width: 20px;
  left: 8px;
}
.btn-toggle-side span:nth-child(2) {
  transform: translateY(13px);
  width: 15px;
  left: 8px;
}
.btn-toggle-side.active span:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
  width: 34px;
}
.btn-toggle-side.active span:nth-child(3) {
  transform: translateX(60px);
}
.btn-toggle-side.active span:nth-child(2) {
  transform: translateY(0px) rotate(-45deg);
  width: 34px;
  transition-delay: 0.25s;
}

/* this is aside styles */
.offcanvas-start {
  width: var(--widthAside);
  transition: all 500ms var(--transTeamFunc) 200ms;
}

.offcanvas-header::after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: var(--accentColor);
  position: absolute;
  right: -25px;
  bottom: -25px;
  transform: rotate(45deg);
  transition: all 500ms var(--transTeamFunc) 200ms;
}
.offcanvas-header.showAnimate::after {
  content: "";
  transform: rotate(45deg) scale(12);
}
.offcanvas-header .offcanvas-title {
  z-index: 1;
  transition: all 500ms var(--transTeamFunc) 200ms;
  color: var(--primaryColor);
  padding: 0px 0;
  width: 100%;
  text-align: center;
}
.offcanvas-header .offcanvas-title img {
  transition: all 500ms var(--transTeamFunc) 1000ms;
  transform: scale(0);
  opacity: 0;
}
.offcanvas-header.showAnimate .offcanvas-title {
  color: var(--white);
}
.offcanvas-header::before {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  right: -50px;
  background-color: var(--primaryColor);
  transition: all 500ms var(--transTeamFunc) 550ms;
  z-index: 1;
  border-radius: 50%;
  transform-origin: center;
  transform: scale(0);
}
.offcanvas-header.showAnimate::before {
  content: "";
  transform: scale(1);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px;
}
.offcanvas-header.showAnimate .offcanvas-title img {
  transform: scale(1);
  opacity: 1;
}

/* body aside */
.offcanvas-body .menu.showBg {
  background-color: var(--primaryColor);
  transition: all 400ms var(--transTeamFunc) 100ms;
}
.offcanvas-body ul.menu li {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  padding: 15px;
  color: var(--primaryColor);
  transition: all 400ms var(--transTeamFunc);
}
.offcanvas-body ul.menu li.active {
  background-color: var(--accentColor);
  padding-left: 40px;
}
.offcanvas-body ul.menu li.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  background-color: var(--primaryColor);
  width: 2px;
  height: 100%;
}
.offcanvas-body ul.menu li a {
  text-decoration: none;
  color: inherit;
}
.offcanvas-body ul.menu.showBg li {
  color: var(--white);
}

.form-switch {
  padding-left: 3em;
}

.form-check-input {
  cursor: pointer;
  margin-top: 0.5em;
}

.form-check-input:checked {
  background-color: var(--accentColor);
  border-color: var(--accentColor);
}

/* incons social media */
.icons-social {
  right: 0px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 4;
}
.icons-social .item-social {
  position: relative;
  right: -80px;
  transition: all 200ms var(--transTeamFunc);
  background-color: var(--white);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  cursor: pointer;
}
.icons-social .item-social a {
  text-decoration: none !important;
  color: var(--primaryColor);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icons-social .item-social i {
  padding: 15px;
}
.icons-social .item-social span {
  font-size: 12px;
  display: inline-block;
  padding-right: 10px;
}
.icons-social .item-social:hover {
  background-color: var(--accentColor);
  right: 0px;
}
.icons-social .item-social:hover a {
  color: var(--white);
}
.icons-social .item-social:hover span {
  color: var(--white);
}

.soc-min {
  display: none !important;
}

/* Home page */
.home {
  z-index: 1;
}
.home .logo-home {
  width: 500px;
}
.home .title-web {
  width: 350px;
  color: var(--primaryColor);
  font-size: 16px;
}
.home .title-web label {
  font-weight: 700;
  color: var(--accentColor);
}
.home .title-web span {
  opacity: 0.8;
}
.home hr {
  width: 350px;
  margin: 40px auto;
  color: var(--accentColor);
  height: 2px;
  opacity: 1;
  border-radius: 8px;
}

/*About page*/
.who-are-me {
  height: 100vh;
  padding-left: 30px;
}
.who-are-me .content-about {
  color: var(--primaryColor);
}
.who-are-me .content-about h3 {
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 20px 0px;
}
.who-are-me .content-about h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 80px;
  background-color: var(--accentColor);
}
.who-are-me .content-about h3::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accentColor);
}
.who-are-me .content-about p {
  margin: 20px 0px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  opacity: 0.9;
  text-indent: 20px;
}
.who-are-me .content-about p b {
  opacity: 1;
}
.who-are-me .content-about::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 40px;
  height: 40px;
  border-left: 3px solid var(--accentColor);
  border-top: 3px solid var(--accentColor);
}
.who-are-me .content-about::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 40px;
  height: 40px;
  border-right: 3px solid var(--accentColor);
  border-bottom: 3px solid var(--accentColor);
}
.who-are-me h5 {
  color: var(--primaryColor);
}
.who-are-me p {
  color: var(--primaryColor);
  text-align: justify;
  font-size: 14px;
}
.who-are-me p abbr {
  color: var(--accentColor);
}

.img-about {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
}

/* service */
.content-service {
  z-index: 1;
}
.content-service .container-service {
  padding-left: 10px;
  color: var(--primaryColor);
}
.content-service .container-service h3 {
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 20px 0px;
  text-align: start !important;
}
.content-service .container-service h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 80px;
  background-color: var(--accentColor);
}
.content-service .container-service h3::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accentColor);
}
.content-service .container-service p {
  margin: 20px 0px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

.card {
  cursor: pointer;
  height: 270px;
  box-shadow: 5px 5px 0px 0px var(--accentColor);
  padding: 20px;
}
.card:hover {
  background-color: var(--primaryColor);
  color: var(--white);
}
.card img {
  transition: all 400ms var(--transTeamFunc);
  width: 100%;
  height: 100%;
  transform-origin: top;
}
.card:hover img {
  transform: scale(0.5);
}
.card .card-body {
  transition: all 400ms var(--transTeamFunc);
  opacity: 0;
}
.card .card-body h5 {
  font-size: 16px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}
.card .card-body .card-text {
  font-size: 14px;
}
.card:hover .card-body {
  opacity: 1;
  transform: translateY(-110px);
}

/* contact */
.contact {
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
}

.contact-info {
  background-color: var(--white);
  color: var(--primaryColor);
}
.contact-info h3 {
  position: relative;
  padding: 20px 0px;
}
.contact-info h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 80px;
  background-color: var(--accentColor);
}
.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accentColor);
}
.contact-info p {
  margin: 20px 0px;
  font-size: 14px;
  opacity: 0.9;
}
.contact-info ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  opacity: 0.8;
  margin-top: 20px;
}
.contact-info ul li > span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accentColor);
  font-size: 26px;
  border-radius: 50%;
  border: 1px solid var(--accentColor);
}
.contact-info ul li div {
  margin-left: 20px;
}
.contact-info ul li div h5 {
  opacity: 0.9;
  font-weight: 700;
  margin-bottom: 0px;
}
.contact-info ul li div > span {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}

.form-contact {
  background-color: var(--white);
  padding-left: 100px;
}
.form-contact .form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 14px;
}
.form-contact textarea {
  margin-top: 40px;
  border: 1px solid #dfdfdf !important;
  height: 150px;
}
.form-contact .btn-send {
  padding: 10px 40px;
  border: none;
  background-color: var(--accentColor);
  color: var(--white);
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
.form-contact .btn-send:hover {
  background-color: var(--primaryColor);
}

.navbar {
  margin: 5px auto;
  width: 80%;
  z-index: 2;
}
.navbar ul {
  box-shadow: rgb(33, 35, 38) 0px 10px 10px -10px;
  background-color: var(--primaryColor);
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.navbar ul li {
  display: inline-block;
  position: relative;
  transition: all 0.2s var(--transTeamFunc);
}
.navbar ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  padding: 12px 20px;
}
.navbar ul li a:hover {
  color: var(--white);
  background-color: var(--accentColor);
}

.nav-pills .nav-link.active {
  background-color: var(--accentColor) !important;
  color: var(--primaryColor);
}
.nav-pills .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  background-color: var(--accentColor);
  width: 100%;
}

.herowork {
  height: 80vh;
  width: 100vw;
  background-image: url("../../assets/images/5878303.jpg");
  background-size: cover;
  position: relative;
}
.herowork::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.8;
}
.herowork .containerherotage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.herowork .containerherotage p {
  font-size: 18px;
  color: var(--primaryColor);
  opacity: 0.8;
}
.herowork .containerherotage p label {
  font-weight: 700;
  color: var(--accentColor);
  opacity: 1;
}
.herowork .containerherotage h1 {
  font-weight: 200;
  color: var(--primaryColor);
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 4px;
  font-weight: 900;
}
.herowork .containerherotage h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  height: 3px;
  width: 60%;
  background-color: var(--accentColor);
  opacity: 0.7;
}

.articalesecation section {
  transition: all 0.3s var(--transTeamFunc);
  padding: 50px 0px;
  border-bottom: 2px solid var(--accentColor);
}
.articalesecation section:hover {
  background-color: #edecec;
}
.articalesecation section:hover .bodywork h1 {
  color: var(--accentColor);
}
.articalesecation section:hover .bodywork p {
  opacity: 1;
}
.articalesecation section button {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  border: none;
  padding: 10px;
  background-color: var(--accentColor);
  color: var(--white);
}
.articalesecation section button:hover {
  opacity: 0.9;
  color: var(--primaryColor);
}
.articalesecation section .bodywork {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 70px;
  padding-right: 40px;
}
.articalesecation section .bodywork h1 {
  font-size: 24px;
  color: var(--primaryColor);
  font-weight: 700;
  margin-bottom: 30px;
}
.articalesecation section .bodywork p {
  text-align: justify;
  opacity: 0.8;
}
.articalesecation section .bodywork.right {
  padding-left: 0px;
}
.articalesecation section .coverwork {
  padding-right: 70px;
  padding-left: 40px;
}
.articalesecation section .coverwork.right {
  padding-left: 70px;
  padding-right: 40px;
}

.displaynavmenu:hover .navbarmenudisplay {
  display: block;
}

.navbarmenudisplay {
  display: none;
  list-style: none;
  padding-left: 10px !important;
}

.navbarmenudisplay li {
  padding: 10px !important;
}

.navbarmenudisplay li a {
  font-size: 12px !important;
  transition: all 0.2s var(--transTeamFunc);
}

.navbarmenudisplay li:hover a {
  padding-left: 10px !important;
  color: var(--primaryColor);
  font-weight: 700;
}

#showworkhero {
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 28, 47, 0.7137254902);
  position: fixed;
  z-index: 5;
  top: 0;
  overflow-y: auto;
  display: none;
}
#showworkhero .contanerworkfull {
  background-color: var(--white);
}
#showworkhero .contanerworkfull .closework {
  font-size: 25px;
  color: var(--accentColor);
  cursor: pointer;
  position: sticky;
  top: 0;
  float: right;
}

.heroimageannotation iframe {
  width: 100%;
  height: 400px;
}
.heroimageannotation img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.heroimageannotation .descripationannotation {
  margin: 100px 50px;
}
.heroimageannotation .descripationannotation .row {
  justify-content: center;
  align-items: center;
}
.heroimageannotation .descripationannotation .row .descripwork {
  padding-right: 40px;
}
.heroimageannotation .descripationannotation .row .descripwork p {
  text-align: justify;
  color: var(--primaryColor);
}
.heroimageannotation .imagesannotation {
  margin: 50px;
}
.heroimageannotation .imagesannotation .photoworkannot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.heroimageweb {
  width: 100%;
  padding: 50px;
}
.heroimageweb ul.tabspro {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  padding-top: 20px;
}
.heroimageweb ul.tabspro li {
  background-color: var(--accentColor);
  color: var(--white);
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s var(--transTeamFunc);
}
.heroimageweb ul.tabspro li:hover {
  opacity: 0.8;
  transform: scale(0.9);
  color: var(--primaryColor);
}
.heroimageweb section {
  display: none;
}
.heroimageweb section.active {
  display: block;
}
.heroimageweb section img {
  width: 100%;
}
.heroimageweb section.pone, .heroimageweb section.ptow {
  margin-top: 50px;
}
.heroimageweb section.pone .headingproje, .heroimageweb section.ptow .headingproje {
  color: var(--primaryColor);
  border-bottom: 2px solid var(--accentColor);
  padding-bottom: 10px;
}
.heroimageweb section.pone .feature, .heroimageweb section.ptow .feature {
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 15px;
}
.heroimageweb section.pone .feature li, .heroimageweb section.ptow .feature li {
  font-size: 12px;
  background-color: var(--primaryColor);
  padding: 5px 14px;
  border-radius: 5px;
  color: var(--white);
  transition: all 0.3s var(--transTeamFunc);
  cursor: pointer;
}
.heroimageweb section.pone .feature li:hover, .heroimageweb section.ptow .feature li:hover {
  background-color: var(--accentColor);
}
.heroimageweb section.pone p, .heroimageweb section.ptow p {
  margin-top: 40px;
}

.teams {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.teams .heroteam {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.teams .heroteam div {
  text-align: center;
}
.teams .heroteam div span {
  color: var(--accentColor);
}
.teams .heroteam div h1 {
  font-weight: 200;
  color: var(--primaryColor);
}
.teams .heroteam p {
  margin-top: 25px;
  opacity: 0.8;
  text-align: center;
  width: 75%;
}
.teams .leadership {
  display: flex;
  gap: 40px;
}
.teams .leadership .cardteam {
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.teams .leadership .cardteam .imgbox {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
.teams .leadership .cardteam .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teams .leadership .cardteam .content {
  text-align: center;
}
.teams .leadership .cardteam .content .details {
  margin: 25px 0;
}
.teams .leadership .cardteam .content .details h2 {
  font-size: 18px;
  color: var(--primaryColor);
}
.teams .leadership .cardteam .content .details h2 span {
  font-size: 14px;
}
.teams .leadership .cardteam .content .sci {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-left: 0px !important;
  gap: 10px;
}
.teams .leadership .cardteam .content .sci li a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  font-size: 1.5em;
  color: var(--primaryColor);
  text-decoration: none;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.25s;
}
.teams .leadership .cardteam .content .sci li a:hover {
  color: var(--white);
  background-color: var(--accentColor);
}
.teams .teampart {
  width: 100%;
}
.teams .teampart .headteampart {
  padding: 95px 95px 0px 95px;
}
.teams .teampart .headteampart h3 {
  color: var(--primaryColor);
  margin-bottom: 20px;
}
.teams .teampart .headteampart p {
  opacity: 0.8;
  text-indent: 30px;
  margin-bottom: 50px;
}
.teams .teampart .headteampart ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}
.teams .teampart .headteampart ul li {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  color: var(--primaryColor);
  transition: all 0.3s var(--transTeamFunc);
  border-bottom: 2px solid var(--accentColor);
}
.teams .teampart .headteampart ul li:hover {
  color: var(--white);
  background-color: #c1272d;
  border-bottom: 2px solid var(--primaryColor);
  font-size: 12px;
  margin-top: 10px;
}
.teams .teampart .carousel {
  height: 270px;
}
.teams .teampart .carousel .carousel-inner {
  height: 100%;
}
.teams .teampart .carousel .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}
.teams .teampart .carousel .carousel-inner .carousel-item .shadowteam {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primaryColor);
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 2;
}
.teams .teampart .carousel .carousel-inner .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption {
  padding-top: 70px !important;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 3;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption h5 {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 3px;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption p {
  opacity: 0.8;
  color: var(--white);
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption ul {
  list-style: none;
  display: flex;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption ul li img {
  width: 50px;
  height: 50px;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption a {
  text-decoration: none;
  font-size: 14px;
  color: var(--white);
  background-color: var(--accentColor);
  padding: 8px 16px;
  transition: all 0.3s var(--transTeamFunc);
  border-radius: 2px;
}
.teams .teampart .carousel .carousel-inner .carousel-item .carousel-caption a:hover {
  transform: scale(1.1);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.privacy {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 80px 0;
}
.privacy .dateprivacy {
  opacity: 0.7;
}
.privacy p {
  opacity: 0.9;
}
.privacy .note {
  color: #c1272d;
  opacity: 0.8;
  display: inline-block;
}
.privacy table a {
  text-decoration: none;
  color: #c1272d;
}
.privacy .heroprivacy {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 10px;
}
.privacy .heroprivacy ul.list-group li::before {
  content: "•";
  color: black;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: 0px;
}
.privacy .heroprivacy .mainone h2 {
  opacity: 0.9;
  padding-top: 15px;
  color: #c1272d;
  font-size: large;
  font-weight: bold;
}
.privacy .heroprivacy .maintwo h5 {
  opacity: 0.9;
  padding-top: 10px;
  font-weight: bold;
}
.privacy .heroprivacy .maintwo ul li {
  opacity: 0.9;
}
.privacy .heroprivacy .maintwo ul li span {
  font-weight: bold;
  font-size: medium;
}
.privacy .heroprivacy .maintwo ul li p {
  padding-left: 25px;
}
.privacy .heroprivacy .maintwo ul li p span {
  font-weight: normal;
  display: block;
}
.privacy .heroprivacy .mainthree h2 {
  opacity: 0.9;
  padding-top: 25px;
  font-weight: bold;
}

.heroworkitem {
  position: relative;
  background-image: url("../../assets/images/3556940.jpg");
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.heroworkitem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  opacity: 0.8;
}
.heroworkitem .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 70%;
}
.heroworkitem .content h1 {
  color: var(--accentColor);
  border-bottom: 2px solid var(--accentColor);
  width: 40%;
  margin: auto;
  padding: 10px 0;
}
.heroworkitem .content p {
  color: var(--white);
  opacity: 0.8;
  margin-top: 20px;
}

/* ========= Footer ======== */
.footer {
  background-color: var(--primaryColor);
  padding: 1rem 1rem;
  line-height: 2.5rem;
}
.footer .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.footer .footer-container .footer-main {
  color: var(--white);
  opacity: 0.8;
  font-size: 12px;
}
.footer .footer-container .footer-main span {
  color: var(--accentColor);
  padding-right: 5px;
  font-size: 16px;
  opacity: 1;
}
.footer .footer-container .footer-main p {
  display: inline-block;
  margin: 0px;
}
.footer .footer-container .footer-main a.privacy-footer-branch {
  text-decoration: none !important;
  color: var(--white) !important;
}

/* ========= Footer ======== */
/* Responsive */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .who-are-me {
    margin-top: 50px;
    height: 100% !important;
    padding: 50px !important;
    width: 100%;
  }
  .img-about {
    height: 100% !important;
    margin-top: 50px;
  }
  .contact {
    height: 100vh;
    padding: 45px;
  }
  .navbar {
    width: 85%;
  }
  .navbar ul li a {
    font-size: 13px;
    padding: 13px 15px;
  }
  .leadership {
    gap: 30px;
  }
  .footer .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .articalesecation section .bodywork {
    padding-left: 0px;
    padding-right: 0px;
  }
  .articalesecation section .coverwork {
    padding-right: 70px;
    padding-left: 0px;
  }
  .articalesecation section .coverwork.right {
    padding-right: 0px;
    padding-left: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home .logo-home {
    width: 450px;
  }
  .who-are-me {
    margin-top: 50px;
    height: 100% !important;
    padding: 50px !important;
    width: 100%;
  }
  .img-about {
    height: 100% !important;
    margin-top: 50px;
  }
  .content-service {
    margin: 60px 0;
  }
  .contact {
    height: 100%;
    padding: 45px;
  }
  .navbar {
    width: 80%;
  }
  .navbar ul li a {
    font-size: 11px;
    padding: 15px 8px;
  }
  .leadership {
    display: block !important;
  }
  .leadership .cardteam {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-bottom: 20px !important;
    flex-direction: row !important;
  }
  .leadership .cardteam .content {
    padding-left: 50px !important;
  }
  .footer .footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .articalesecation section .bodywork {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 550px) and (max-width: 767px) {
  .home .logo-home {
    width: 400px;
  }
  .who-are-me {
    margin-top: 50px;
    height: 100% !important;
    padding: 50px !important;
    width: 500px !important;
  }
  .img-about {
    height: 100% !important;
    margin-top: 50px;
    width: 500px !important;
  }
  .content-service {
    margin: 60px 0;
    min-width: 550px !important;
  }
  .contact {
    height: 100%;
    min-width: 550px;
    padding: 45px;
  }
  .navbar {
    display: none;
  }
  .leadership {
    display: block !important;
  }
  .leadership .cardteam {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-bottom: 20px !important;
    flex-direction: row !important;
  }
  .leadership .cardteam .content {
    padding-left: 30px !important;
  }
  .footer .footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .articalesecation section .bodywork {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 549px) {
  .home .logo-home {
    width: 300px;
  }
  .home hr {
    width: 240px;
    margin: 20px auto;
    height: 1px;
  }
  .who-are-me {
    margin-top: 50px;
    height: 100% !important;
    padding: 50px !important;
    max-width: 549px !important;
  }
  .who-are-me p {
    text-align: left;
    font-size: 12px;
  }
  .img-about {
    height: 100% !important;
    margin-top: 40px;
    max-width: 549px !important;
  }
  .content-service {
    margin: 60px 0;
    min-width: 350px !important;
  }
  .contact {
    height: 100%;
    min-width: 350px;
    padding: 35px;
  }
  .btn-toggle-side.active {
    opacity: 0;
  }
  .icons-social {
    display: none !important;
  }
  .soc-min {
    display: inline-block !important;
    font-size: 28px;
  }
  .soc-min ul {
    display: flex;
    justify-content: space-around;
  }
  .soc-min ul li {
    cursor: pointer;
  }
  .soc-min ul li a {
    color: var(--primaryColor);
    transition: all 400ms var(--transTeamFunc);
  }
  .soc-min ul li:hover a {
    color: var(--accentColor);
  }
  .navbar {
    display: none;
  }
  .leadership {
    display: block !important;
  }
  .leadership .cardteam {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-bottom: 20px !important;
    flex-direction: row !important;
  }
  .leadership .cardteam .content {
    padding-left: 30px !important;
  }
  .privacy {
    padding: 80px 20px;
  }
  .footer .footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .herowork {
    height: 100vh;
    width: 100vw;
  }
  .herowork .containerherotage {
    width: 80%;
  }
  .articalesecation section .bodywork {
    padding-left: 0px;
    padding-right: 0px;
  }
  .heroimageweb {
    padding: 20px;
  }
  .heroimageweb section.pone .headingproje, .heroimageweb section.ptow .headingproje {
    font-size: 16px;
  }
  .heroimageweb section.pone .feature, .heroimageweb section.ptow .feature {
    gap: 5px;
  }
  .heroimageweb section.pone .feature li, .heroimageweb section.ptow .feature li {
    font-size: 10px;
    padding: 2.5px 5px;
    border-radius: 1.5px;
  }
}/*# sourceMappingURL=style.css.map */