html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 3px;
  border-top-color: #f44323;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #ffffff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -webkit-transition: .6s;
  transition: .6s;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.preloader .preloader-circle2 {
  border-top-color: #0078ff;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img img {
  max-width: 100px;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 13vh;
  width: 100%;
  background-color: white;
  padding: 0px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  z-index: 99;
}

header .log {
  width: 35%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

header .log img {
  margin: 0px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .ghost {
  width: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .ghost .bars {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .ghost .bars .line {
  width: 100%;
  padding: 3px 0px;
  background-color: #f44323;
  border-radius: 6px;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .ghost .bars .line:nth-child(3) {
  background-color: #f44323;
  position: absolute;
  top: 13px;
  width: 56%;
  border-radius: 6px;
}

header .ghost .bars .line:nth-child(2) {
  background-color: #f44323;
  position: absolute;
  width: 100%;
  top: -13px;
  border-radius: 6px;
}

header .ghost .active .line:nth-child(3) {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  width: 90%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
          box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
}

header .ghost .active .line:nth-child(2) {
  background-color: #ffffff;
  position: absolute;
  width: 90%;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
          box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
}

header .ghost .active #dis {
  opacity: 0;
}

header .links {
  opacity: 0;
  background-color: #f44323;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-800px);
          transform: translateY(-800px);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .links ul {
  margin: 10px 0px;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

header .links ul li {
  margin: 20px 0px;
}

header .links ul li a {
  text-decoration: none;
  color: white;
  font-family: "Poppins_Regular";
  font-size: 20px;
  text-transform: uppercase;
}

header .links ul button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: white;
}

header .links ul button a {
  text-decoration: none;
  color: white;
}

header .links ul button a {
  color: #212121;
}

header .open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header_active .links {
  display: none;
}

.header_active .ghost {
  display: none;
}

.banner {
  height: 92vh;
  width: 100vw;
  background-image: url(../Images/servicesbg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.banner .overlay {
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ee4823ca;
  height: 100%;
  width: 100%;
}

.banner .overlay .box {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30% 0px 0px;
}

.banner .overlay .box .banner_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner .overlay .box .banner_text h1 {
  font-family: "Poppins_bold";
  font-size: 30px;
  color: white;
  text-transform: capitalize;
  margin: 0px 0px;
  text-align: center;
}

.banner .overlay .box .banner_text p {
  font-family: "Poppins_light";
  font-size: 14px;
  color: white;
  line-height: 1.5;
  text-align: center;
  margin: 10px 0px;
}

.Services {
  overflow: hidden;
  padding: 25px;
}

.Services h2 {
  font-family: "Poppins_bold";
  font-size: 35px;
  text-align: center;
}

.Services h2 span {
  color: #f44323;
}

.Services .Services_box .box {
  margin: 25px 0px;
  background-color: white;
  border-radius: 10px;
  padding: 30px 15px;
  -webkit-box-shadow: -10px 9px 7px 0px #21212126;
          box-shadow: -10px 9px 7px 0px #21212126;
}

.Services .Services_box .box .img img {
  width: 100%;
}

.Services .Services_box .box h3 {
  font-family: "Poppins_Semibold";
  font-size: 16px;
  margin: 10px 0px;
  color: #f44323;
}

.Services .Services_box .box p {
  margin: 20px 0px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Poppins_Regular";
}

.Services .Services_box .box button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  background-color: white;
}

.Services .Services_box .box button a {
  text-decoration: none;
  color: white;
}

.Services .Services_box .box button span {
  display: block;
  color: black;
  font-size: 20px;
  margin: 0px 10px;
}

.Services .Services_box .box button a {
  color: black;
}

.Services .Services_box .box button:hover {
  background-color: #f44323;
}

.Services .Services_box .box button:hover span {
  color: white;
}

.Services .Services_box .box button:hover a {
  color: white;
}

.Projects {
  overflow: hidden;
  padding: 30px 25px;
  background-color: #e9e9e9;
}

.Projects h2 {
  font-family: "Poppins_bold";
  font-size: 22px;
  color: #f44323;
  text-align: center;
}

.Projects p {
  font-family: "Poppins_Regular";
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.Projects .boxes {
  margin: 25px 0px;
}

.Projects .boxes .box {
  margin: 0px 0px;
}

.Projects .boxes .box .img img {
  width: 100%;
}

.Projects .boxes .box h3 {
  font-family: "Poppins_Semibold";
  font-size: 22px;
  margin: 10px 0px;
}

.Projects .boxes .box p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  margin: 10px 0px;
}

.Projects .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0px;
}

.Projects .slick-dots li {
  margin: 0px 5px;
}

.Projects .slick-dots li button {
  color: white;
  font-family: "Poppins_bold";
  background-color: #f44323;
  border: none;
  padding: 10px;
  font-size: 0;
  border-radius: 10px;
}

.Projects .slick-dots .slick-active button {
  background-color: #9f9f9f;
}

.Projects .slider {
  width: 50%;
  margin: 100px auto;
  background-color: #0D0D2B;
}

.Projects .slick-slide {
  margin: 10px 10px;
}

.Projects .slick-slide img {
  width: 100%;
}

.Projects .slick-prev:before,
.Projects .slick-next:before {
  color: red;
}

.Projects .slick-slide {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: .2;
}

.Projects .slick-active {
  opacity: 1;
}

.Projects .slick-current {
  opacity: 1;
}

.Ready {
  overflow: hidden;
  padding: 40%;
  position: relative;
  background: url(../Images/ssssbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.Ready .Overlay {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 38px 25px;
  background-color: #ee4823cc;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.Ready .Overlay h2 {
  text-align: center;
  font-family: "Poppins_bold";
  font-size: 16px;
  color: white;
}

.WHY {
  overflow: hidden;
  padding: 25px 30px;
  margin: 20px 0px;
}

.WHY .text {
  margin: 20px 0px;
}

.WHY .text h2 {
  font-family: "Poppins_bold";
  font-size: 28px;
  color: #f44323;
  text-align: center;
}

.WHY .text h2 span {
  color: black;
}

.WHY .text p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  margin: 20px 0px;
}

.WHY .text hr {
  background-color: #212121;
  height: 2px;
  border-radius: 15px;
}

.WHY .text .boxes .box {
  margin: 20px 0px;
  padding: 35px;
  border-radius: 10px;
  border-bottom: 8px solid #c9c9c9;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.WHY .text .boxes .box h3 {
  font-family: "Poppins_Semibold";
  font-size: 19px;
}

.WHY .text .boxes .box p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  margin: 10px 0px;
}

.WHY .text .boxes .box:hover {
  background-color: #f44323;
  border-bottom: 8px solid #212121;
}

.WHY .text .boxes .box:hover h3 {
  color: white;
}

.WHY .text .boxes .box:hover p {
  color: white;
}

.WHY .img img {
  width: 100%;
}

.new {
  padding: 25px;
  overflow: hidden;
}

.new h2 {
  font-family: "Poppins_bold";
  font-size: 25px;
  margin: 10px 0px;
}

.new h2 span {
  color: #f44323;
}

.new .Wraper .box {
  margin: 25px 0px;
  padding: 10px 0px;
}

.new .Wraper .box:hover {
  background-color: #dedede26;
}

.new .Wraper .box .img {
  margin: 0px 0px 20px;
}

.new .Wraper .box .img img {
  width: 100%;
}

.new .Wraper .box .content {
  padding: 0px 10px;
}

.new .Wraper .box .content p {
  font-family: "Poppins_light";
  font-size: 15px;
  margin: 0px 0px;
}

.new .Wraper .box .content h3 {
  font-family: "Poppins_Semibold";
  font-size: 28px;
  margin: 8px 67px 15px 0px;
}

.new .Wraper .box .content button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  padding: 0.4rem .5rem;
}

.new .Wraper .box .content button a {
  text-decoration: none;
  color: white;
}

.new .Wraper .box .content button span {
  display: block;
  color: white;
  font-size: 20px;
  margin: 0px 10px;
}

.new .Wraper .box .content button a {
  color: white;
}

footer {
  background-color: #212121;
  padding: 25px;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

footer .Dival {
  margin: 30px 0px;
}

footer .Dival .img img {
  width: 100%;
}

footer .Dival h3 {
  font-family: "Poppins_Semibold";
  font-size: 22px;
  margin: 10px 0px;
}

footer .Dival p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0px;
}

footer .Dival button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: white;
  margin: 0 auto;
}

footer .Dival button a {
  text-decoration: none;
  color: white;
}

footer .Dival button a {
  color: #212121;
}

footer .NewsLatter h3 {
  font-family: "Poppins_Semibold";
  font-size: 22;
  margin: 10px 0px;
}

footer .NewsLatter p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0px;
}

footer .NewsLatter form {
  margin: 15px 0px;
}

footer .NewsLatter form input {
  font-family: "Poppins_light";
  font-size: 22px;
}

footer .links {
  margin: 30px 0px;
  font-family: "Poppins_Semibold";
  font-size: 20px;
}

footer .links h3 {
  font-family: "Poppins_Semibold";
  font-size: 25px;
}

footer .links a {
  display: block;
  text-decoration: none;
  font-family: "Poppins_light";
  font-size: 16px;
  margin: 12px 0px;
  color: white;
}

footer .Copyrights p {
  font-family: "Poppins_light";
  font-size: 14px;
  text-align: center;
}

@media (min-width: 568px) {
  header {
    height: 19vh;
  }
  header .log {
    width: 20%;
  }
  header .ghost {
    width: 10.4%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 3px 0px;
    background-color: #02103d;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #212121;
    position: absolute;
    top: 13px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #212121;
    position: absolute;
    width: 100%;
    top: -13px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 73%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
            box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 73%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .links ul {
    margin: 10px 0px;
    text-decoration: none;
    text-align: center;
  }
  header .links ul li {
    margin: 20px 0px;
  }
  header .links ul li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins_bold";
    font-size: 18px;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: fixed;
  }
  .header_active .links {
    display: none;
  }
  .header_active .ghost {
    display: none;
  }
}

@media (min-width: 667px) {
  header {
    height: 19vh;
  }
  header .log {
    width: 20%;
  }
  header .ghost {
    width: 11%;
  }
  header .ghost span a {
    color: #f44323;
    font-size: 30px;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 3px 0px;
    background-color: #212121;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #212121;
    position: absolute;
    top: 13px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #212121;
    position: absolute;
    width: 100%;
    top: -13px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 73%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px white;
            box-shadow: 2px 2px 2px white;
  }
  header .ghost .active .line:nth-child(2) {
    background-color: white;
    position: absolute;
    width: 73%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .links ul {
    margin: 10px 0px;
    text-decoration: none;
    text-align: center;
  }
  header .links ul li {
    margin: 20px 0px;
  }
  header .links ul li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins_Regular";
    font-size: 22px;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: fixed;
  }
}

@media (min-width: 768px) {
  header {
    padding: 0px 4%;
    height: 12vh;
  }
  header .log {
    width: 30%;
  }
  header .log img {
    margin: 0px 0px 0px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .links {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
  }
  header .links ul li {
    margin: 30px 0px;
  }
  header .links ul li a {
    font-size: 30px;
  }
  header .links ul button {
    font-size: 22px;
  }
  header .ghost {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 12%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 5px 0px;
    background-color: #f44323;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #f44323;
    position: absolute;
    top: 19px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #f44323;
    position: absolute;
    width: 100%;
    top: -19px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 90%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
            box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .banner {
    padding: 8% 0px;
    height: 53vh;
  }
  .banner .overlay .box {
    width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 30% 0px 0px;
    padding: 20px;
  }
  .banner .overlay .box .banner_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 50px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px;
    text-align: center;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_light";
    font-size: 20px;
    color: white;
    line-height: 1.5;
    text-align: left;
    margin: 20px 39% 20px 0;
  }
  .Services {
    padding: 40px 25px;
  }
  .Services h2 {
    font-family: "Poppins_bold";
    font-size: 50px;
    margin: 20px 0px;
  }
  .Services h2 span {
    color: #f44323;
  }
  .Services .Services_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px 0px;
  }
  .Services .Services_box .box {
    width: 27%;
    background-color: white;
    border-radius: 10px;
    padding: 30px 15px;
    -webkit-box-shadow: -10px 9px 7px 0px #21212126;
            box-shadow: -10px 9px 7px 0px #21212126;
    margin: 5px;
  }
  .Services .Services_box .box .img img {
    width: 100%;
  }
  .Services .Services_box .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 12px;
    margin: 10px 0px;
    color: #f44323;
  }
  .Services .Services_box .box p {
    margin: 12px 0px;
    font-size: 10px;
    line-height: 1.5;
    width: auto;
  }
  .Services .Services_box .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    background-color: white;
  }
  .Services .Services_box .box button a {
    text-decoration: none;
    color: white;
  }
  .Services .Services_box .box button span {
    display: block;
    color: black;
    font-size: 12px;
    margin: 0px 10px;
  }
  .Services .Services_box .box button a {
    color: black;
  }
  .Services .Services_box .box button:hover {
    background-color: #f44323;
  }
  .Services .Services_box .box button:hover span {
    color: white;
  }
  .Services .Services_box .box button:hover a {
    color: white;
  }
  .Ready {
    padding: 30%;
    position: relative;
    background: url(../Images/bg2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .Ready .Overlay {
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 25px;
  }
  .Ready .Overlay h2 {
    text-align: center;
    font-family: "Poppins_bold";
    font-size: 42px;
    color: white;
    width: 80%;
    margin: 0 auto;
  }
  .Projects {
    padding: 40px 25px;
    background-color: #e9e9e9;
  }
  .Projects h2 {
    font-family: "Poppins_bold";
    font-size: 38px;
    color: #f44323;
    text-align: center;
  }
  .Projects p {
    font-family: "Poppins_Regular";
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }
  .Projects .Services_boxs {
    margin: 25px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Projects .Services_boxs .box {
    width: 31%;
    margin: 0px 0px;
  }
  .Projects .Services_boxs .box .img img {
    width: 100%;
  }
  .Projects .Services_boxs .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 18px;
    margin: 10px 0px;
  }
  .Projects .Services_boxs .box p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    margin: 15px 25px 15px 0px;
  }
  .Projects .Services_boxs .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    padding: 0.4rem .6rem;
  }
  .Projects .Services_boxs .box button a {
    text-decoration: none;
    color: white;
  }
  .Projects .Services_boxs .box button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .Projects .Services_boxs .box button a {
    color: white;
  }
  .WHY {
    padding: 25px 30px;
    margin: 20px 0px;
  }
  .WHY .text {
    margin: 20px 0px;
    width: 100%;
  }
  .WHY .text h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: #f44323;
  }
  .WHY .text h2 span {
    color: black;
  }
  .WHY .text p {
    font-family: "Poppins_Regular";
    font-size: 17px;
    margin: 20px 0px;
  }
  .WHY .text hr {
    background-color: #212121;
    height: 2px;
    border-radius: 15px;
  }
  .WHY .text .boxes {
    -o-object-fit: contain;
       object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .WHY .text .boxes .box {
    width: 38%;
    margin: 20px 0px;
    padding: 35px;
    border-radius: 10px;
    border-bottom: 8px solid #c9c9c9;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }
  .WHY .text .boxes .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 18px;
  }
  .WHY .text .boxes .box p {
    font-family: "Poppins_Regular";
    font-size: 16px;
    margin: 10px 0px;
  }
  .WHY .img {
    width: 100%;
  }
  .WHY .img img {
    width: 100%;
  }
  .new {
    padding: 25px;
  }
  .new h2 {
    font-family: "Poppins_bold";
    font-size: 35px;
    text-align: center;
    width: 60%;
    margin: 10px auto;
  }
  .new h2 span {
    color: #f44323;
  }
  .new .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new .Wraper .box {
    width: 33%;
    margin: 25px 0px;
    padding: 10px 0px;
  }
  .new .Wraper .box:hover {
    background-color: #dedede26;
  }
  .new .Wraper .box .img {
    margin: 0px 0px 20px;
  }
  .new .Wraper .box .img img {
    width: 100%;
  }
  .new .Wraper .box .content {
    padding: 0px 10px;
  }
  .new .Wraper .box .content p {
    font-family: "Poppins_light";
    font-size: 15px;
    margin: 0px 0px;
  }
  .new .Wraper .box .content h3 {
    font-family: "Poppins_Semibold";
    font-size: 15px;
    margin: 8px 67px 15px 0px;
  }
  .new .Wraper .box .content button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    padding: 0.4rem .5rem;
  }
  .new .Wraper .box .content button a {
    text-decoration: none;
    color: white;
  }
  .new .Wraper .box .content button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .new .Wraper .box .content button a {
    color: white;
  }
  footer {
    background-color: #212121;
    padding: 25px;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 86%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 10px;
    line-height: 1.5;
    margin: 15px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer .Copyrights {
    width: 100%;
  }
  footer .Copyrights p {
    margin: 10px 0px;
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 0px 4%;
    height: 12vh;
  }
  header .log {
    width: 30%;
  }
  header .log img {
    margin: 0px 0px 0px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .links {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
  }
  header .links ul li {
    margin: 30px 0px;
  }
  header .links ul li a {
    font-size: 30px;
  }
  header .links ul button {
    font-size: 22px;
  }
  header .ghost {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 12%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 5px 0px;
    background-color: #f44323;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #f44323;
    position: absolute;
    top: 19px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #f44323;
    position: absolute;
    width: 100%;
    top: -19px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 90%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
            box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header_active .links {
    display: block;
  }
  .header_active .ghost {
    display: block;
  }
  .banner {
    padding: 8% 0px;
    height: 45vh;
  }
  .banner .overlay .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    width: 80%;
  }
  .banner .overlay .box .banner_text {
    width: 47%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 38px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: #ffffffd1;
    line-height: 1.8;
    text-align: left;
    margin: 10px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .banner .overlay .box .banner_form {
    width: 37%;
    margin: 10px 0px;
    padding: 5% 20px;
  }
  .banner .overlay .box .banner_form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner .overlay .box .banner_form form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 96%;
    font-size: 14px;
    outline: none;
    padding: .8rem 0.7rem;
    margin: 10px 0px;
    background-color: #f3f2f2;
    border: none;
  }
  .banner .overlay .box .banner_form form input::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input:-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input::-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input::placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form #button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
  }
  .banner .overlay .box .banner_form form #button a {
    text-decoration: none;
    color: white;
  }
}

@media (min-width: 1280px) {
  header {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0px 6%;
    height: 13vh;
    background-color: white;
  }
  header .log {
    margin: 5px auto 0px 0px;
    width: 13%;
  }
  header .log img {
    width: 100%;
  }
  header .ghost {
    width: 5%;
    display: none;
  }
  header .links {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    height: initial;
    width: 52%;
    background: transparent;
    position: initial;
  }
  header .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .links ul li {
    margin: 0px 15px;
  }
  header .links ul li a {
    font-size: 16px;
    font-family: "Poppins_bold";
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: black;
  }
  header .links ul li a:hover {
    background-color: #f44323;
    padding: .5rem .8rem;
    border-radius: 5px;
    color: white;
  }
  header .links ul li a:active {
    color: #f44323;
  }
  header .links ul button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f44323;
    font-size: 14px;
  }
  header .links ul button a {
    text-decoration: none;
    color: white;
  }
  header .links ul button a {
    color: white;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .bars {
    display: none;
  }
  .banner {
    padding: 6% 0px;
    height: 50vh;
  }
  .banner .overlay .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    width: 86%;
  }
  .banner .overlay .box .banner_text {
    width: 44%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 65px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 25px;
    color: #ffffffd1;
    line-height: 1.8;
    text-align: left;
    margin: 20px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .Services {
    background-color: #e9e9e973;
    padding: 7%;
  }
  .Services h2 {
    font-family: "Poppins_bold";
    font-size: 50px;
    text-align: left;
    margin: 40px 0px;
  }
  .Services h2 span {
    color: #f44323;
  }
  .Services .Services_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0px;
  }
  .Services .Services_box .box {
    width: 20%;
    margin: 30px 0px;
    background-color: white;
    border-radius: 10px;
    padding: 25px 15px;
    -webkit-box-shadow: -10px 9px 7px 0px #21212126;
            box-shadow: -10px 9px 7px 0px #21212126;
  }
  .Services .Services_box .box .img img {
    width: 100%;
  }
  .Services .Services_box .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 14px;
    margin: 10px 0px;
    color: #f44323;
  }
  .Services .Services_box .box p {
    margin: 12px 0px;
    font-size: 14px;
    line-height: 1.5;
    width: auto;
  }
  .Services .Services_box .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    background-color: white;
    -webkit-box-shadow: -6px 6px 6px 0px #21212117;
            box-shadow: -6px 6px 6px 0px #21212117;
  }
  .Services .Services_box .box button a {
    text-decoration: none;
    color: white;
  }
  .Services .Services_box .box button span {
    display: block;
    color: black;
    font-size: 12px;
    margin: 0px 10px;
  }
  .Services .Services_box .box button a {
    color: black;
  }
  .Services .Services_box .box button:hover {
    background-color: #f44323;
  }
  .Services .Services_box .box button:hover span {
    color: white;
  }
  .Services .Services_box .box button:hover a {
    color: white;
  }
  .Ready {
    padding: 20%;
    position: relative;
    background: url(../Images/bg2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .Ready .Overlay {
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 21%;
  }
  .Ready .Overlay h2 {
    text-align: center;
    font-family: "Poppins_bold";
    font-size: 41px;
    color: white;
    width: 96%;
  }
  .Projects {
    padding: 7%;
    background-color: #e9e9e9;
  }
  .Projects h2 {
    font-family: "Poppins_bold";
    font-size: 44px;
    color: #f44323;
    text-align: center;
  }
  .Projects p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }
  .Projects .Services_boxs {
    margin: 42px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Projects .Services_boxs .box {
    width: 31%;
    margin: 0px 0px;
  }
  .Projects .Services_boxs .box .img img {
    width: 100%;
  }
  .Projects .Services_boxs .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 24px;
    margin: 10px 0px;
  }
  .Projects .Services_boxs .box p {
    font-family: "Poppins_Regular";
    font-size: 17px;
    line-height: 1.4;
    text-align: left;
    margin: 11px 25px 31px 0px;
  }
  .Projects .Services_boxs .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    padding: 0.4rem .6rem;
  }
  .Projects .Services_boxs .box button a {
    text-decoration: none;
    color: white;
  }
  .Projects .Services_boxs .box button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .Projects .Services_boxs .box button a {
    color: white;
  }
  .WHY {
    padding: 7%;
    margin: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .WHY .text {
    margin: 20px 0px;
    width: 43%;
  }
  .WHY .text h2 {
    font-family: "Poppins_bold";
    font-size: 41px;
    color: #f44323;
    text-align: left;
    margin: 15px 0px;
  }
  .WHY .text h2 span {
    color: black;
  }
  .WHY .text .boxes {
    -o-object-fit: contain;
       object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .WHY .text .boxes .box {
    width: 40%;
    margin: 10px 0px;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 8px solid #c9c9c9;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
  }
  .WHY .text .boxes .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 14px;
  }
  .WHY .text .boxes .box p {
    font-family: "Poppins_Regular";
    font-size: 10px;
    margin: 10px 0px;
  }
  .WHY .img {
    width: 53%;
  }
  .WHY .img img {
    width: 100%;
  }
  .Fastest {
    background: url(../Images/bg3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15% 10%;
  }
  .Fastest h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: white;
    width: 50%;
  }
  .new {
    padding: 7%;
  }
  .new h2 {
    font-family: "Poppins_bold";
    font-size: 38px;
    text-align: center;
    width: 40%;
    margin: 10px auto;
  }
  .new h2 span {
    color: #f44323;
  }
  .new .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new .Wraper .box {
    width: 32.3%;
    margin: 25px 0px;
    padding: 10px 0px;
  }
  .new .Wraper .box:hover {
    background-color: #dedede26;
  }
  .new .Wraper .box .img {
    margin: 0px 0px 20px;
  }
  .new .Wraper .box .img img {
    width: 100%;
  }
  .new .Wraper .box .content {
    padding: 0px 10px;
  }
  .new .Wraper .box .content p {
    font-family: "Poppins_light";
    font-size: 15px;
    margin: 0px 0px;
  }
  .new .Wraper .box .content h3 {
    font-family: "Poppins_Semibold";
    font-size: 28px;
    margin: 8px 67px 15px 0px;
  }
  .new .Wraper .box .content button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    padding: 0.3rem .5rem;
  }
  .new .Wraper .box .content button a {
    text-decoration: none;
    color: white;
  }
  .new .Wraper .box .content button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .new .Wraper .box .content button a {
    color: white;
  }
  footer {
    background-color: #212121;
    padding: 5% 7% 2%;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 80%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
    font-size: 14px;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
    width: 20%;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer #links {
    width: 20%;
  }
  footer .Copyrights {
    width: 100%;
    margin: 20px 0px 0;
  }
  footer .Copyrights p {
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}

@media (min-width: 1440px) {
  header {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0px 6%;
    height: 14vh;
    background-color: white;
  }
  header .log {
    margin: 5px auto 0px 0px;
    width: 15%;
  }
  header .log img {
    width: 100%;
  }
  header .ghost {
    width: 5%;
    display: none;
  }
  header .links {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    height: initial;
    width: 47%;
    background: transparent;
    position: initial;
  }
  header .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .links ul li {
    margin: 0px 15px;
  }
  header .links ul li a {
    font-size: 17px;
    font-family: "Poppins_Semibold";
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: black;
  }
  header .links ul li a:hover {
    background-color: #f44323;
    padding: .5rem .8rem;
    border-radius: 5px;
    color: white;
  }
  header .links ul li a:active {
    color: #f44323;
  }
  header .links ul button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f44323;
    font-size: 14px;
  }
  header .links ul button a {
    text-decoration: none;
    color: white;
  }
  header .links ul button a {
    color: white;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .bars {
    display: none;
  }
  .banner {
    padding: 6% 0px;
    height: 56vh;
  }
  .banner .overlay .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    width: 86%;
  }
  .banner .overlay .box .banner_text {
    width: 40%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 50px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: #ffffffd1;
    line-height: 1.8;
    text-align: left;
    margin: 20px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .About {
    padding: 8% 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .About .text_box {
    margin: 0px 0px;
    width: 40%;
  }
  .About .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 45px;
    color: red;
  }
  .About .text_box p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    line-height: 1.8;
    margin: 15px 0px;
  }
  .About .text_box h3 {
    font-family: "Poppins_Semibold";
    font-size: 30px;
  }
  .About .text_box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    margin: 12px 0px;
  }
  .About .text_box button a {
    text-decoration: none;
    color: white;
  }
  .About .img {
    margin: 0px 0px;
    width: 50%;
  }
  .About .img img {
    width: 100%;
  }
  .Services {
    background-color: #e9e9e973;
    padding: 8%;
  }
  .Services h2 {
    font-family: "Poppins_bold";
    color: #f44323;
    font-size: 50px;
  }
  .Services p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    font-family: "Poppins_Regular";
    margin: 12px 0;
    width: 38%;
  }
  .Services .Services_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px 0px;
  }
  .Services .Services_box .box {
    width: 20%;
    margin: 0px 0px;
    background-color: white;
    border-radius: 10px;
    padding: 30px 15px;
    -webkit-box-shadow: -10px 9px 7px 0px #21212126;
            box-shadow: -10px 9px 7px 0px #21212126;
  }
  .Services .Services_box .box .img img {
    width: 100%;
  }
  .Services .Services_box .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 14px;
    margin: 10px 0px;
    color: #f44323;
  }
  .Services .Services_box .box p {
    margin: 12px 0px;
    font-size: 15px;
    line-height: 1.5;
    width: auto;
  }
  .Services .Services_box .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    background-color: white;
    -webkit-box-shadow: -6px 6px 6px 0px #21212117;
            box-shadow: -6px 6px 6px 0px #21212117;
  }
  .Services .Services_box .box button a {
    text-decoration: none;
    color: white;
  }
  .Services .Services_box .box button span {
    display: block;
    color: black;
    font-size: 12px;
    margin: 0px 10px;
  }
  .Services .Services_box .box button a {
    color: black;
  }
  .Services .Services_box .box button:hover {
    background-color: #f44323;
  }
  .Services .Services_box .box button:hover span {
    color: white;
  }
  .Services .Services_box .box button:hover a {
    color: white;
  }
  .Ready {
    padding: 20%;
    position: relative;
    background: url(../Images/bg2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .Ready .Overlay {
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 26%;
  }
  .Ready .Overlay h2 {
    text-align: center;
    font-family: "Poppins_bold";
    font-size: 32px;
    color: white;
  }
  .Ready .Overlay p {
    text-align: center;
    font-family: "Poppins_Regular";
    font-size: 25px;
    margin: 20px 0px;
    color: white;
    line-height: 1.5;
  }
  .Ready .Overlay button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    font-size: 18px;
  }
  .Ready .Overlay button a {
    text-decoration: none;
    color: white;
  }
  .Ready .Overlay button a {
    color: black;
  }
  .Empower {
    margin: 20px 0px;
    padding: 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Empower .img_box {
    width: 50%;
    margin: 10px 0px;
  }
  .Empower .img_box img {
    width: 100%;
  }
  .Empower .text_box {
    width: 47%;
  }
  .Empower .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: #f44323;
  }
  .Empower .text_box p {
    font-family: "Poppins_Regular";
    font-size: 22px;
    line-height: 1.5;
    margin: 30px 0px;
  }
  .Empower .text_box .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 20px 0px;
  }
  .Empower .text_box .icon .img {
    width: 20%;
  }
  .Empower .text_box .icon .img img {
    width: 100%;
  }
  .Empower .text_box .icon .text {
    width: 60%;
    margin: 0px 25px;
  }
  .Empower .text_box .icon .text h3 {
    font-family: "Poppins_Semibold";
    font-size: 18px;
  }
  .Empower .text_box .icon .text p {
    font-family: "Poppins_Regular";
    font-size: 16px;
    line-height: 1.5;
    margin: 2px 0px;
  }
  .Projects {
    padding: 7%;
    background-color: #e9e9e9;
  }
  .Projects h2 {
    font-family: "Poppins_bold";
    font-size: 44px;
    color: #f44323;
    text-align: center;
  }
  .Projects p {
    font-family: "Poppins_Regular";
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }
  .Projects .Services_boxs {
    margin: 42px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Projects .Services_boxs .box {
    width: 31%;
    margin: 0px 0px;
  }
  .Projects .Services_boxs .box .img img {
    width: 100%;
  }
  .Projects .Services_boxs .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 24px;
    margin: 10px 0px;
  }
  .Projects .Services_boxs .box p {
    font-family: "Poppins_Regular";
    font-size: 17px;
    line-height: 1.4;
    text-align: left;
    margin: 11px 25px 31px 0px;
  }
  .Projects .Services_boxs .box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    padding: 0.4rem .6rem;
  }
  .Projects .Services_boxs .box button a {
    text-decoration: none;
    color: white;
  }
  .Projects .Services_boxs .box button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .Projects .Services_boxs .box button a {
    color: white;
  }
  .WHY {
    padding: 8%;
    margin: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .WHY .text {
    margin: 20px 0px;
    width: 43%;
  }
  .WHY .text h2 {
    font-family: "Poppins_bold";
    font-size: 34px;
    color: #f44323;
  }
  .WHY .text h2 span {
    color: black;
  }
  .WHY .text p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    margin: 20px 0px;
  }
  .WHY .text hr {
    background-color: #212121;
    height: 2px;
    border-radius: 15px;
  }
  .WHY .text .boxes {
    -o-object-fit: contain;
       object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .WHY .text .boxes .box {
    width: 40%;
    margin: 10px 0px;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 8px solid #c9c9c9;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
  }
  .WHY .text .boxes .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 14px;
  }
  .WHY .text .boxes .box p {
    font-family: "Poppins_Regular";
    font-size: 10px;
    margin: 10px 0px;
  }
  .WHY .img {
    width: 53%;
  }
  .WHY .img img {
    width: 100%;
  }
  .Fastest {
    background: url(../Images/bg3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15% 10%;
  }
  .Fastest h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: white;
    width: 50%;
  }
  .feedback {
    background-color: #e9e9e9a6;
    padding: 8%;
  }
  .feedback h2 {
    font-family: "Poppins_bold";
    font-size: 38px;
    text-align: center;
    width: 50%;
    margin: 30px auto;
  }
  .feedback h2 span {
    color: #f44323;
  }
  .feedback .boxes .box {
    -webkit-box-shadow: -10px 9px 7px 0px #21212126;
            box-shadow: -10px 9px 7px 0px #21212126;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 15px;
  }
  .feedback .boxes .box .img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .feedback .boxes .box .img img {
    width: 70%;
  }
  .feedback .boxes .box h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
    margin: 15px 0;
    text-align: center;
  }
  .feedback .boxes .box p {
    font-family: "Poppins_Regular";
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin: 10px 0px;
  }
  .feedback .boxes .box hr {
    width: 100%;
    color: white;
    margin: 18px 0px;
  }
  .feedback .boxes .box .icon span {
    color: #f44323;
    font-size: 32px;
  }
  .feedback .slider {
    width: 50%;
    margin: 100px auto;
    background-color: #0D0D2B;
  }
  .feedback .slick-slide {
    margin: 10px 10px;
  }
  .feedback .slick-slide img {
    width: 100%;
  }
  .feedback .slick-prev:before,
  .feedback .slick-next:before {
    color: red;
  }
  .feedback .slick-slide {
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .feedback .slick-active {
    opacity: 1;
  }
  .feedback .slick-current {
    opacity: 1;
  }
  .new {
    padding: 8%;
  }
  .new h2 {
    font-family: "Poppins_bold";
    font-size: 38px;
    text-align: center;
    width: 40%;
    margin: 10px auto;
  }
  .new h2 span {
    color: #f44323;
  }
  .new .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new .Wraper .box {
    width: 32.3%;
    margin: 25px 0px;
    padding: 10px 0px;
  }
  .new .Wraper .box:hover {
    background-color: #dedede26;
  }
  .new .Wraper .box .img {
    margin: 0px 0px 20px;
  }
  .new .Wraper .box .img img {
    width: 100%;
  }
  .new .Wraper .box .content {
    padding: 0px 10px;
  }
  .new .Wraper .box .content p {
    font-family: "Poppins_light";
    font-size: 15px;
    margin: 0px 0px;
  }
  .new .Wraper .box .content h3 {
    font-family: "Poppins_Semibold";
    font-size: 28px;
    margin: 8px 67px 15px 0px;
  }
  .new .Wraper .box .content button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    padding: 0.3rem .5rem;
  }
  .new .Wraper .box .content button a {
    text-decoration: none;
    color: white;
  }
  .new .Wraper .box .content button span {
    display: block;
    color: white;
    font-size: 20px;
    margin: 0px 10px;
  }
  .new .Wraper .box .content button a {
    color: white;
  }
  footer {
    background-color: #212121;
    padding: 5% 7% 2%;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 80%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
    font-size: 14px;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
    width: 20%;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer #links {
    width: 20%;
  }
  footer .Copyrights {
    width: 100%;
    margin: 20px 0px;
  }
  footer .Copyrights p {
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}
/*# sourceMappingURL=Sevices.css.map */