/*------------ Universal Selector----------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Source Sans 3", sans-serif;
  scroll-behavior: smooth;
}
.primary {
  color: #ff305b;
}
li {
  list-style: none;
}
a {
  color: white;
  text-decoration: none;
  transition: 0.5s;
}
.container {
  width: 1100px;
  margin: auto;
  /* background-color: blueviolet; */
}
/*------------------------------------*/
/*--------------- NAVBAR -------------*/
.navbar {
  text-transform: capitalize;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.nav-logo {
  float: left;
  margin-left: 70px;
  font-size: 24px;
  transition: 0.3s;
}
.nav-logo a {
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
.nav-links {
  margin-top: 5px;
  float: right;
}
.nav-links ul li {
  float: left;
  margin-right: 30px;
}
.clear-fix {
  clear: both;
}
a:hover {
  color: #ff305b;
}
.main {
  color: #ff305b;
}
/*------------------------------------*/
/*---------------- HOME -------------*/
.home {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/header.jpeg);
  background-size: cover;
  background-position: center center;
}
.home .home-content {
  /* background-color: red; */
  text-align: center;
  padding: 300px 0px;
  /* margin-top: 150px; */
  color: #fff;
}
.home h1 {
  margin: 10px 0;
  font-size: 70px;
  text-transform: uppercase;
}
.home h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
.home h4 {
  font-size: 26px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 300;
}
/*------------------------------------*/
/*--------------- ABOUT -------------*/
.about {
  margin: 100px 0;
}
.item {
  float: left;
  width: 350px;
  position: relative;
  overflow: hidden;
}
.layer {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1s;
}
.layer i {
  padding: 15px;
  margin-top: 200px;
  cursor: pointer;
  position: relative;
  top: 100%;
  transition: 0.5s;
}
.item:hover i {
  top: 0;
}
i:hover {
  color: #ff305b;
}
.item:hover .layer {
  opacity: 1;
  top: 0;
}
.item img {
  width: 100%;
  border-radius: 10px;
}
/*------*/
.about-content {
  /* background-color: yellow; */
  padding: 40px;
  float: right;
  width: 700px;
}
.about-content h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 25px;
  padding-left: 13px;
  position: relative;
  text-transform: uppercase;
}
.about-content h2::after {
  content: "";
  background-color: #ff305b;
  width: 4px;
  height: 27px;
  position: absolute;
  top: -3px;
  left: -3px;
}
.about-content p {
  line-height: 1.6;
  color: #555555;
  border-bottom: 1px dashed #999999;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.about-info table {
  margin-bottom: 30px;
}
.about-info table tbody tr {
  float: left;
  margin-right: 100px;
  color: #333333;
}
.about-info table tbody tr.location {
  /* background-color: red; */
  margin-left: 50px;
}
button.btn {
  margin-top: 20px;
  transition: 0.5s;
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  color: white;
  background-color: #ff305b;
}
button.btn:hover {
  background-color: red;
}
/*------------------------------------*/
/*------------ OUR SERVICES ----------*/
.ouer-services {
  margin: 100px 0;
  padding: 100px 0 54px;
  background-color: #f1f1f1;
}
.heading h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
}
.heading h2::after {
  content: "";
  width: 140px;
  position: absolute;
  bottom: 0px;
  left: 480px;
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0px;
}
.heading h2::before {
  content: "";
  width: 70px;
  position: absolute;
  bottom: -5px;
  left: 521px;
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0px;
  padding: 4px 0px 5px;
}
.service {
  width: 25%;
  float: left;
  padding: 40px 20px;
  text-align: center;
  transition: 0.5s;
}
.service h3 {
  margin: 25px 0;
}
.service:hover {
  cursor: pointer;
  background-color: white;
  box-shadow: 0px 2px 7px #ff3059c4;
  /* box-shadow: 3px 1px 5px #ff305b; */
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); */
}
.service i {
  font-size: 30px;
  color: #ff305b;
  transition: 0.5s;
}
.service:hover i {
  transform: scale(1.3);
}
.service p {
  color: #999999;
}
/*------------------------------------*/
/*------------ OUR PORTFOLIO ----------*/
.our-portfolio {
  /* background-color: red; */
  margin: 100px 0;
  padding: 100px 0 54px;
}
.our-portfolio .brands {
  /* background-color: yellow; */
  text-align: center;
  width: fit-content;
  margin: 30px auto;
}
.our-portfolio .brands a {
  margin-right: 20px;
  color: black;
}
.item-brand img {
  width: 100%;
}
.item-brand {
  overflow: hidden;
  position: relative;
}
.layer-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.5s 0.5s;
  color: #ff305b;
}
.item-brand:hover .layer-img {
  opacity: 1;
}
.item-brand img {
  transition: 0.5s;
}
.item-brand:hover img {
  transform: scale(1.3);
}
.item-brand {
  float: left;
  width: 31%;
  margin: 10px 10px;
  cursor: pointer;
}
/*------------------------------------*/
/*--------------- COUNTER ------------*/
.counters {
  background-color: #f1f1f1;
  padding: 100px 0 54px;
}
.conter {
  /* background-color: yellow; */
  float: left;
  width: 25%;
  margin: auto;
  text-align: center;
  padding: 30px;
}
.conter i {
  font-size: 25px;
  color: #ff305b;
}
.conter h3 {
  margin: 20px 0;
  font-size: 30px;
}
.conter h5 {
  color: #999999;
}
/*------------------------------------*/
/*--------------- FEEDBACK ------------*/
.feedback {
  /* background-color: green; */
  margin: 50px 0;
  padding: 100px 0 54px;
}
.feedback-card {
  background: linear-gradient(135deg, #ff305b 20%, #cccccc75 20%);
  border-radius: 5px;
  width: 70%;
  margin: auto;
  padding: 40px;
}
.feedback-image {
  float: left;
  width: 30%;
}
.feedback-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.feedback-content {
  /* background-color: red; */
  float: left;
  width: 70%;
}
.feedback-content h3 {
  font-size: 25px;
}
.feedback-content h4 {
  color: #999999;
}
.feedback-content h4 a i {
  color: #999999;
  margin: 10px 0;
}
.feedback-content p {
  color: #555555;
  font-style: italic;
  margin: 10px 0;
}
.feedback-content .review-reating {
  color: orange;
}
.feedback-content .review-reating:hover i {
  color: orange;
}
/*------------------------------------*/
/*--------------- OUR BLOG ------------*/
.our-blog {
  background-color: #f1f1f1;
  margin: 50px 0;
  padding: 100px 0;
}
.our-blog .blog {
  /* background-color: orange; */
  width: 31%;
  float: left;
  margin-right: 15px;
}
.our-blog .blog img {
  width: 100%;
}
.blog-content {
  background-color: white;
  padding: 20px;
}
.blog .post-meta,
p {
  color: #999999;
}
.blog h3 {
  margin: 10px 0 20px;
}
.blog h3 a {
  color: black;
  &:hover {
    color: #ff305b;
  }
}
.blog p {
  margin: 10px 0 20px;
}
.post-read a {
  color: black;
  &:hover {
    color: #ff305b;
  }
}
/*------------------------------------*/
/*------------- CONTACT US -----------*/
.contact-us {
  /* background-color: orange; */
  margin: 50px 0;
  padding: 100px 0;
}
.contact-us form {
  width: 70%;
  margin: auto;
}
form label {
  visibility: hidden;
}
form input,
textarea {
  /* background-color: red; */
  width: 100%;
  border-radius: 8px;
  padding: 15px 20px;
}
.form-name {
  float: left;
  margin-right: 70px;
  width: 45%;
}
.form-email {
  float: left;
  width: 45%;
}
input:focus {
  outline: none;
  border-color: #ff305b;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
textarea:focus {
  outline: none;
  border-color: #ff305b;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

form button.btn {
  margin-top: 20px;
  transition: 0.5s;
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  color: white;
  background-color: #ff305b;
}
form button.btn:hover {
  background-color: red;
}
/*------------------------------------*/
/*------------- FOOTER -----------*/
.footer {
  background-color: red;
}
.footer-erea {
  background: #333333 none repeat scroll 0 0;
  padding: 50px 0;
  text-align: center;
}
.footer-erea .icons i {
  font-size: 20px;
  color: white;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.5s;
  &:hover {
    color: #ff305b;
  }
}
.footer-erea p {
  margin-top: 15px;
  color: white;
}
span a {
  color: #ff305b;
}
span:hover a {
  text-decoration: underline;
}
