@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&display=swap");

html {
  scroll-behavior: smooth;
}

ul,
ol {
  margin: 0px;
  padding: 0;
  list-style: none;
}

*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

a,
img,
a:hover,
img:hover {
  border: 0px;
  outline: 0px;
  color: #00cbff;
  text-decoration: none;
  vertical-align: top;
}

body {
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  font-family: "Poppins", sans-sarif;
  background: #fff;
  color: #222;
}

input,
select,
textarea,
button {
  font-family: "Poppins", sans-sarif;
}

input[type="file"]:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 600;
}
p {
  margin-bottom: 10px;
  display: block;
}
.scrollup {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #00cbff;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  z-index: 99;
  display: none;
  border-radius: 100%;
  transition: all 0.5s;
}
.scrollup:hover {
  border: 1px solid #111;
  color: #111;
}

.wrapper {
  width: 100%;
  float: left;
  position: relative;
}

@media screen and (max-width: 1366px) {
  .wrapper_inner {
    max-width: 1100px;
  }
}
.wrapper_inner {
  position: relative;
  max-width: 1300px;
  padding: 0 15px;
  min-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.header:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  content: "";
  /* background:linear-gradient(to bottom, #fff 30%, transparent 80%); */
  background-image: url(../images/Scc.png);
  background-size: 100% 100%;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.header.fix:before {
  height: 0px;
}
.header.fix {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.logo {
  width: 20%;
  float: left;
  padding: 25px 0;
  position: relative;
  font-family: "Oswald", sans-sarif;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.header.fix .logo {
  padding: 5px 0;
}
.logo img {
  height: 100px;
  float: left;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.header.fix .logo img {
  height: 73px;
}
.logo span {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #0d1840;
  height: 32px;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.header.fix .logo span {
  height: 0px;
}
.menu {
  float: right;
  position: relative;
}
.menu .closeMenu,
.menu .menuicon {
  width: 40px;
  height: 40px;
  margin-top: 25px;
  background: #fff;
  line-height: 40px;
  color: #111;
  border-radius: 3px;
  text-align: center;
  font-size: 24px;
  display: none;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.menu ul {
  float: left;
}
.menu ul li {
  float: left;
  margin-left: 30px;
  padding: 25px 0;
  position: relative;
}
.menu ul li:first-child {
  margin-left: 0;
}
.menu ul li a span {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  top: -3px;
  position: relative;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #0d1840;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.menu ul li a {
  float: left;
  color: #0d1840;
  font-size: 14px;
  line-height: 32px;
  font-weight: 500;
  position: relative;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.menu ul li.last a {
  color: #0d1840;
  padding: 0 25px;
  line-height: 32px;
  border-radius: 50px;
  border: 1px solid #0d1840;
}
.menu ul li.last a img {
  float: right;
  margin-left: 10px;
  margin-top: 14px;
  width: 24px;
}
.menu ul li.last:hover a,
.menu ul li.last.active a {
  color: #fff;
  background: #0d1840;
}
.menu ul li:hover a span,
.menu ul li.active a span {
  border-top: 4px solid #00cbff;
}
.menu ul li:hover a,
.menu ul li.active a {
  color: #00cbff;
}
.menu ul li:hover li a,
.menu ul li.active li a {
  color: #0d1840;
}
.menu li ul li a:hover,
.menu li ul li a.active {
  color: #00cbff;
}
.menu ul.submenu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 250px;
  padding: 5px 10px;
  border-radius: 0px 0px 5px 5px;
  background: #fff;
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  visibility: hidden;
  box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.5s;
}
.menu li:hover ul.submenu {
  opacity: 1;
  top: 100%;
  backface-visibility: visible;
  -webkit-backface-visibility: hidden;
  visibility: visible;
  transition: all ease-in-out 0.5s;
}
ul.submenu li {
  margin: 0;
  padding: 0;
  width: 100%;
}
ul.submenu li a {
  padding: 5px;
  line-height: 1.3;
  width: 100%;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
ul.submenu li:last-child a {
  border-bottom: 0px solid #eee;
}
/* ---- banner ---- */
.homeSlider {
  width: 55%;
  overflow: hidden;
}
.bannerMask,
.banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bannerMask img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.bannerMask video {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bannerDiv {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #0d1840;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerTxt {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
.bannerTxt .p {
  padding-right: 15%;
  margin: 20px 0;
}
.bannerTxt a {
  float: left;
  height: 20px;
  width: 20px;
  padding: 0;
  transition: all ease-in-out 0.5s;
}
.bannerTxt a:hover {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  padding: 10px;
  background: #0d1840;
  transition: all ease-in-out 0.5s;
}
.bannerTxt a img {
  height: 20px;
}
.bannerTxt h2 {
  font-size: 76px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 80px 0;
}
.bannerDiv .carousel-indicators {
  position: absolute;
  top: calc(50% + 120px);
  bottom: auto;
  right: auto;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  width: 30px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  transform: rotate(-90deg);
}
.bannerDiv .carousel-indicators:after {
  content: attr(data-total);
  color: #0d1840;
  opacity: 0.6;
  margin-left: 40px;
}
.bannerDiv .carousel-indicators:before {
  content: "/";
  color: #0d1840;
  opacity: 0.6;
  margin-left: 25px;
  z-index: 1;
  position: absolute;
}
.bannerDiv .carousel-indicators li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  border-radius: 0px;
  background: transparent;
  color: #0d1840;
  pointer-events: none;
  opacity: 0;
  font-weight: 600;
  text-indent: 0px;
}
.bannerDiv .carousel-indicators li.active {
  background: #fff;
  opacity: 1;
}
/* about_section */
.about_section {
  background-color: #fff;
  padding: 60px 0;
}
.about_section:after {
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  width: 100%;
  height: 52%;
  background: #f7f7f7;
}
.about_section .as_title {
  position: absolute;
  top: 250px;
  left: 0;
  color: #0d1840;
  width: 100%;
  z-index: 2;
}
.about_section .as_title h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  text-align: right;
  width: 47%;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.about_section .as_title h1 {
  font-weight: 700;
  font-size: 110px;
  line-height: 110px;
  height: 110px;
  margin-left: -45px;
  width: 120%;
  overflow: hidden;
}
.about_section .as_title h1 span {
  display: inline;
}
.about_section .as_title h1 span:nth-child(even) {
  color: #00cbff;
}
.as_img {
  z-index: 1;
}
.as_img:before {
  position: absolute;
  top: 80px;
  left: calc(50% - 120px);
  width: 420px;
  height: 420px;
  content: "";
  z-index: 1;
  background-image: url(../images/aboutCircle.png);
  background-position: center;
  background-size: cover;
}
.as_img .img {
  width: 49%;
  float: right;
  background-color: #ddd;
  clip-path: polygon(
    21.6% 0%,
    100.1% 0%,
    100.1% 0%,
    100.1% 100.3%,
    100% 100.3%,
    0% 100.3%,
    0% 100.3%,
    0% 27%
  );
}
.as_img .img img {
  width: 100%;
}
.as_content {
  margin-top: 50px;
  color: #0d1840;
  z-index: 2;
}
.as_content h4 {
  float: left;
  width: 30%;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
}
.as_content .p {
  float: right;
  width: 64%;
  font-size: 18px;
  line-height: 2;
}
.buttonA {
  float: left;
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  color: #409eb6;
  border: 1px solid #409eb6;
  transition: all ease-in-out 0.5s;
}
.buttonA:hover {
  background: #409eb6;
  border: 1px solid #409eb6;
  color: #fff;
}
/* services_section*/
.services_section li,
.services_section li .img,
.services_section li .txt {
  width: 50%;
  float: left;
  position: relative;
  background: #0d1840;
  color: #fff;
  transition: all ease-in-out 0.5s;
}
.services_section li .img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}
.services_section li:nth-child(3) .img,
.services_section li:nth-child(4) .img {
  float: right;
}
.services_section li .txt {
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  padding: 30px;
}
.services_section li:hover .txt {
  background: #409eb6;
}
.services_section li h4 {
  color: #00cbff;
  margin-bottom: 20px;
  transition: all ease-in-out 0.5s;
}
.services_section li .txt:before {
  content: "";
  position: absolute;
  top: 50px;
  left: -40px;
  width: 40px;
  height: 40px;
  background-color: #0d1840;
  clip-path: polygon(
    100.1% 0%,
    100.1% 0%,
    100% 25%,
    100% 75%,
    100.1% 100.3%,
    100.1% 100.3%,
    0% 50%
  );
  transition: all ease-in-out 0.5s;
}
.services_section li:nth-child(3) .txt:before,
.services_section li:nth-child(4) .txt:before {
  left: auto;
  right: -40px;
  clip-path: polygon(
    0% 25%,
    0% 0%,
    0% 0%,
    100% 50%,
    0% 100.3%,
    0% 100.3%,
    0% 75%
  );
}
.services_section li:hover .txt:before {
  background-color: #409eb6;
}
.services_section li a {
  float: left;
  color: #0d1840;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 10px;
  text-transform: uppercase;
  transition: all ease-in-out 0.5s;
}
.services_section li a:hover {
  color: #fff;
}
.services_section li:hover h4 {
  color: #fff;
}
/* .gallery_section */
.gallery_section {
  background: #fff;
  overflow: hidden;
  padding: 80px 0;
}
.gallery_section:before {
  position: absolute;
  top: -100px;
  left: -140px;
  width: 420px;
  height: 420px;
  content: "";
  z-index: 1;
  background-image: url(../images/aboutCircle.png);
  background-position: center;
  background-size: cover;
}
.gallery_section h5 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #0d1840;
}
.gallery_section h2 {
  font-weight: 700;
  font-size: 110px;
  color: #0d1840;
  margin-bottom: 20px;
}
.gallery_section li {
  float: left;
  width: calc((100% - 60px) / 3);
  margin-right: 15px;
  margin-top: 15px;
}
.gallery_section li:last-child {
  margin-right: 0px;
}
.gallery_section li .a1 img {
  width: 100%;
  height: 515px;
  object-fit: cover;
  object-position: center;
}
.gallery_section li .a2 {
  margin-top: 15px;
}
.gallery_section li .a2:first-child {
  margin-top: 0;
}
.gallery_section li .a2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.gallery_section li a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "\f00e";
  font-family: "FOntAwesome";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: all ease-in-out 0.5s;
}
.gallery_section li a:hover:before {
  transform: scale(1);
  opacity: 1;
}
.gsBtn {
  text-align: center;
  margin-top: 15px;
}
.gsBtn .buttonA {
  float: none;
  display: inline-block;
}
/* clients_section */
.clients_section {
  background: #fff;
  padding-bottom: 60px;
  text-align: center;
}
.clients_section li {
  float: left;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 120px;
  /* border: 1px solid #eee; */
}
.clients_section li img {
  display: block;
  max-height: 100px;
  max-width: 100%;
}
/* footer */
.footer {
  background: #0d1840;
  color: #fff;
  padding: 50px 0;
}
.footer::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 67%;
  height: 100%;
  content: "";
  background: #000b32;
  clip-path: polygon(26.9% 0%, 100.1% 0%, 100.1% 100.3%, 0% 100%);
}
.footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 80px;
  content: "";
  background: #fff;
  clip-path: polygon(0% 0%, 100.1% 0%, 89.5% 100.3%, 0% 100%);
}
.fLinks {
  z-index: 2;
}
.fLinks .flogo,
.fLinks .fnav {
  float: left;
  width: 50%;
  position: relative;
}
.fLinks .fnav {
  width: 48%;
  float: right;
}
.flogo_bar {
  margin-top: 100px;
  max-width: 360px;
  text-align: center;
}
.flogo_bar:after {
  position: absolute;
  top: 185px;
  right: 0;
  width: 180%;
  height: 18px;
  background-image: url(../images/flogo-arrow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
.flogo_bar .flTitle {
  font-family: "Oswald";
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #409eb6;
}
.flogo_bar .flTag {
  text-align: right;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
}
.fsocail {
  padding-top: 80px;
  text-align: right;
}
.fsocail a {
  display: inline-block;
  font-size: 30px;
  color: #fff;
  margin-left: 50px;
  transition: all ease-in-out 0.5s;
}
.fRights {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}
.privacyLinks a {
  float: left;
  position: relative;
  font-size: 13px;
  color: #fff;
  transition: all ease-in-out 0.5s;
}
.privacyLinks a:hover,
.fsocail a:hover {
  color: #409eb6;
  transition: all ease-in-out 0.5s;
}
.privacyLinks a:after {
  content: "|";
  color: #fff;
  margin: 0 10px;
}
.privacyLinks a:last-child:after {
  display: none;
}
.copyrights {
  margin-top: 10px;
  font-size: 13px;
}
.fnavLeft {
  float: left;
  width: 38%;
}
.fnavRight {
  width: 62%;
  float: left;
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.hline {
  width: 60%;
  height: 1px;
  background: #fff;
  opacity: 0.3;
  margin: 20px 0;
}
.fnav h5 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.fnav h5:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 2px;
  background: #00cbff;
}
.fnav li {
  margin-bottom: 10px;
}
.fnav .p,
.fnav li a {
  color: #fff;
  font-size: 16px;
  transition: all ease-in-out 0.5s;
}
.fnav li a:hover {
  color: #00c0ff;
}
.fnav li a i {
  margin-right: 5px;
  color: #00c0ff;
}
.fnav .p strong {
  font-weight: 500;
}
.fnav .p {
  margin-bottom: 10px;
}
.fnav .p:last-child {
  margin-bottom: 0;
}

/*============================
	Responsive starts here
	============================*/

@media screen and (max-width: 1279px) {
  .bannerTxt h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
  .bannerDiv .carousel-indicators {
    display: none;
  }
  .about_section .as_title h1 {
    height: 80px;
    line-height: 80px;
    font-size: 80px;
  }
  .services_section li .img img,
  .services_section li .txt {
    height: 350px;
  }
  .gallery_section h2 {
    font-size: 80px;
  }
}
@media screen and (max-width: 979px) {
  .menu .closeMenu,
  .menu .menuicon {
    display: block;
    font-size: 24px;
  }
  .menu .closeMenu {
    float: right;
    margin-top: 10px;
  }
  .fixedmenu {
    position: fixed;
    top: 90px;
    right: -100%;
    z-index: 999;
    background: #fff;
    padding: 5px 10px;
    border-radius: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
  }
  .fixedmenu.open {
    right: 0;
    box-shadow: 0px 0px 14px 0x rgba(0, 0, 0, 0.5);
  }
  .menu ul li,
  .menu ul li a {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
  }
  .menu ul li a,
  .menu ul li.last a,
  .menu ul li.last a:hover {
    background: #fff;
    border: 0px;
    font-size: 14px;
    color: #111;
    padding: 5px 10px;
    border-radius: 0px;
    border-bottom: 1px solid #eee;
  }
  .menu ul li a:hover,
  .menu ul li.last a:hover {
    color: #00c0ff;
  }
  .menu ul.submenu li a {
    background: #eee;
    padding: 10px;
  }
  .menu ul li:hover::before {
    display: none;
    opacity: 0;
  }
  .menu ul li a span {
    float: right;
    margin-top: 15px;
  }
  .menu ul.submenu,
  .menu li:hover ul.submenu {
    display: block;
    top: 0;
    position: relative;
    padding: 0px;
    background: #eee;
    visibility: visible;
    backface-visibility: visible;
    -webkit-backface-visibility: hidden;
    opacity: 1;
    box-shadow: none;
    display: none;
  }
  ul.submenu.open,
  .menu li:hover ul.submenu.open {
    display: block;
    width: 100%;
  }
  ul.submenu li a {
    border-bottom: 1px solid #ddd;
  }
  body.menuOpened {
    overflow: hidden;
  }
  .menuMasked {
    position: fixed;
    top: 85x;
    right: 0;
    width: 0px;
    height: 100vh;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    transition: all ease-in-out 0.5s;
  }
  .menuMasked.open {
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .wrapper_inner {
    max-width: 768px;
  }
  .logo {
    padding: 5px 0;
    width: 60%;
  }
  .header.fix .logo span,
  .logo span {
    width: auto;
    height: auto;
    margin-top: 10px;
  }
  .header.fix .logo img,
  .logo img {
    height: 50px;
  }
  .menu .menuicon {
    margin-top: 10px;
  }
  .fixedmenu {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .bannerDiv {
    top: 0;
  }
  .header {
    background: #fff;
  }
  .header::before {
    display: none;
  }
  .bannerMask img {
    opacity: 0;
  }
  .bannerMask video {
    width: 100%;
  }
  .homeSlider {
    width: 100%;
  }
  .bannerDiv {
    top: auto;
    bottom: 15px;
  }
  .bannerTxt h2 {
    margin: 0;
    font-size: 30px;
  }
  .bannerTxt {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    font-size: 16px;
  }
  .bannerTxt .p {
    padding: 0;
  }
  .about_section .as_title h1 {
    height: 60px;
    line-height: 60px;
    font-size: 60px;
  }
  .about_section:after {
    height: 62%;
  }
  .about_section .as_title {
    top: 200px;
  }
  .as_content h4 {
    width: 100%;
    margin-bottom: 20px;
  }
  .as_content .p {
    width: 100%;
    font-size: 16px;
  }
  .services_section li {
    width: 100%;
  }
  .services_section li:nth-child(odd) .img {
    float: left;
  }
  .services_section li:nth-child(even) .img {
    float: right;
  }
  .services_section li:nth-child(even) .txt::before {
    left: auto;
    right: -40px;
    clip-path: polygon(
      0% 25%,
      0% 0%,
      0% 0%,
      100% 50%,
      0% 100.3%,
      0% 100.3%,
      0% 75%
    );
  }
  .services_section li:nth-child(odd) .txt::before {
    left: -40px;
    clip-path: polygon(
      100.1% 0%,
      100.1% 0%,
      100% 25%,
      100% 75%,
      100.1% 100.3%,
      100.1% 100.3%,
      0% 50%
    );
  }
  .gallery_section h2 {
    font-size: 40px;
  }
  .gallery_section li .a1 img {
    height: 415px;
  }
  .gallery_section li .a2 img {
    height: 200px;
  }
  .fLinks .flogo,
  .fLinks .fnav {
    width: 100%;
  }
  .flogo_bar {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .fsocail,
  .privacyLinks {
    text-align: center;
  }
  .fsocail a:first-child {
    margin: 0;
  }
  .fsocail a,
  .privacyLinks a {
    float: none;
    display: inline-block;
  }
  .fRights {
    position: relative;
    width: 100%;
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 767px) {
  .wrapper_inner {
    max-width: 550px;
  }
  .logo {
    width: calc(100% - 50px);
  }
  .fixedmenu {
    max-width: 100%;
    border-top: 1px solid #ddd;
  }
  .bannerDiv {
    position: relative;
    top: 0;
    bottom: 0;
  }
  .about_section {
    padding: 30px 0;
  }
  .about_section::after {
    bottom: auto;
    top: 0;
  }
  .about_section .as_title {
    position: relative;
    padding: 0 15px;
    text-align: center;
    top: 0;
  }
  .about_section .as_title h3 {
    width: 100%;
    text-align: center;
  }
  .as_img .img,
  .as_content {
    width: 100%;
    margin-top: 20px;
  }
  .as_content h4 {
    font-size: 20px;
  }
  .services_section li,
  .services_section li .img,
  .services_section li .txt {
    width: 100%;
  }
  .services_section li .img img,
  .services_section li .txt {
    height: 100%;
  }
  .services_section li:nth-child(odd) .txt::before,
  .services_section li:nth-child(even) .txt::before {
    left: 40px;
    top: -40px;
    clip-path: polygon(
      100.1% 0%,
      100.1% 0%,
      100% 25%,
      100% 75%,
      100.1% 100.3%,
      100.1% 100.3%,
      0% 50%
    );
    transform: rotate(90deg);
  }
  .gallery_section {
    padding: 30px 0;
  }
  .gallery_section h2 {
    font-size: 30px;
  }
  .gallery_section li,
  .clients_section li {
    width: 100%;
  }
  .gallery_section li .a1 img {
    height: 200px;
  }
  .clients_section {
    padding-bottom: 30px;
  }
  .footer:before {
    display: none;
  }
  .footer:after {
    width: 100%;
  }
  .flogo_bar {
    margin-top: 0;
  }
  .flogo_bar .flTitle {
    font-size: 22px;
  }
  .fnavLeft,
  .fnavRight {
    width: 100%;
    padding: 0;
    border: 0px;
  }
  .fnavLeft {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .hline {
    width: 100%;
  }
  .bannerTxt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 359px) {
  .wrapper_inner {
    max-width: 320px;
  }
}
