/* ============================= */
/* 🔝 Bottom-to-Top Button       */
/* ============================= */

#toTop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 3%;
  z-index: 999;
  width: 32px;
  height: 32px;
  border: none;
  text-indent: 100%;
  background: url(../images/move-top.png) no-repeat 0 0;
  overflow: hidden;
  text-decoration: none;
}

#toTopHover {
  width: 32px;
  height: 32px;
  display: block;
  float: right;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* ============================= */
/* 🧭 Header Layout & Navigation */
/* ============================= */

ul, label {
  margin: 0;
  padding: 0;
}

body a:hover,
body a:focus {
  text-decoration: none;
  outline: none;
}

.menu_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0.5em auto;
}

.menu_logo img {
  max-height: 60px;
}

.menu_logo2 {
  position: absolute;
  top: 0.9em;
  left: 1em;
  width: auto;
  max-width: 200px;
  z-index: 1000;
}

.contact-icon {
  padding-top: 0.8em;
}

.search-box {
  margin-top: 0.9em;
  max-width: 250px;
  flex-grow: 1;
}

.search-form .form-group {
  width: 100%;
  height: 36px;
  border-radius: 25px;
  border: 1px solid #1272c6;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.search-form .form-group input.form-control {
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 10px;
  font-size: 0.9em;
}

.search-form .form-group span.form-control-feedback {
  position: absolute;
  right: 10px;
  color: #1272c6;
  font-size: 16px;
}

#nav_menu {
  width: 50px;
  height: 32px;
  position: fixed;
  top: 2%;
  right: 2%;
  z-index: 999;
  cursor: pointer;
}

.nav_ham {
  width: 27px;
  height: 2px;
  background: #1272c6;
  margin: 6px auto;
  transition: 0.3s;
}

.ham_1_open {
  transform: rotate(45deg);
  margin-top: 15px;
}

.ham_2_open {
  transform: rotate(-45deg);
  margin-top: -8px;
}

.ham_3_open {
  opacity: 0;
}

.button_open {
  background: #fff;
}

.ham {
  margin-top: 1em;
}

.ham.ham_1_open {
  margin-top: 20px !important;
}

#nav_container {
  width: 100%;
  height: 80px;
  background-color: #1272c6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  display: none;
  text-align: center;
}

.container_open {
  display: block !important;
  position: fixed !important;
}

#nav_list {
  list-style: none;
  margin: 1.5em 0 0;
  padding: 0;
}

.nav_item {
  display: inline-block;
  margin: 0 2em;
}

.nav_item a {
  text-decoration: none;
  color: #f3f3f3;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.5s;
}

.menu__list {
  position: relative;
  padding: 0;
  list-style: none;
}

.menu__link {
  display: block;
  padding: 0.5em;
  position: relative;
  transition: color 0.4s;
}

.menu--sebastian .menu__link:hover,
.menu--sebastian .menu_item--current .menu__link {
  color: #fff;
}

.menu--sebastian .menu__link::before,
.menu--sebastian .menu__link::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.38);
  transform: scale3d(0, 1, 1);
  transition: transform 0.2s;
}

.menu--sebastian .menu__link::before {
  top: 0;
  transform-origin: 0 50%;
}

.menu--sebastian .menu__link::after {
  bottom: 0;
  transform-origin: 100% 50%;
}

.menu--sebastian .menu_item--current .menu__link::before,
.menu--sebastian .menu_item--current .menu__link::after,
.menu__link:hover::before,
.menu__link:hover::after {
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-duration: 0.4s;
}

/* ============================= */
/* 📱 Responsive Media Queries   */
/* ============================= */

/* All your media queries from 800px down to 320px are now merged and cleaned */
@media screen and (max-width: 800px) {
  #nav_menu {
    right: 1.5%;
    top: 2%;
  }

  #nav_list {
    margin: 0 auto;
    width: 70%;
    padding: 2.2em 0 1em;
  }

  #nav_container {
    height: auto;
  }

  .nav_item {
    display: block;
    text-align: center;
    margin: 0 0 10px;
  }

  #m_nav_item_1 {
    padding-top: 4em;
  }

  .menu_logo2 {
    left: 1em;
    right: auto;
    padding: 5px 0;
  }

  .contact-icon {
    padding-right: 1em;
  }

  .contact-right-w3l {
    padding: 3em 0;
  }

  .banner-bottom-girds {
    width: 98%;
    left: 1%;
  }
}

/* ============================= */
/* 📱 Responsive Media Queries   */
/* ============================= */

@media screen and (max-width: 768px) {
  .nav_item {
    margin: 0 0.5em 0 1.3em;
  }

  h4.modal-title {
    font-size: 1.8em;
  }

  .newsletter h6 {
    font-size: 1.15em;
  }

  h3.w3ls-title span {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 736px) {
  .banner-bottom-girds {
    width: 100%;
    left: 0%;
  }

  #nav_menu {
    right: 0.5%;
  }

  .nav_item {
    margin: 0 0.5em 0 1.1em;
  }

  h3.h3-w3l,
  h2.h3-w3l {
    font-size: 2em;
    margin-bottom: 0.5em;
  }

  .slide h4 {
    font-size: 3.8em;
  }

  h3.agileits-title {
    margin-bottom: 1.5em;
    font-size: 2.7em;
  }

  .img-agile {
    float: none;
  }

  .w3_agile-footer1.f1 p {
    font-size: 1em;
  }
}

@media screen and (max-width: 667px) {
  .nav_item {
    margin: 0 0 0 1.3em;
  }

  .baner-info h3 {
    font-size: 3.3em;
  }

  .service_grid {
    width: 43%;
  }

  .banner-bottom-girds {
    width: 78%;
    left: 17%;
  }

  div#about {
    padding-top: 21em;
  }

  .w3_agile-footer1.f1 h2 a {
    font-size: 1.2em;
  }

  h4.modal-title {
    font-size: 1.6em;
  }

  .services-left h4 {
    font-size: 2.3em;
  }

  h3.agileits-title {
    margin-bottom: 1.3em;
    font-size: 2.6em;
  }

  .stats-info.agileits-w3layouts {
    padding: 2em 3em;
  }

  .stats-grid {
    width: 45%;
  }

  .stats-bg {
    min-height: 375px;
  }
}

@media screen and (max-width: 640px) {
  .nav_item {
    margin: 0 0 0 1em;
  }

  .baner-info h3 {
    font-size: 3.1em;
  }

  .contact-icon {
    padding-right: 1.9em;
  }
}

@media screen and (max-width: 600px) {
  .banner-bottom-girds {
    width: 78%;
    left: 15%;
    top: -10%;
  }

  .baner-info {
    padding-top: 6em;
    padding-left: 5em;
  }

  .baner-info p {
    letter-spacing: 2px;
  }

  .modal-dialog {
    width: 78%;
  }

  .contact-right-w3l input[type="submit"] {
    padding: 0.7em 1.8em;
  }

  h3.w3ls-title span {
    font-size: 1.5em;
  }

  .contact-grid-agileinfo {
    padding: 1em;
  }

  .grid figure:nth-child(odd) {
    margin: 0;
  }

  .stats-info.agileits-w3layouts {
    padding: 2em 2em;
  }

  .stats-grid {
    padding: 1em;
  }
}

@media screen and (max-width: 568px) {
  .modal-dialog {
    width: 80%;
  }

  .banner-bottom-girds {
    top: -8%;
    width: 86%;
    left: 12%;
  }

  h3.h3-w3l,
  h2.h3-w3l {
    font-size: 1.8em;
  }

  .wthree-about h5 {
    letter-spacing: 0.5px;
  }

  .wthree-about-left {
    width: 53%;
  }

  .test-review i {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 480px) {
  .footer-nav li {
    margin: 0 0.8em 0 0;
  }

  .baner-info h3 {
    font-size: 2.8em;
  }

  .banner-bottom-girds {
    width: 95%;
    left: 5%;
  }

  .baner-info {
    padding-top: 4em;
    padding-left: 3em;
  }

  .modal-dialog {
    width: 95%;
  }

  .contact-right-w3l input[type="text"],
  .contact-right-w3l input[type="email"],
  .contact-right-w3l textarea {
    width: 100%;
  }

  .contact-right-w3l {
    padding: 2em 0;
  }

  .contact-left-w3ls,
  .map {
    width: 100%;
  }

  .map {
    margin-top: 2em;
  }

  .wthree-about h5 {
    font-size: 1.25em;
    line-height: 1.5;
  }

  .w3ls-row.alert.wthree-about-right,
  .wthree-about-left {
    width: 62%;
    padding: 0 1em;
  }

  .stats-grid {
    width: 43%;
  }

  .team-grid {
    width: 100%;
  }

  .team-grid:nth-child(even) {
    margin: 2em 0;
  }

  .team-grid:nth-child(4) {
    margin-bottom: 0;
  }

  .img-agile {
    width: 100%;
  }

  .test-tooltip1:after {
    left: 169px;
    top: -17%;
  }
}

@media screen and (max-width: 414px) {
  #nav_menu {
    right: 0.5%;
    top: 2%;
  }

  .baner-info h3 {
    font-size: 2.6em;
  }

  .baner-info {
    padding-top: 4em;
    padding-left: 1.5em;
  }

  .baner-info p {
    letter-spacing: 1px;
  }

  .banner-bottom-girds {
    width: 100%;
    left: 0%;
  }

  .service_grid {
    width: 48%;
  }

  .w3_agile-footer1.f1 h2 a {
    font-size: 1.1em;
  }

  ul.footer-nav li a {
    padding: 1em 0.8em;
    font-size: 1.07em;
  }

  .footer-nav li {
    margin: 0;
  }

  h4.modal-title {
    font-size: 1.35em;
  }

  .newsletter h6 {
    font-size: 1.1em;
  }

  .inner-bg {
    min-height: 185px;
  }

  h3.w3ls-title {
    font-size: 2.6em;
  }

  figure.col-md-3.col-xs-6.w3l-service-hover {
    width: 100%;
  }

  h3.agileits-title {
    margin-bottom: 1em;
    font-size: 2.3em;
  }

  .slide h4 {
    font-size: 3em;
  }

  .numscroller {
    font-size: 2.2em;
  }

  .test-tooltip1:after {
    left: 138px;
  }
}

@media screen and (max-width: 384px) {
  .footer-nav li a {
    padding: 1em 0.8em;
  }

  .ih-item.circle .img,
  .ih-item.circle {
    width: 160px;
    height: 160px;
  }

  .ih-item.circle.effect17 .info p {
    margin: 48px 30px 0;
    font-size: 1.4em;
  }

  .contact-main {
    padding-top: 2em;
  }

  .baner-info h3 {
    font-size: 2.4em;
  }

  .w3_tab_img_left {
    width: 100%;
  }

  h3.agileits-title {
    font-size: 2.1em;
  }

  .agile_timing_right {
    padding: 0;
    margin: 3em 0;
  }

  .grid {
    margin: 1em auto;
  }

  .services-grid p {
    font-size: 1.05em;
  }

  figure.w3l-service-hover h4 {
    padding: 3% 0;
  }
}
@media screen and (max-width: 375px) {
  .baner-info h3 {
    font-size: 2.3em;
  }

  .footer-nav li a {
    padding: 1em 0.7em;
  }

  .inner-li {
    width: 100%;
    float: none;
  }

  .inner-li:nth-child(2) {
    margin: 2em 0;
  }

  .section-w3ls {
    padding: 2em 0;
  }

  h3.w3ls-title {
    font-size: 2.45em;
  }

  .panel-title {
    font-size: 1.1em;
  }

  .panel-title a {
    padding: 12px 33px;
  }

  .agile_timing_right ul li {
    letter-spacing: 1.2px;
  }

  .test-tooltip1:after {
    left: 127px;
  }
}

@media screen and (max-width: 320px) {
  .baner-info h3 {
    font-size: 2em;
  }

  .baner-info h4 {
    font-size: 1.1em;
    letter-spacing: 4px;
  }

  .ih-item.circle .img,
  .ih-item.circle {
    width: 144px;
    height: 144px;
  }

  .baner-info p {
    letter-spacing: 1px;
    font-size: 1.05em;
  }

  a.w3_play_icon1 {
    padding: 0.3em 1.3em;
    letter-spacing: 2px;
  }

  .agile_timing_right ul li {
    letter-spacing: 1.2px;
  }

  h4.modal-title {
    margin-top: 1em;
  }

  .contact-right-w3l {
    padding: 1em 0;
  }

  .inner-bg {
    min-height: 150px;
  }

  h3.agileits-title {
    font-size: 1.8em;
  }

  .w3ls-about-left p {
    font-size: 1.05em;
  }

  .stats-info.agileits-w3layouts {
    padding: 2em 1em;
  }

  .stats-grid {
    width: 45%;
    margin: 6px;
  }

  .stats-info p {
    font-size: 1.3em;
  }

  .w3ls-row {
    margin: 2em 0 0;
  }

  .wthree-about h5 {
    margin: 0.8em 0 0.5em;
  }

  .test-tooltip1:after {
    left: 102px;
    top: -13%;
  }

  .baner-info {
    padding-top: 3em;
  }
}

