@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

/*====================
Common CSS
======================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s linear;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.fix::before,
.fix:after {
  content: "";
  clear: both;
  display: table;
}

/*====================
Background CSS
======================*/
.bg {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.4;
  z-index: -1;
}

/*====================
Button CSS
======================*/
.btn {
  padding: 10px 40px;
  text-transform: capitalize;
  font-size: 18px;
  display: inline-block;
  border-radius: 5px;
  color: #ffffff;
  border: 1px solid #ff7720;
}
.btn.box-btn {
  background-color: #ff7720;
  transition: all 0.3s linear;
}
.btn.box-btn:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.btn.border-btn {
  border: 1px solid #ff7720;
  transition: all 0.3s linear;
}
.btn.border-btn:hover {
  background-color: #ff7720;
  border: 1px solid #ff7720;
}

/*====================
Common Section Title
======================*/
.section-title {
  margin-bottom: 60px;
}
.section-title h4 {
  text-transform: capitalize;
  font-size: 45px;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h4::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #ff7720;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/*====================
Margin & Padding
======================*/
.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*====================
Alignment
======================*/
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

/*====================
Header Area
======================*/
.header-area {
  padding: 30px 0;
}
.header-area .header__logo {
  width: 300px;
  float: left;
}
.header-area .header__logo a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 23px;
  color: #ff7720;
}
.header-area .header__nav {
  float: right;
  width: 870px;
  margin-left: 30px;
}
.header-area .header__nav ul {
  float: right;
}
.header-area .header__nav ul li {
  display: inline-block;
}
.header-area .header__nav ul a {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
}
.header-area .header__nav ul a:hover {
  background: #ff7720;
  color: #ffffff;
}

/*====================
Banner Area
======================*/
.banner-area .banner-content {
  color: #ffffff;
}
.banner-area .banner-content h2 {
  font-size: 40px;
  text-transform: capitalize;
}
.banner-area .banner-content p {
  max-width: 700px;
  margin: 30px auto;
}
.banner-area .banner-content a {
  margin: 0 10px;
}

/*====================
About Area
======================*/
.about .single-about {
  border: 1px solid #dddddd;
  padding: 40px 20px;
  float: left;
  width: 380px;
  border-radius: 5px;
  margin-right: 30px;
  transition: all 0.3s linear;
}
.about .single-about:last-child {
  margin-right: 0;
}
.about .single-about:hover {
  box-shadow: 0 0 10px 2px #dddddd;
}
.about .single-about h4 {
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 500;
}
.about .single-about p {
  margin: 20px 0;
}
.about .single-about a {
  color: #000000;
}
.about .single-about a:hover {
  color: #ffffff;
}

/*====================
Services Area
======================*/
.services-area {
  background-color: #f2f2f2;
}
.services-area .single-service {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 40px 20px;
  float: left;
  width: 380px;
  border-radius: 5px;
  margin: 0 30px 30px 0;
  transition: all 0.3s linear;
}
.services-area .single-service:nth-child(3n) {
  margin-right: 0;
}
.services-area .single-service:nth-child(n+4) {
  margin-bottom: 0;
}
.services-area .single-service:hover {
  border: 1px solid #ff7720;
}
.services-area .single-service:hover i {
  background-color: #ff7720;
  color: #ffffff;
}
.services-area .single-service i {
  font-size: 25px;
  border: 1px solid #dddddd;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  transition: all 0.3s linear;
}
.services-area .single-service h4 {
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 500;
  margin: 20px 0;
}

/*====================
Portfolio Area
======================*/
.portfolio-area .single-portfolio {
  float: left;
  width: 380px;
  height: 300px;
  border-radius: 5px;
  margin: 0 30px 30px 0;
  position: relative;
  overflow: hidden;
}
.portfolio-area .single-portfolio:nth-child(3n) {
  margin-right: 0;
}
.portfolio-area .single-portfolio:nth-child(n+4) {
  margin-bottom: 0;
}
.portfolio-area .single-portfolio img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.portfolio-area .single-portfolio:hover {
  cursor: pointer;
}
.portfolio-area .single-portfolio:hover h4 {
  cursor: pointer;
}
.portfolio-area .single-portfolio:hover img {
  transform: scale(1.1);
}
.portfolio-area .single-portfolio h4 {
  background: #000000;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 500;
  padding: 20px;
}

/*====================
CTA Area
======================*/
.cta-area {
  background-attachment: fixed;
  color: #ffffff;
}
.cta-area h2 {
  font-size: 40px;
  text-transform: uppercase;
}
.cta-area p {
  max-width: 800px;
  margin: 30px auto;
}

/*====================
Blog Area
======================*/
.blog-area .blog .single-blog {
  border: 2px solid #dddddd;
  float: left;
  width: 380px;
  border-radius: 5px;
  margin-right: 30px;
  transition: all 0.3s linear;
}
.blog-area .blog .single-blog:last-child {
  margin-right: 0;
}
.blog-area .blog .single-blog:hover {
  box-shadow: 0 0 20px 5px #dddddd;
}
.blog-area .blog .single-blog:hover img {
  transform: scale(1.1);
  cursor: pointer;
}
.blog-area .blog .single-blog .blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-area .blog .single-blog .blog-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.blog-area .blog .single-blog .blog-content {
  padding: 20px;
}
.blog-area .blog .single-blog .blog-content h4 {
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 500;
}
.blog-area .blog .single-blog .blog-content p {
  margin: 20px 0;
}
.blog-area .blog .single-blog .blog-content a:hover {
  color: #000000;
  border: 1px solid #ff7720;
}

/*====================
Contact Area
======================*/
.contact-area {
  background-color: #f2f2f2;
}
.contact-area .contact-top .single-address {
  float: left;
  width: 216px;
  margin: 0 92px;
}
.contact-area .contact-top .single-address:hover i, .contact-area .contact-top .single-address:hover h4, .contact-area .contact-top .single-address:hover p {
  color: #ff7720;
}
.contact-area .contact-top .single-address i {
  font-size: 35px;
}
.contact-area .contact-top .single-address h4 {
  text-transform: uppercase;
  font-size: 24px;
  margin: 10px 0;
}
.contact-area .contact-bottom {
  margin-top: 50px;
}
.contact-area .contact-bottom .contact-form {
  float: left;
  width: 700px;
  margin-right: 20px;
}
.contact-area .contact-bottom .contact-form form input, .contact-area .contact-bottom .contact-form form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 18px;
}
.contact-area .contact-bottom .contact-form form input:focus, .contact-area .contact-bottom .contact-form form textarea:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 119, 32, 0.3);
}
.contact-area .contact-bottom .contact-form form textarea {
  max-width: 100%;
  min-width: 100%;
}
.contact-area .contact-bottom .contact-form form .form-btn input {
  width: 49%;
  margin-bottom: 0;
  background: linear-gradient(to right, #ffa31a 0%, #ff7720 51%, #ffa31a 100%);
  background-size: 200% auto;
  color: #ffffff;
  transition: all 0.3s linear;
}
.contact-area .contact-bottom .contact-form form .form-btn input:hover {
  background-position: right center;
}
.contact-area .contact-bottom .contact-form form .form-btn input[type=submit] {
  float: right;
}
.contact-area .contact-bottom .contact-form form .form-btn input[type=reset] {
  float: left;
}
.contact-area .contact-bottom .contact-map {
  float: right;
  width: 480px;
}
.contact-area .contact-bottom .contact-map iframe {
  width: 100%;
  height: 454px;
  border: 3px solid #dddddd;
  padding: 3px;
  transition: all 0.3s linear;
}
.contact-area .contact-bottom .contact-map iframe:hover {
  border: 3px solid #ff7720;
}

/*====================
Footer Area
======================*/
.footer-area {
  padding: 30px 0;
  background: linear-gradient(to right, #ffa31a 0%, #ff7720 51%, #ffa31a 100%);
  background-size: 200% auto;
  transition: all 0.3s linear;
}
.footer-area:hover {
  background-position: right center;
}
.footer-area p {
  font-size: 17px;
  color: #ffffff;
}
.footer-area p a {
  color: #ffffff;
  font-weight: bold;
  border-bottom: 4px dotted #009900;
  transition: all 0.3s linear;
}
.footer-area p a:hover {
  color: #009900;
}

/*# sourceMappingURL=style.css.map */
