body {
 /* font-family: 'Montserrat Alternates', sans-serif; */
  font-family: 'Superior', sans-serif;
  font-weight: 400;
  color: #0d1e2d;
}

a {
  color: #777;
  text-decoration: none;
}

a:hover {
  color: #000;
}


.section {
  padding-top: 3rem;
  padding-bottom: 1rem;
}


.filters a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.filters a:hover,
.filters a:focus,
.filters a:active {
  text-decoration: none;
}

.filters a:hover:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #000;
}

.filters a.active {
  color: #000;
}

.filters a.active:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #000;
}

.item {
  border: none;
  margin-bottom: 30px;
}

.item .item-wrap {
  display: block;
  position: relative;
  overflow: hidden;


}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.item .item-wrap img {
  transition: 0.3s transform ease;
  transform: scale(1);
}


.item .item-wrap>.work-info {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: 0.3s all ease;
}

.item .item-wrap>.work-info h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.item .item-wrap>.work-info span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.item .item-wrap:hover {
  text-decoration: none;
}

.item .item-wrap:hover img {
  transform: scale(1.05);
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover .work-info {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}

.testimonial-wrap {
  padding: 50px 50px 80px 50px;
  background: #eceff2;
}

.testimonial-wrap .testimonial {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-wrap .testimonial img {
  border-radius: 50%;
  width: 120px;
  margin: 0 auto 30px auto;
}

.testimonial-wrap .testimonial blockquote p {
  font-size: 20px;
}

.h3 {
  font-size: 20px;
}

.h4 {
  font-size: 16px;
}

.heading {
  font-size: 28px;
}

.readmore {
  display: inline-block;
  border: 1px solid #000;
  padding: 10px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  transition: 0.2s all ease;
  font-weight: 700;
}

.readmore:active,
.readmore:focus,
.readmore:hover {
  outline: none;
}

.readmore:hover {
  color: #fff;
  text-decoration: none;
  background: #000;
}

.testimonials-slider .swiper-pagination {
  margin-top: -60px;
  position: relative;
}

.testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(13, 30, 45, 0.3);
  opacity: 1;
}

.testimonials-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(13, 30, 45, 0.6);
}

.sticky-content {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  /* required */
}


.form-control {
  border-radius: 0;
  background: #f8f9fa;
  border: 1px solid transparent;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.form-control:active,
.form-control:focus {
  background: #eff1f4;
  outline: none;
  box-shadow: none;
  border: 1px solid transparent;
}

.custom-progress {
  height: 7px;
  border-radius: 0;
}

.custom-progress .progress-bar {
  background: #000;
}


.services i {
  font-size: 40px;
}

.services h4 {
  padding-top: 10px;
}


.message-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.message-form .error-message br+br {
  margin-top: 25px;
}

.message-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.message-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.message-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.footer {
  padding: 0 0 4rem 0;
}

.footer a {
  color: #000;
}

.social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f9fa;
  position: relative;
  text-align: center;
  color: #0d1e2d;
}

.social a span {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social a:hover {
  color: #000;
}

.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header {
 /* padding-top: 40px; */
 padding: 20px 0;
 align-items:flex-start !important;
}
.header .center {
 display:flex;
 flex-direction: column; 
}
.header .center img { 
 width:210px;
 margin: 0 auto; 
}
.header span {
 /* font-family: geometria; */
  font-size: 22px;
  text-transform: uppercase;
  
}
.center {
  text-align: center;
}
.profile {
 width:100%;
}
.superior{
  font-family: superior;
  font-size:1.2rem;
}
.center {
 text-align:center;
}
.strong {
 font-weight:bold;
}
.my-skills-section {
 font-size: 1.2em;
 position:relative;
}
.my-skills-item {
 padding: 10px 0 10px 20px;
}
.my-skills-item:before {
  content: "✓"; /* Unicode checkmark */
  position: absolute;
  left: 10px;
  color: green; /* Customize color */
  font-weight: bold;
}

.my-skills {
padding: 20px 0;
}
.my-skills span {
 color:#E26670;
}
.additional-info p:last-child {
 text-align:center;
 font-weight:bold;
 font-style:italic;
}
.skills h2, .skills h3 {
 font-weight:bold;
}
.skill h3 {
 color: red;
 border-bottom: 2px solid #32a1ce;
 padding-bottom:10px;
}

.desc::before {
 content: "“";
 font-size:2rem;
}
.desc::after {
 content: "”";
 font-size:2rem;
}
.about {
padding-right:20px;
}
.media {
 width: 100%;
 height: auto;
}
.media iframe html {
 background:#fff;
 width:650px;
 height:450px;
}
.second-menu {
 margin-top:30px;
 float:right;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}
.spec {
  font-size: 1.2rem;
  color: #E26670;
}
.nav-link {
 font-size:1.2rem;
}
.logo {
  width: 220px;
  margin-left:10px;
  text-transform:uppercase;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-top:4px;
}
.logo > div {
 padding-top:10px;
 font-size:1.1em;
}

.nav-link {
 padding:0px;
}
.slogan {
 display:flex;
padding-top:20px;
 align-items: flex-end;
 font-size:2em;
 font-style: italic;
}
.full {
 width:100%;
}
.mobile-view {
 display: none;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 1em 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* For most phones (portrait and landscape) */
@media only screen and (max-width: 767px) {
  /* Your phone-specific styles here */
  .logo {
    width:auto;
  }
  .slogan {
   justify-content:center;
   font-size:1.1em;
   }
   .menu {
    position:absolute;
    top:30px;
    right:20px;
   }
   .navbar-nav {
    margin-right:0px !important;
    margin-top:10px;
   }
   .desktop-view {
     display: none;
   }
   .mobile-view {
     display: block;
   }
   
  
}

