body {

  padding: 0;

  margin: 0;

  font-family: 'Roboto';

  font-weight: normal;

  background-color: var(--white);

  overflow-x: hidden;

}

/* ------------------------

      General CSS

----------------------- */



:root {

  --primary: #102039;

  --white: #fff;

  --gray-color: #787878;

  --dark-color: #333333;

  --black: #000000;

}



/* Headings Styling */

h1,
h2,
h3,
h4,
h5,
h6 {

  margin-bottom: 20px;

}



h1 {

  font-size: 64px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 700;

  line-height: 78px;

}



h2 {

  font-size: 36px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 700;

  line-height: 46px;

}



h3 {

  font-size: 32px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 700;

  line-height: 42px;

}



h4 {

  font-size: 24px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 600;

  line-height: 32px;

}



h5 {

  font-size: 20px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 700;

  line-height: 28px;

}



h6 {

  font-size: 18px;

  color: var(--black);

  font-family: 'Inter';

  font-weight: 700;

  line-height: 24px;

}



/* Paragraphs and text styling */

p {

  font-size: 16px;

  color: var(--gray-color);

  font-weight: 400;

  font-family: 'Roboto';

  line-height: 28px;

  margin-bottom: 20px;

}



/* Links */

a {

  font-size: 16px;

  color: var(--gray-color);

  line-height: 28px;

  font-family: 'Roboto';

  text-decoration: none;

}



/* Buttons */

button,

.btn {

  font-size: 16px;

  font-weight: 400;

  color: var(--white) !important;

  font-family: 'Inter';

  text-align: center;

  border: 1px solid var(--black);

  padding: 0 30px 0 25px;

  line-height: 54px;

  cursor: pointer;

  border-radius: 0px;

  background-color: var(--black) !important;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: normal;

  transition: all 0.5s;

}

button span,

.btn span {

  line-height: 12px;

  width: 16px;

  height: 16px;

  display: inline-block;

  position: relative;

  top: -2px;

  padding-left: 8px;

  margin-left: 5px;

  border-left: 1px solid var(--white);

}

button span svg,

.btn span svg {

  width: 18px;

  height: 18px;

}

/* .btn:hover {

    color: var(--black);

    border-color: var(--black);

  } */

.outline-btn {

  background-color: transparent;

  color: var(--primary);

}

.outline-btn:hover {

  color: var(--white);

  background-color: var(--black);

}

/* Form elements */

.form-group {

  margin-bottom: 20px;

}



input.form-control,

textarea.form-control,

select.form-control {

  font-size: 16px;

  color: var(--gray-color) !important;

  font-weight: 400;

  font-family: 'Roboto';

  width: 100%;

  height: 56px;

  padding: 5px 20px;

  border: 1px solid var(--black) !important;

  background-color: transparent !important;

  box-shadow: none !important;

  border-radius: 30px;

}

input[type=number]::-webkit-inner-spin-button,

input[type=number]::-webkit-outer-spin-button {

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

}

input[type="date"]::-webkit-calendar-picker-indicator {

  filter: invert(1);

  opacity: 1;

}

.form-group.select-box {

  background-color: var(--white);

  border-radius: 5px;

  position: relative;

}

.form-group.select-box::before {

  position: absolute;

  content: "\f078";

  font-size: 18px;

  color: var(--black);

  top: 11px;

  right: 20px;

  font-family: 'fontawesome';

}

.form-group.select-box select.form-control {

  background-color: transparent !important;

  position: relative;

  z-index: 1;

}

select.form-control option {

  color: var(--dark-color) !important;

}

textarea.form-control {
  height: 110px;
  resize: none;
  padding: 15px 20px;
  border-radius: 20px;
}

textarea.form-control::-webkit-input-placeholder,

input.form-control::-webkit-input-placeholder {

  color: var(--gray-color);
  opacity: 1;

}

textarea.form-control::-moz-placeholder,

input.form-control::-moz-placeholder {

  color: var(--gray-color);
  opacity: 1;

}

textarea.form-control:-ms-input-placeholder,

input.form-control:-ms-input-placeholder {

  color: var(--gray-color);
  opacity: 1;

}

textarea.form-control:-moz-placeholder,

input.form-control:-moz-placeholder {

  color: var(--gray-color);
  opacity: 1;

}

.form-label {

  font-size: 16px;

  font-weight: 400;

  color: #da2d2d;

  font-family: 'Inter';

  line-height: 20px;

}





/* Lists */

ul,
ol {

  font-size: 16px;

  color: var(--black);

  font-weight: 400;

  line-height: 20px;

  padding: 0;

  margin: 0;

  list-style: none;

}



li {

  margin-bottom: 20px;

}



button.slick-arrow {

  font-size: 0;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 40px;

  height: 40px;

  line-height: 40px;

  text-align: center;

  border: 1px solid var(--white);

  background-color: #373435;

  z-index: 1;

  padding: 0;

  border-radius: 50%;

}

button.slick-arrow::before {

  font-size: 18px;

  color: var(--white);

  position: absolute;

  content: '';

  font-family: 'fontawesome';

}

button.slick-arrow.slick-prev {

  left: 60px;

}

button.slick-arrow.slick-prev::before {

  content: "\f053";

  left: 0;

  right: 0;

}

button.slick-arrow.slick-next {

  right: 60px;

}

button.slick-arrow.slick-next::before {

  content: "\f054";

  left: 0;

  right: 0;

}



/* header-css */

.top-header-bg {

  background-color: var(--black);

}

.header-left-box {

  padding: 11px 0;

}

.header-left-box ul {

  display: flex;

}

.header-left-box ul li {

  margin-right: 20px;

  margin-bottom: 0;

}

.header-left-box ul li a {

  font-size: 16px;

  color: var(--white);

  font-weight: 400;

  font-family: 'Roboto';

  display: flex;

  align-items: center;

}

.header-left-box ul li a svg {

  font-size: 18px;

  margin-right: 10px;

}

.header-socials {

  padding: 11px 0;

}

.header-socials ul {

  display: flex;

  justify-content: flex-end;

}

.header-socials ul li {

  margin-left: 20px;

  margin-bottom: 0;

}

.header-socials ul li a {

  font-size: 20px;

  color: var(--white);

}



.header-bg {

  padding: 11px 0;

  background-color: var(--white);

}
.logo img{
  height: auto;
}
.navbar.navbar-expand-lg {

  justify-content: space-between;

}

.navbar-expand-lg .navbar-collapse {

  justify-content: center;

}

.navbar.navbar-expand-lg .navbar-nav .menu-item {
  margin: 0 10px;
  position: relative;
}
.navbar.navbar-expand-lg .navbar-nav .menu-item.menu-item-has-children .down-arrow{
  margin-left: 5px;
}
.navbar.navbar-expand-lg .navbar-nav .menu-item.menu-item-has-children .down-arrow svg{
  width: 15px;
}
.navbar.navbar-expand-lg .navbar-nav .menu-item a {

  font-size: 15px;

  color: var(--black);

  font-weight: 600;

  font-family: 'Inter';

  text-transform: uppercase;

}

.navbar.navbar-expand-lg .navbar-nav .menu-item a svg {

  font-size: 12px;

  position: relative;

  top: -1px;

  margin-left: 2px;

}

.navbar.navbar-expand-lg .navbar-nav .menu-item .sub-menu {

  border-radius: 0;

  margin-top: 25px;

}

.navbar.navbar-expand-lg .navbar-nav .menu-item .sub-menu li {

  margin-bottom: 0;

}

.navbar.navbar-expand-lg .navbar-nav .menu-item .sub-menu li a {
  padding: 6px 15px;
  display: inline-block;
  width: 100%;
}

.header-contact-list ul {

  display: flex;

}

.header-contact-list ul li {

  margin-bottom: 0;

  margin-left: 30px;

}

.header-contact-list ul li:first-child {

  margin-left: 0;

}

.header-contact-list ul li .btn {

  padding-right: 30px;

}

.header-contact-list ul li .call-box {

  display: flex;

}

.header-contact-list ul li .call-box .call-content {

  padding-left: 10px;

}

.header-contact-list ul li .call-box .call-content span {

  font-size: 14px;

  color: #333333;

  font-weight: 600;

  display: block;

  font-family: 'Inter';

  padding-bottom: 5px;

}

.header-contact-list ul li .call-box .call-content a {

  font-size: 18px;

  color: var(--black);

  font-weight: 600;

  line-height: 26px;

}



/* banner-section */

.banner-section {

  padding: 120px 0 115px 0;

  position: relative;

  background-image: url(../images/banner-bg.png);

  background-position: top center;

  background-size: cover;

  background-repeat: no-repeat;

  overflow: hidden;

}

.banner-shape-bg {

  position: absolute;

  top: 0;

  right: 0;

}

.banner-section .container {

  position: relative;

  z-index: 1;

}

.banner-content .banner-title {

  font-size: 18px;

  font-weight: 500;

  color: var(--white);

  font-family: 'Inter';

  line-height: 32px;

  text-transform: uppercase;

  letter-spacing: 5px;

  display: block;

  padding-bottom: 15px;

}

.banner-content h1 {

  color: var(--white);

  margin-bottom: 15px;

}

.banner-content p {

  font-size: 18px;

  color: var(--white);

  line-height: 32px;

  margin-bottom: 50px;

  width: 100%;

  max-width: 600px;

}

.banner-shape {

  padding-left: 30px;

}

.banner-image img {
  max-width: 100%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	/*40% {transform: translateY(-40px);}
	60% {transform: translateY(-15px);} */
	50% {transform: translateY(-40px);}
}



/* about-section */

.about-section {

  padding: 120px 0 75px 0;

  background-image: url(../images/about-shape.svg);

  background-position: center right;

  background-repeat: no-repeat;

}

.about-line-shape {

  position: absolute;

  width: 270px;

  height: 440px;

  border: 10px solid var(--black);

  top: 50px;

  right: -50px;

  z-index: -1;

}

.about-image-box {

  max-width: 450px;

  margin: auto;

  position: relative;

}

.about-image-box .about-main-img {

  width: 100%;

}

.work-experience-box {

  width: 182px;

  text-align: center;

  padding: 30px 15px 22px 15px;

  position: absolute;

  top: 90px;

  left: -47px;

  background-color: var(--black);

}

.work-experience-box img {

  margin-bottom: 20px;

}

.work-experience-box h5 {

  font-size: 24px;

  font-weight: 600;

  color: var(--white);

  line-height: 28px;

  margin-bottom: 5px;

}

.work-experience-box p {

  font-size: 16px;

  font-weight: 400;

  line-height: 30px;

  color: var(--white);

  margin-bottom: 0;

}

.work-experience-box::after {

  position: absolute;

  bottom: -30px;

  left: 0;

  content: '';

  width: 0;

  height: 0;

  border-top: 30px solid #3b3b3b;

  border-left: 47px solid transparent;

}

.about-video-box {

  position: absolute;

  right: -135px;

  bottom: 70px;

  border: 13px solid var(--white);

}

.about-video-box .video_icon {

  position: absolute;

  left: 0;

  right: 0;

  top: 50%;

  transform: translate(0, -50%);

  margin: auto;

  display: table;

}

.about-content-box {

  padding-left: 10px;

}

.about-content-box .main-heading .banner-title {

  font-size: 16px;

  color: var(--black);

  text-transform: uppercase;

  display: block;

  padding-bottom: 10px;

}

.about-content-box .main-heading .banner-title svg {

  margin-right: 5px;

}

.about-content-box .main-heading .banner-title svg rect {

  stroke: var(--black);

}

.about-content-box .main-heading .banner-title svg rect:last-child {

  fill: var(--black);

}

.about-content-box .main-heading {

  margin-bottom: 30px;

}

.about-content-box .main-heading h2 {

  color: var(--primary);

  margin-bottom: 30px;

}

.about-service-list {

  margin-bottom: 40px;
  padding-left: 0 !important;

}

.about-service-list li {

  display: flex;

  margin-bottom: 25px;

}

.about-service-icon {

  width: 80px;

  min-width: 80px;

  height: 80px;

  line-height: 80px;

  text-align: center;

  background-color: #f0f0f0;

}

.about-service-content {

  padding-left: 20px;

}

.about-service-content h6 {

  font-size: 18px;

  color: var(--primary);

  font-weight: 600;

  margin-bottom: 8px;

}

.about-service-content p {

  margin-bottom: 0;

}

#VideoModal .modal-dialog {

  max-width: 700px;

}

#VideoModal .modal-content {

  border: 0;
  top: 50%;
  transform: translateY(50%);

}

.modal-content .btn-close {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 1;

  position: absolute;

  top: -12px;

  right: -12px;

  box-shadow: 0 0 5px 0 #fff;

}

.modal-content .modal-body iframe {

  width: 100%;

  height: 400px;

}



/* need-help-section */

.need-help-section {

  position: relative;

  z-index: 1;

  margin-bottom: -130px;

}

.need-help-content {

  padding: 50px 80px 60px 80px;

  border-radius: 30px;

  background-color: #252525;

  border-bottom: 4px solid var(--white);

  box-shadow: 0px 4px 25px 0px rgb(0, 0, 0, 0.08);

  position: relative;

}

.need-left-shape {

  position: absolute;

  left: 0;

  bottom: 0;

  max-width: 100%;

}

.need-right-shape {

  position: absolute;

  top: 0;

  right: 0;

  max-width: 100%;

}

.need-help-content h2 {

  color: var(--white);

  text-align: center;

  margin-bottom: 30px;

  position: relative;

  z-index: 1;

}

.need-help-content form {

  position: relative;

  z-index: 1;

}

.need-help-content .form-group {

  margin-bottom: 0;

}

.need-help-content .form-group .form-control {

  font-size: 14px;

  border: 1px solid var(--white) !important;

  padding: 5px 25px;

  height: 60px;

  font-weight: 300;

}

.need-help-content .form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */

  color: #fff;
  opacity: 1;

}

.need-help-content .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */

  color: #fff;
  opacity: 1;

}

.need-help-content .form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */

  color: #fff;
  opacity: 1;

}

.need-help-content .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */

  color: #fff;
  opacity: 1;

}

.need-help-content .form-group textarea.form-control {

  padding: 18px 25px;

  overflow: hidden;

}

.need-help-content .btn.btn-primary {

  width: 230px;

  text-transform: uppercase;

  border-radius: 35px;

  line-height: 60px;

  font-weight: 600;

  color: var(--black) !important;

  border: 1px solid var(--black) !important;

  background-color: var(--white) !important;

}



/* services-section */

.need-help-section+.services-section {

  padding-top: 240px;

}

.services-section {

  padding: 100px 0 100px 0;

  background-color: var(--black);

  position: relative;

}

.service-top-right-shape {

  position: absolute;

  top: 100px;

  right: 0;

  max-width: 100%;

}

.service-bottom-left-shape {

  position: absolute;

  bottom: 155px;

  left: 0;

  max-width: 100%;

}

.services-section .container {

  position: relative;

  z-index: 1;

}

.services-section .main-heading {

  margin-bottom: 70px;

}

.services-section .main-heading .banner-title {

  display: flex;

  align-items: center;

  color: var(--white);

  text-transform: uppercase;

  padding-bottom: 12px;

}

.services-section .main-heading .banner-title svg {

  margin-right: 8px;

}

.services-section .main-heading h2 {

  color: var(--white);

  margin-bottom: 0;

}

.view-all-btn .btn {

  width: 160px;

  height: 63px;

  line-height: 63px;

  font-weight: 600;

  color: var(--black) !important;

  background-color: var(--white) !important;

}

.view-all-btn .btn span {

  border-left: 1px solid var(--black);

}

.view-all-btn .btn svg path {

  fill: var(--black) !important;

}

.services-box {

  width: 100%;

  margin-bottom: 30px;

}

.services-box .services-image img {

  width: 100%;
  height: 250px;
  object-fit: cover;

}

.services-box .services-content {

  position: relative;

  text-align: center;

  padding: 45px 20px 40px 20px;

  background-color: var(--white);

}

.services-box .services-content h4 {

  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 10px;

}

.services-box .services-content p {

  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.3em* 4);

}

.services-box .services-details a {

  font-size: 14px;

  color: var(--black);

  font-weight: 600;

  text-transform: uppercase;

  height: 50px;

  line-height: 50px;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #f8f8f8;

}

.services-box .services-details a svg {

  margin-left: 5px;

}

.services-box .services-details a:hover {

  color: var(--white);

  background-color: #252525;

}

.services-box .services-details a:hover svg path {

  fill: var(--white);

}

.services-box .services-content .notepad-icon {

  width: 80px;

  height: 80px;

  line-height: 80px;

  background-color: var(--black);

  text-align: center;

  position: absolute;

  left: 0;

  right: 0;

  margin: auto;

  top: -45px;

  display: none;

}

.services-box:hover .services-content .notepad-icon {

  display: block;

}



/* choose-us-section */

.choose-us-section {

  padding: 80px 0 65px 0;

  background-image: url(../images/choose-bg.png);

  background-position: top center;

  background-size: cover;

  background-repeat: no-repeat;

}

.choose-us-content {

  padding-right: 200px;

}

.choose-us-content .main-heading {

  margin-bottom: 30px;

}

.choose-us-content .main-heading .banner-title {

  font-size: 16px;

  font-weight: 600;

  text-transform: uppercase;

  display: block;

  padding-bottom: 10px;

}

.choose-us-content .main-heading .banner-title svg {

  margin-right: 5px;

}

.choose-us-content .main-heading .banner-title svg rect:first-child {

  stroke: var(--black);

  fill: var(--white);

}

.choose-us-content .main-heading .banner-title svg rect {

  fill: var(--black);

}

.few-reasons-choose-company {

  display: flex;

  flex-wrap: wrap;

}

.reasons-choose-company-box {

  font-size: 16px;

  font-weight: 600;

  color: var(--black);

  min-width: 235px;

  width: calc(50% - 20px);

  height: 80px;

  line-height: 70px;

  padding: 5px 20px;

  background-color: var(--white);

  box-shadow: 0px 8px 25px 0px rgb(0, 0, 0, 0.26);

  display: flex;

  align-items: center;

  margin: 0 20px 20px 0;

  position: relative;

}

.reasons-choose-company-box::before {

  position: absolute;

  content: '';

  left: 0;

  right: 0;

  bottom: 0;

  height: 2px;

  background-color: var(--black);

  display: none;

}

.reasons-choose-company-box:hover:before {

  display: block;

}

.reasons-choose-company-box h6 {

  font-size: 16px;

  font-weight: 600;

  color: var(--black);

  margin-bottom: 0;

  padding-left: 15px;

}

.choose-image-box {

  position: relative;

  padding-left: 50px;

}

.choose-image-box img {

  width: 100%;

  position: relative;

  z-index: 2;

}

.choose-image-box .choose-image-shape {

  position: absolute;

  z-index: 1;

  top: 45px;

  left: 0;

  width: 270px;

  height: 450px;

  border: 10px solid var(--black);

}

.choose-image-box .choose-image-dots {

  position: absolute;

  left: -35px;

  bottom: 42px;

  z-index: 0;

}

.choose-image-box .choose-image-dots img {

  max-width: fit-content;

}



/* recent-work-section */

.recent-work-section {

  padding: 110px 0;

}

.recent-work-section .main-heading {

  padding-bottom: 50px;

}

.recent-work-section .main-heading span.banner-title {

  font-size: 16px;

  font-weight: 600;

  text-transform: uppercase;

  display: flex;

  align-items: center;

  padding-bottom: 10px;

}

.recent-work-section .main-heading span.banner-title svg {

  margin-right: 10px;

}

.recent-work-section .main-heading span.banner-title svg rect {

  fill: var(--black);

}

.recent-work-section .main-heading span.banner-title svg rect:first-child {

  stroke: var(--black);

  fill: var(--white);

}

.recent-work-section .main-heading h2 {

  margin-bottom: 0;

}

.slick-left-right-arrow {

  display: flex;

  justify-content: flex-end;

  padding-top: 12px;

}

.slick-left-right-arrow button {

  padding: 0;

  width: 50px;

  height: 50px;

  line-height: 48px;

  border-radius: 50%;

  text-align: center;

  background-color: transparent !important;

}

.slick-left-right-arrow button:hover {

  background-color: var(--black) !important;

}

.slick-left-right-arrow button svg {

  position: relative;

  top: -1px;

}

.slick-left-right-arrow button:hover svg path {

  fill: var(--white);

}

.slick-left-right-arrow button.next-btn {

  margin-left: 20px;

}

.slick-left-right-arrow button.next-btn svg {

  transform: rotate(180deg);

}

.recent-work-slider .slick-list {

  padding: 0 345px;

}

.recent-work-item {

  padding: 0 15px;

}

.recent-work-box {

  position: relative;

}

.recent-work-box img {

  width: 100%;

  height: 100%;

  min-height: 450px;

  object-fit: cover;

}

.recent-work-box:hover .recent-work-content {

  display: flex;

}

.recent-work-content {

  padding: 30px;

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  display: none;

}

.recent-work-product-name {

  width: 100%;

  padding: 20px 25px;

  background-color: var(--white);

  position: relative;

}

.recent-work-product-name::before {

  position: absolute;

  top: 0;

  right: -40px;

  content: '';

  width: 0;

  height: 0;

  border-bottom: 92px solid #fff;

  border-right: 40px solid transparent;

}

.recent-work-product-name span {

  font-size: 16px;

  font-weight: 500;

  font-family: 'Roboto';

  padding-bottom: 5px;

}

.recent-work-product-name h5 {

  font-size: 22px;

  font-weight: 600;

  color: var(--black);

  text-transform: uppercase;

  font-family: 'Inter';

  margin-bottom: 0;

}

.recent-work-product-arrow {

  margin-left: 60px;

  min-width: 75px;

  max-width: 75px;

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  background-color: var(--black);

}

.recent-work-product-arrow::before {

  position: absolute;

  top: 0;

  left: -40px;

  content: '';

  width: 0;

  height: 0;

  border-top: 92px solid #000;

  border-left: 40px solid transparent;

}

.recent-work-product-arrow a {

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

}

.recent-work-product-arrow svg {

  position: relative;

  left: -10px;

}



/* FAQ-Section */

.faq-section {

  padding: 120px 0;

  background-color: var(--black);

}

.faq-content {

  padding-right: 50px;

}

.faq-content .main-heading {

  margin-bottom: 30px;

}

.faq-content .main-heading span.banner-title {

  font-size: 16px;

  color: var(--white);

  font-weight: 600;

  display: flex;

  align-items: center;

  display: block;

  padding-bottom: 5px;

}

.faq-content .main-heading span.banner-title svg {

  margin-right: 8px;

}

.faq-content .main-heading h2 {

  color: var(--white);

  margin-bottom: 0;

}

.faq-content .card {

  border: 0;

  border-radius: 0;

  margin-bottom: 12px;

}

.card-header {

  padding: 0;

  border: 0;

  background-color: var(--white);

}

.card-header a {

  font-size: 20px;

  font-weight: 500;

  color: var(--black);

  padding: 25px 30px;

  line-height: 30px;

  width: 100%;

  font-family: 'Inter';

  display: inline-block;

  position: relative;

}

.card-header a::before {

  content: "\f101";

  font-size: 16px;

  color: #787878;

  font-family: 'fontawesome';

  position: absolute;

  top: 26px;

  right: 32px;

  transform: rotate(90deg);

}

.card-header a.collapsed::before {

  transform: rotate(0deg);

}

.card-body {

  padding: 0 30px 20px 30px;

}

.card-body p {

  margin-bottom: 0;

}

.faq-image-box {

  position: relative;

}

.faq-image-box img {

  max-width: 100%;

}

.faq-image-box img.faq-image-one {

  width: 100%;

}

.faq-image-box img.faq-image-two {

  width: calc(100% - 90px);

  position: absolute;

  top: 45px;

  left: 45px;

}



/* blog-section */

.blog-section {

  padding: 120px 0;

}

.blog-section .container {

  max-width: 1200px;

}

.blog-section .main-heading {

  margin-bottom: 50px;

}

.blog-section .main-heading h2 {

  margin-bottom: 0;

}

.blog-section .main-heading span.banner-title {

  font-size: 16px;

  font-weight: 600;

  text-transform: uppercase;

  display: flex;

  align-items: center;

  padding-bottom: 10px;

}

.blog-section .main-heading span.banner-title svg {

  margin-right: 10px;

}

.blog-section .main-heading span.banner-title svg rect {

  fill: var(--black);

}

.blog-section .main-heading span.banner-title svg rect:first-child {

  stroke: var(--black);

  fill: var(--white);

}

.blog-section .view-all-btn .btn {

  height: 56px;

  line-height: 56px;

  color: var(--white) !important;

  background-color: var(--black) !important;



}

.blog-section .view-all-btn .btn span {

  border-left: 1px solid var(--white);

}

.blog-section .view-all-btn .btn svg path {

  fill: var(--white) !important;

}

.blog-box {

  width: 100%;

}

.blog-box .blog-image {

  width: 100%;

}

.blog-box .blog-image img {

  width: 100%;

  height: 100%;

  min-height: 260px;

  object-fit: cover;

  max-height: 260px;

}

.blog-box .blog-content {

  box-shadow: 0px 4px 25px 0px rgb(227 227 227 / 80%);

  padding: 10px 30px 30px 30px;

}

.blog-box .blog-content .date-list {

  display: flex;

  padding: 20px 0;

  margin-bottom: 15px;

  border-bottom: 1px solid #ececec;

  gap: 20px;

}

.blog-box .blog-content .date-list li {

  font-size: 14px;

  font-family: 'Roboto';

  font-weight: 400;

  color: #787878;

  display: flex;

  align-items: center;

  line-height: 22px;

  margin-bottom: 0;

  padding-left: 30px;

  position: relative;

}

.blog-box .blog-content .date-list li:after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 20px;

  height: 20px;

  background-size: cover;

  background-repeat: no-repeat;

}

.blog-box .blog-content .date-list li.admin_icon:after {

  background-image: url(../images/admin-icon.svg);

}

.blog-box .blog-content .date-list li.date_icon:after {

  background-image: url(../images/date-icon.svg);

}



.blog-box .blog-content .date-list li:last-child {

  margin-right: 0;

}

.blog-box .blog-content .date-list li svg {

  margin-right: 10px;

}

.blog-box .blog-content h4 {

  font-size: 22px;

  font-weight: 600;

  line-height: 30px;

  margin-bottom: 25px;

}

.blog-box .blog-content .btn {

  font-weight: 500;

  height: 48px;

  line-height: 46px;

  border: 1px solid #ececec;

  color: var(--black) !important;

  background-color: transparent !important;

  transition: all 0.5s;

}

.blog-box .blog-content .btn span {

  border-left: 1px solid var(--black);

  transition: all 0.5s;

}

.blog-box .blog-content .btn span svg path {

  fill: var(--black);

  transition: all 0.5s;

}

.blog-box .blog-content .btn:hover {

  color: var(--white) !important;

  background-color: var(--black) !important;

}

.blog-box .blog-content .btn:hover span {

  border-left: 1px solid var(--white);

}

.blog-box .blog-content .btn:hover span svg path {

  fill: var(--white);

}



/* footer-bg */

.footer-bg {

  padding: 80px 0 0 0;

  background-color: var(--black);

}

.footer-top {

  padding-bottom: 40px;

}

.footer-box img {

  max-width: 100%;

  margin-bottom: 25px;
	
width: 65%;
}

.footer-box p {

  color: #cccccc;

  margin-bottom: 40px;

}

.footer-box .socials {

  display: flex;

}

.footer-box .socials li {

  margin-right: 10px;

  margin-bottom: 0;

}

.footer-box .socials li a {

  width: 36px;

  height: 36px;

  line-height: 36px;

  display: inline-block;

  text-align: center;

  border: 1px solid #2d2c2b;

  transition: all 0.5s;

}

.footer-box .socials li a svg {

  font-size: 16px;

  color: #cccccc;

  transition: all 0.5s;

}

.footer-box .socials li a:hover {

  border-color: var(--white);

  background-color: var(--white);

}

.footer-box .socials li a:hover svg {

  color: var(--black);

}

.footer-box h4 {

  font-size: 24px;

  color: var(--white);

  line-height: 32px;

  margin-bottom: 30px;

}

.footer-box ul.footer-nav li {

  margin-bottom: 18px;

  position: relative;

  padding-left: 24px;

}

.footer-box ul.footer-nav li:after {

  content: '';

  position: absolute;

  top: 5px;

  left: 0;

  width: 16px;

  height: 16px;

  background: url(../images/arrow-menu.svg) no-repeat;

  background-size: cover;

}

.footer-box ul.footer-nav li a {

  font-size: 16px;

  color: #cccccc;

  text-transform: capitalize;

}

.footer-box ul.footer-nav li svg {

  margin-right: 7px;

}

.footer-box ul.contact-list li {

  display: flex;

  margin-bottom: 20px;

}

.footer-box ul.contact-list .content {

  padding-left: 20px;

}

.footer-box ul.contact-list .content strong {

  font-size: 16px;

  font-weight: 700;

  font-family: 'Roboto';

  color: var(--white);

  display: block;

  padding-bottom: 10px;

}

.footer-box ul.contact-list .content p {

  font-size: 16px;

  font-weight: 400;

  line-height: 28px;

  margin-bottom: 0;

}

.footer-box ul.contact-list .content p a {

  color: #cccccc;

}

.copy-right-bg {

  padding: 22px 0;

  border-top: 1px solid #333333;

  background-color: var(--black);

}

.copy-right-text p {

  font-size: 16px;

  color: var(--white);

  line-height: 22px;

  margin-bottom: 0;

}

.terms-conditions ul {

  display: flex;

  justify-content: flex-end;

}

.terms-conditions ul li {

  margin-left: 30px;

  margin-bottom: 0;

}

.terms-conditions ul li:first-child {

  margin-left: 0;

}

.terms-conditions ul li a {

  font-size: 16px;

  color: var(--white);

  font-family: 'Roboto';

}



/*  */

.form-btn {

  position: relative;

}

.need-help-section .form-btn .wpcf7-spinner {

  position: absolute;

  top: 50%;

  right: 20px;

  transform: translateY(-50%);

}

.need-help-section .wpcf7-response-output {

  color: #fff;

  font-size: 14px;

}

.wpcf7-not-valid-tip {

  font-size: 14px;

}

.need-help-section .form-group p {

  margin-bottom: 0;

}

.inner-banner {
  padding: 100px 0 70px;
  background-size: cover;
}

.inner-banner .breadcrumb {

  justify-content: center;

}

.inner-banner .breadcrumb svg {

  padding: 0 5px;

}

.section-serdetail img.attachment-post-thumbnail,

.blog-detail img.attachment-post-thumbnail,

.section-prjdetail img.attachment-post-thumbnail {

  width: 100%;

  height: auto;

  margin-bottom: 20px;

}

.contact-section {

  padding: 100px 0 80px;

}

.contact-section img {

  margin: 0 auto;

  display: block;

}

.contact-section h2 {

  text-transform: capitalize;

}

.recent-work-project {

  padding: 100px 0 80px;

}

.recent-work-project .recent-work-product-name h5 {

  font-size: 18px;

}

.section-registration {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.section-partners {
  padding: 80px 0;
}

.registration_logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: center;
}

.registration_logos .reg_logo img{
  max-width: 250px;
  margin: 0 auto;
  display: block;
}
.section-partners .main-heading{
  margin-bottom: 40px;
}
.section-partners .main-heading h2{
  margin-bottom: 0;
}
.partners_logos .slick-track{
  display: flex;
  align-items: center;
}
.partners_logos .prt_logo{
  padding: 0 15px;
}
.partners_logos .prt_logo img{
  max-width: 100%;
}
/* .partners_logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: center;
} */
.section-services-boxes {
  padding: 80px 0;
  background-color: #f8f8f8;
}
.section-serdetail .content {
  padding-left: 50px;
}
.section-card-boxes {
  padding-bottom: 100px;
}
.card-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.card-boxes .item {
    box-shadow: 0px 4px 25px 0px rgb(227 227 227 / 80%);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}
.single .site-main section ul,
.about-content-box ul {
  list-style: disc;
  padding-left: 20px;
}
.single .site-main section ul li,
.about-content-box ul li {
  color: #787878;
}
.related-services .services-box {
   box-shadow: 0px 4px 25px 0px rgb(227 227 227 / 80%);
}
.section-extracontent,
.section-leftright,
.section-serdetail,
.related-services {
  padding: 80px 0;
}
.section-extracontent .extra-box {
  max-width: 1000px;
  padding: 60px 60px 40px 60px;
  box-shadow: 0px 4px 25px 0px rgb(227 227 227 / 80%);
  margin: 0 auto;
  border-radius: 10px;
}
.section-serdetail + .section-extracontent{
  padding-top: 0 !important;
}
.related-services {
  background-color: #f8f8f8;
}
.section-leftright img {
  width: 100%;
}
.section-leftright .right-img img {
  padding-left: 50px;
}
.section-leftright .flex-row-reverse img {
  padding-right: 50px;
}
.section-extracontent + .section-leftright {
  padding-top: 0;
}
.about-section + .section-extracontent {
  padding-top: 0;
}
.section-leftright + .recent-work-section {
  padding-top: 0;
}
.coming-soon-section{
  padding: 80px 0;
}
.coming-soon-content{
  text-align: center;
}
.coming-soon-content .btn.btn-primary{
  padding: 0 25px;
  line-height: 50px;
}