/* font-family: 'Source Sans Pro', sans-serif; */
/* font-family: 'Roboto', sans-serif; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.clr {
  clear: both;
}
.title {
  padding-bottom: 30px;
}
.title h2 {
  text-align: center;
  font-size: 40px;
  line-height: 30px;
  font-weight: 800;
  padding: 0px 0px 30px;
  font-family: "Source Sans Pro", sans-serif;
}
.title .line1 {
  width: 100px;
  border: 1px solid #ff305b;
  margin: 3px auto;
}
.title .line2 {
  width: 200px;
  border: 1px solid #ff305b;
  margin: 3px auto;
}

/* ============= end global ============= */
/* ============= start home ============= */
#Home {
  background-image: url(./images/landing.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}

#Home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.7);
}

.navbar {
  width: 100%;
  position: fixed;
  padding: 10px 200px;
  font-family: "Roboto", sans-serif;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
}

.navbar .nav-title a {
  color: #ff305b;
  text-decoration: none;
  font-size: 24px;
  line-height: 25px;
  padding: 18px 0px;
  font-weight: 800;
  float: left;
}

.navbar ul {
  float: right;
  list-style: none;
  font-weight: 300;
}

.navbar ul li {
  float: left;
  padding: 0 12px;
}

.navbar ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  transition: color 1s;
}

.navbar ul li a:hover {
  color: #ff305b;
}

#Home .caption {
  text-align: center;
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#Home .caption h3 {
  font-family: "Source Sans Pro", sans-serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 26.4px;
  margin: 0px 0px 10px;
}
#Home .caption h1 {
  font-family: "Source Sans Pro", sans-serif;
  color: #ff305b;
  font-size: 70px;
  line-height: 77px;
  margin: 0px 0px 10px;
  font-weight: 700;
}
#Home .caption h4 {
  font-family: "Source Sans Pro", sans-serif;
  color: #ffffff;
  font-size: 26px;
  line-height: 31.2px;
  margin: 0px 0px 10px;
  font-weight: 300;
}

/* ============= end home ============= */
/* ============= start about ============= */

#About {
  padding: 80px;
}
#About .about-container {
  width: 90%;
  margin: auto;
  padding: 55px;
}
#About .about-img {
  width: 40%;
  float: left;

  border: 10px solid #555555;
  border-radius: 5px;
}
#About .about-img img {
  width: 100%;
  border-radius: 5px;
}
#About .about-img .image {
  transform: translate(20px, 20px);
  position: relative;
  overflow: hidden;
}
#About .about-img .image .person-layer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000063;
  opacity: 0;
  transition: 0.5s;
}
#About .about-img .image:hover .person-layer {
  top: 0;
  opacity: 1;
}

#About .about-img .image a {
  color: #fff;
  font-size: 20px;
  transition: 0.5s;
}
#About .about-img .image a:hover {
  color: #ff305b;
}

#About .about-img .image .person-layer ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}
#About .about-img .image .person-layer li {
  display: inline-block;
  padding: 0 10px;
}
#About .about-info {
  float: left;
  width: 60%;
  padding-left: 80px;
}

#About .about-info .text,
#About .about-info .data-link {
  padding-inline: 30px;
}

#About .about-info .text h2 {
  font-size: 34px;
  line-height: 22px;
  margin: 0px 0px 25px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
}
#About .about-info .text p {
  font-family: "Roboto", sans-serif;
  line-height: 25px;

  padding: 0px 0px 25px;
  color: #555555;
}
hr {
  border-style: dashed;
  color: #555555;
}
#About .about-info ul {
  list-style: none;
  padding-top: 25px;
  font-family: "Roboto", sans-serif;
}
#About .about-info ul li {
  float: left;
  width: 50%;
  margin: 0px 0px 25px;
  line-height: 16px;
  color: #555555;
}
#About .about-info ul li span {
  font-weight: 500;
  color: #333333;
}
#About .about-info .text ul a {
  color: #7e7e7e;
  text-decoration: none;
}

#About .about-info .data-link {
  display: flex;
  justify-content: space-around;
}
#About .about-info .data-link a {
  background-color: #ff305b;
  color: #ffffff;
  line-height: 25px;
  font-family: "Roboto", sans-serif;
  margin: 0px 10px 0px 0px;
  padding: 10px 24px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: 0.5s;
}
#About .about-info .data-link a:hover {
  background-color: RGB(236, 36, 3);
}
/* ============= end about ============= */
#Services {
  padding: 80px 0;
  background-color: #f1f1f1;
}

#Services .area {
  width: 80%;
  margin: auto;
}
#Services .item {
  text-align: center;
  width: 25%;
  float: left;
  padding: 10px;
  transition: 1s background-color;
}
#Services .item:hover {
  background-color: #fff;
}
#Services .item i {
  font-size: 35px;
  color: #ff305b;
  transition: 0.5s;
}
#Services .item:hover i {
  transform: scale(1.5);
}

#Services .item .item-area {
  padding: 20px 10px;
  border-radius: 5px;
}

#Services .item h3 {
  padding: 15px 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  line-height: 26.4px;
  font-size: 24px;
}

#Services .item p {
  line-height: 25px;
  font-family: "Roboto", sans-serif;
  color: #555555;
}
/* ==================== end services ================= */
#Portfolio {
  padding: 80px 30px;
}
#Portfolio .menu {
  text-align: center;
  margin-bottom: 30px;
}

#Portfolio .menu li {
  display: inline-block;
  margin-inline: 10px;
}
#Portfolio .menu li button {
  color: #000;
  background-color: transparent;
  border: 0;
  padding: 3px 12px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}
#Portfolio .menu li .active {
  color: #ff305b;
}
#Portfolio .item {
  width: 33.3333%;
  float: left;
  padding: 10px;
}

#Portfolio .item .image {
  position: relative;
  top: 20px;
  left: 20px;
  overflow: hidden;
}

#Portfolio .item-img .image .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000063;
  opacity: 0;
  transition: 0.5s;
}

#Portfolio .item-img .image:hover .layer {
  top: 0;
  opacity: 1;
}

#Portfolio .item-img .image .layer i {
  position: absolute;
  top: 85%;
  right: 5%;
  color: #ff305b;
  font-size: 20px;
}

#Portfolio .item-img img {
  width: 100%;
}
#Portfolio .port-container {
  width: 80%;
  margin: auto;
}
/* ==================== end Portfolio ================= */

#Testimonial {
  padding: 80px 0;
  background-color: #f1f1f1;
}
#Testimonial .count-container {
  width: 70%;
  margin: auto;
}
#Testimonial .count-container .count-area {
  float: left;
  width: 25%;
  padding: 10px;
  text-align: center;
}
#Testimonial .count-container .count-area i {
  margin: 0px 0px 15px;
  font-size: 26px;
  color: #ff305b;
}

#Testimonial .count-container .count-area h3 {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0px 0px 10px;
  font-weight: 800;
  font-size: 26px;
  font-weight: 800;
}
#Testimonial .count-container .count-area h5 {
  font-weight: 600;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  color: #555555;
}
/* ==================== end counter ================= */

#Blog {
  background-color: white;
  padding: 80px 0;
}
#Blog .blog-area {
  width: 80%;
  margin: auto;
}
#Blog .blog-info {
  width: 33.3333%;
  float: left;
  padding: 20px;
}
#Blog .blog-info .content {
  background-color: #fff;
}
#Blog .blog-info img {
  width: 100%;
}
#Blog .content .text .date {
  margin: 0px 0px 10px;
  font-family: "Roboto", sans-serif;
  color: #555555;
}
#Blog .content .text {
  padding: 20px;
}
#Blog .content .text h3 {
  color: #333333;
  font-size: 24px;
  line-height: 26.4px;
  margin: 0px 0px 15px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
}
#Blog .content .text h3 a {
  text-decoration: none;
  color: #333333;
}
#Blog .content .text h3 a:hover {
  color: #ff305b;
}
#Blog .content .text p {
  color: #555555;
  margin: 0px 0px 15px;
  font-family: "Roboto", sans-serif;
  line-height: 25px;
}
#Blog .content .text a {
  text-decoration: none;
  color: #333333;
  font-family: "Roboto", sans-serif;
}
#Blog .content .text a:hover {
  color: #ff305b;
}
#Blog .blog-info .content .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}
/* ==================== end Blog ================= */
#Contact {
  background-color: #f1f1f1;
  padding: 80px 0;
  font-family: "Roboto", sans-serif;
}
#Contact .contact-area {
  width: 60%;
  margin: auto;
}
#Contact .text-field .field {
  float: left;
  width: 50%;
  padding: 0 20px;
  margin-bottom: 25px;
}
#Contact .input-field {
  padding: 0 20px;
  margin-bottom: 25px;
}
#Contact input,
#Contact textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 14px;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
}
#Contact .input-field textarea {
  width: 100%;
}
#Contact .contact-area button {
  background-color: #ff305b;
  border: 0;
  padding: 12px 15px;

  font-family: "Roboto", sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #fff;
}
#Contact .contact-area button:hover {
  background-color: #e82626;
}
#foot {
  background-color: #333333;
  padding: 60px 0;
  position: relative;
}
#foot .foot-contain .foot-icon ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}
#foot .foot-contain .foot-icon li {
  display: inline-block;
  padding: 0 10px;
}
#foot .foot-contain .foot-icon a {
  color: #fff;
  transition: 0.5s;
}
#foot .foot-contain .foot-icon li :hover {
  color: #ff305b;
}
#foot .foot-contain .foot-caption {
  color: #fff;
  margin-top: 80px;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
#foot .foot-contain .foot-caption a {
  color: #ff305b;
  text-decoration: none;
}
#foot .foot-contain .foot-caption a:hover {
  text-decoration: underline;
}
