* {
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */

@font-face {
  font-family: forever;
  src: url(../fonts/Forever\ Brush\ Script\ Demo.ttf);
}

@font-face {
  font-family: proxima;
  src: url(../fonts/FontsFree-Net-proxima_nova_reg-webfont.ttf);
}

@font-face {
  font-family: mont;
  src: url(../fonts/shirft/Montserrat-Regular.otf);
}

* {
  scroll-behavior: smooth;
}

#logo-title {
  color: white;
  text-decoration: none;
  font-size: 30px;
  font-family: mont;
}

#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
}
#header .header {
  min-height: 12vh;
  background-color: transparent;
  transition: 0.3s ease background-color;
}
#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  height: 100%;
  max-width: 1300px;
  padding: 0 10px;
}
#header .nav-list ul {
  list-style: none;
  position: absolute;
  background-color: #1f1e1e;
  width: 100vw;
  height: 100vh;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.5s ease left;
}
#header .nav-list ul.active {
  left: 0%;
}
#header .nav-list ul a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-decoration: none;
  color: white;
  padding: 20px;
  display: block;
  font-weight: 500;
  font-family: mont;
}
#header .nav-list ul a::after {
  content: attr(data-after);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(240, 248, 255, 0.021);
  font-size: 13rem;
  letter-spacing: 50px;
  z-index: -1;
  transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
}
#header .nav-list ul li:hover a {
  color: crimson;
}
#header .hamburger {
  height: 60px;
  width: 60px;
  display: inline-block;
  border: 3px solid #548CFF;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transform: scale(0.8);
  margin-right: 20px;
  box-shadow: 0px 0px 5px #548CFF;
}
#header .hamburger:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #548CFF;
  animation: hamburger_puls 1s ease infinite;
  box-shadow: 0px 0px 10px #548CFF;
}
#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: white;
  z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: white;
  transition: 0.3s ease;
  transition-property: top, bottom;
}
#header .hamburger .bar::after {
  top: 8px;
}
#header .hamburger .bar::before {
  bottom: 8px;
}
#header .hamburger.active .bar::before {
  bottom: 0;
}
#header .hamburger.active .bar::after {
  top: 0;
}

section#hero {
  width: 100%;
  height: 123vh;
  background-image: url(../img/bg\ banner.jpg);
  background-size: cover;
  z-index: 1;
  background-position: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

section#hero h1 {
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
section#hero p {
  font-size: 18px;
  width: 50%;
  text-align: center;
  font-family: proxima;
}

/* About section */

section#about {
  width: 100%;
  min-height: 600px;
  background-color: #962323;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
section#about .container {
  width: 40%;
}
section#about .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

section#about .img img {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 30px #2e2e2e;
  border-radius: 5px;
}

section#about .about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 180px;
  color: white;
}

section#about .about h1 {
  font-size: 56px;
  font-family: forever;
}

section#about .about hr {
  width: 20%;
  border: 1px solid white;
  margin-bottom: 30px;
}
section#about .about p {
  text-align: center;
  font-family: proxima;
}

/* End About section */

/* Singature section */

section#singatures {
  width: 100%;
  height: 500px;
  background-image: url(../img/singatures.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background-position: center;
}

section#singatures h1 {
  font-size: 65px;
  font-family: forever;
}
section#singatures hr {
  width: 10%;
  border: 1px solid #c8235d;
  margin: 40px;
}

section#singatures p {
  width: 40%;
  text-align: center;
  font-family: proxima;
}

/* End Singature section */

/* Menu section */

section#menu {
  width: 100%;
  min-height: 700px;
  background-color: #f3f4f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding-top: 20px;
}
section#menu .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

section#menu .title h1 {
  font-size: 56px;
  font-family: forever;
}
section#menu .title hr {
  width: 40%;
  border: 2px solid #c8235d;
}

section#menu .menus {
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
section#menu .menus .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 35%;
  min-height: 500px;
}

section#menu .menus .contents .card .title {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 30px;
  transition: 0.5s all;
  width: 100%;
}
section#menu .menus .contents .card .title h4 {
  color: #2a2b2c;
  text-transform: uppercase;
  font-family: proxima;
}
section#menu .menus .contents .card .title p {
  color: #c8235d;
}
section#menu .menus .contents .card .comment {
  width: 100%;
  transition: 0.5s all;
}

section#menu .menus .contents .card .comment p {
  color: #505153;
  font-family: proxima;
  text-align: justify;
}
section#menu .menus .contents .card {
  transition: 0.5s all;
  transition: 0.5s all;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
}
section#menu .menus .contents .card:active {
  border: none;
}
section#menu .menus .contents .card:hover {
  transform: scale(0.9);
}

/* End Menu section */

/* Portfolio section */
section#images{
	background-color: #282828;
	padding: 20px;
}

section#portfolio section.team {
  width: 100%;
  background-color: transparent;
}

.teams .carousel .card {
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.teams .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.teams .carousel .card:hover .box {
  transform: scale(1.05);
}
.teams .carousel .card img {
  height: 270px;
  object-fit: cover;
  transition: all 0.3s ease;
  border: 5px solid #676FA3;
  border-radius: 10px;
}
.teams .carousel .card:hover img {
  border: 5px solid #548CFF;
  transition: .3s all;
  box-shadow: 0px 0px 15px #548CFF;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  height: 13px;
  width: 13px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid #548CFF !important;
  transition: all 0.3s ease;
  margin: 10px;
}
.owl-dot.active {
  width: 35px;
  border-radius: 14px;
  box-shadow: 0px 0px 8px #548CFF;
}
.owl-dot.active,
.owl-dot:hover {
  background: #548CFF !important;
}
/* End Portfolio section */

/* Page section */

section#page{
  width: 100%;
  min-height: 300px;
  background-color: #060706;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

section#page .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  height: 300px;
}
section#page .row .col{
  width: 45%;
  height: 200px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

section#page .row .col h3{
  margin-top: -10px;
  font-size: 30px;
  font-family: mont;
}
section#page .row .col .h3:nth-child(1){
  margin-top: -30px;
}
section#page .row .col p{
  text-align: justify;
}
section#page .row .col a{
  text-decoration: none;
  color: white;
}
section#page .row .col .a-link{
  margin-bottom: 20px;
}
section#page .row .col a i{
  color: crimson;
  margin-right: 10px;
}
/* End Page section */

@keyframes hamburger_puls {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 1005px) {
  section#menu .menus {
    width: 100%;
  }
  section#menu .menus .contents {
    width: 45%;
  }
}

@media (max-width: 992px) {
  section#hero p {
    width: 70%;
  }
  section#abot .container {
    width: 50%;
    align-items: center;
  }
  section#about .img img {
    width: 100%;
    height: 100%;
  }
  section#about .about h1 {
    font-size: 35px;
  }
  section#about .about hr {
    margin-bottom: 0;
  }
  section#about .about p {
    font-size: 14px;
  }
  section#menu .menus {
    width: 100%;
  }
  section#menu .menus .contents {
    width: 45%;
  }
  section#menu .menus .contents .title h4 {
    font-size: 16px;
  }
  section#page{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section#page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  section#page .row{
    width: 80%;
  }
}
@media (max-width: 768px) {
  section#hero h1 {
    font-size: 35px;
  }

  section#hero p {
    width: 80%;
  }
  section#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  section#about .container {
    width: 80%;
    margin: 20px;
  }
  section#about .img img {
    width: 90%;
    height: 90%;
  }
  section#singatures p {
    width: 80%;
  }
  section#menu .menus {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  section#menu .menus .contents {
    width: 70%;
    margin: 50px;
    min-height: 600px;
  }
}
@media (max-width: 520px){
  section#page{
    height: 900px;
    width: 100%;
    padding-top: 60px;
  }
  section#page .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 90%;
    height: 800px;
  }  
  section#page .row .col{
    width: 100%;
  }
}
@media (max-width: 428px) {
  section#about .img img {
    width: 100%;
  }
  section#singatures h1 {
    font-size: 40px;
  }
  .owl-dot {
	  margin: 4px;
  }

  

}
@media (max-width: 400px) {
  #logo-title {
    font-size: 28px;
  }
  #header .container .nav-bar .nav-list .hamburger {
    width: 50px;
    height: 50px;
  }
  section#hero h1 {
    font-size: 25px;
  }

  section#hero p {
    width: 95%;
    font-size: 15px;
  }
  section#about .about {
    height: 200px;
  }
  section#about .img {
    width: 90%;
  }
  section#about .img img {
    width: 100%;
  }
  section#about .about p {
    font-size: 12px;
    width: 95%;
  }

  section#singatures {
    height: 300px;
  }

  section#singatures h1 {
    font-size: 35px;
  }
  section#singatures hr {
    width: 18.5%;
  }
  section#singatures p {
    width: 95%;
    font-size: 12px;
  }

  section#menu .menus .contents {
    width: 90%;
  }
  section#menu .menus .contents:nth-child(2) {
    position: relative;
    top: -7rem;
  }
  section#menu .menus .contents .card .title h4 {
    font-size: 15px;
  }
  section#menu .menus .contents .card .title p {
    font-size: 15px;
  }
  .teams .carousel .card img {
	height: 170px;
	object-fit: cover;
	transition: all 0.3s ease;
  }
}
@media only screen and (min-width: 1200px) {
  /* header */
  #header .nav-bar {
    width: 80%;
    margin: auto;
    height: 70px;
  }

  #header .hamburger {
    display: none;
  }
  #header .nav-list ul {
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
    background-color: transparent;
  }
  #header .nav-list ul li {
    display: inline-block;
  }
  #header .nav-list ul li a {
    font-size: 1rem;
    color: white;
  }
  .active_click_link {
    color: black;
  }
  #header .nav-list ul a:after {
    display: none;
  }
  /* End header */

  #services .service-bottom .service-item {
    flex-basis: 22%;
    margin: 1.5%;
  }
}
