@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
}

header .header-1 {
  display: flex;

  justify-content: center;
  background: #fff;
  width: 100%;
  padding: 10px 20px;
}

header .header-1 .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

@keyframes flyIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

header .header-1 .logo img {
  width: 320px;
  height: auto;
  align-items: center;
  animation: flyIn 0.8s ease-in-out;
}

header .header-1 .logo img.rotate {
  transform: rotate(360deg);
}

header .header-1 header .header-1 form form {
  display: flex;
}


header .header-1 form label {
  height: 40px;
  width: 60px;
  background: crimson;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
}

header .header-1 form label:hover {
  color: #fff8;
}

header .header-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #014bad;
  width: 100%;
  padding: 10px 20px;
  z-index: 5;
}

header .header-2 .navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  z-index: 5;
}

header .header-2 .navbar ul li {
  margin: 15px;

}

header .header-2 .navbar ul li a {
  color: #fff;
  font-size: 20px;
  font: Euclid-700;

}

header .header-2 .navbar ul li a:hover {
  color: #fff8;

}

header .header-2 .icons a {
  font-size: 20px;
  color: #fff;
  margin: 10px;

}

header .header-2 .icons a:hover {
  color: #fff8;
  z-index: 5;
}

#menu {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  display: none;

}


header .header-2.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 3px 5px #333;
  z-index: 5;
}



/* media queries  */

@media (max-width:991px) {

  header .header-1 form #search {
    width: 100%;
  }

}

@media (max-width:768px) {

  header .header-2 #menu {
    display: block;
  }

  header .header-2 .navbar {
    position: fixed;
    top: -1000px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;


  }

  header .header-2 .navbar ul {
    flex-flow: column;
    width: 250px;
    border-radius: 5px;
    padding: 30px 10px;
    background: #014bad;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, .5),
      0 3px 5px #000;

  }

  header .header-2 .navbar ul li .dropdown-content .dropdown {
    width: 100%;
    text-align: center;
    z-index: 8;
    opacity: 1;
    visibility: visible;

  }

  header .header-2 .navbar ul li a .dropdown-content .dropdown {
    font-size: 25px;
    display: block;
    z-index: 8;
    opacity: 1;
  }

  header .header-2 .navbar.nav-toggle {
    top: 55%;
    opacity: 1;
    z-index: 5;
  }

}

@media (max-width:500px) {

  header .header-1 {
    flex-flow: column;
  }

  header .header-1 form {
    padding-top: 10px;
  }

}



.navbar .icondrop {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 5;

}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #014bad;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #014bad;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: lightgrey;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}



/* services */
.content {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content .card {
  background: #fff;
  width: calc(33.33% - 20px);
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.content .card .top {
  height: 120px;
  color: #fff;
  padding: 20px 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
}

.content .card.bottom {
  align-self: center;
  order: 4;

}

.content .card .top .title {
  font-size: 27px;
  font-weight: 600;
}

.content .card .top .price-sec {
  margin-top: -10px;
  font-weight: 600;
}

.content .card .top .price {
  font-size: 45px;
}

.content .card .info {
  font-size: 16px;
  margin-top: 20px;
  align-content: center;
}

.content .card .details .one {
  margin-top: 25px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content .card .details .one::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #ddd;
  height: 1px;
  left: 0;
  top: -12px;
  border-radius: 25px;
}




.content .card .details .one a {
  color: black;
}

.content .card .details i.fa-times {
  color: #cd3241;
}

.content .card button {
  outline: none;
  border: none;
  height: 42px;
  color: #fff;
  margin-top: 30px;
  border-radius: 3px;
  font-size: 18px;
  width: 100%;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 1px;
}

.content .card a {

  color: #fff;

  font-size: 18px;

  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 1px;
}

.content .one .top,
.content .one button {
  background: #014bad;
}

.content .two .top,
.content .two button {
  background: #014bad;
}

.content .three .top,
.content .three button {
  background: #014bad;
}

.content .bottom .top,
.content .bottom button {
  background: #014bad;
}

.content button:hover {
  filter: brightness(90%);
}

.content .one ::selection {
  background: #8af5b6;
}

.content .two ::selection {
  background: #f2b08c;
}

.content .three ::selection {
  background: #d0f9fb;
}

.content .bottom ::selection {
  background: #d0f9fb;
}

@media (max-width:1000px) {
  .content .card {
    background: #fff;
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
}

@media (max-width:715px) {
  .content .card {
    width: 100%;
  }
}



/* footer */
/* .containerfoot{
  max-width: 1170px;
  margin:auto;
}
.rowfoot{
  display: flex;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}
.footer{
  background-color: #014bad;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: yellowgreen;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}
.credit a{
    text-decoration: none;
    color: white;
  }

  .credit {
      margin-top: 35px;
      text-align: center;
      color: white;
  } */

/*responsive*/
/* @media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
} */

/* footer */
footer .containerfoot {
  max-width: 1170px;
  margin: auto;
}

.rowfoot {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #014bad;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: yellowgreen;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col ul.footer-add {
  width: 100%;
}

.footer-col ul.footer-add li {
  /* margin-bottom: 15px; */
  color: #bbbbbb;
  font-size: 15px;
  /* line-height: 1.6; */
}

.footer-col ul.footer-add li strong {
  color: #fff;
  display: block;
  /* margin-bottom: 4px; */
  font-weight: 600;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.credit a {
  text-decoration: none;
  color: white;
}

.credit {
  margin-top: 35px;
  text-align: center;
  color: white;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}