/*
==========================
Author: Encyclomedia team
Main Colors:
001d5c
00aece
2964b4
1a1e22
==========================
*/
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");

@font-face {
  font-family: kufi;
  src: url(../font/kufi.ttf);
}

@font-face {
  font-family: bkufi;
  src: url(../font/kufi-bold.ttf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", "kufi";
}

:root {
  --dark-color: #001d5c;
  --light-color: #00aece;
  --main-color: #2964b4;
  --black-color: #1a1e22;
}

.App {
  font-family: "poppins", "kufi";
  overflow-x: hidden !important;
  position: relative;
  margin: auto;
}

.en {
  text-align: left;
}

p,
li,
a,
i {
  font-size: 16px;
  font-family: "poppins", "kufi";
}

.loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: 100 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: none;
}

.main-header {
  font-family: "bkufi", 'poppins';
  color: var(--light-color);
  position: relative;
  font-size: 25px;
}

.main-header span {
  color: var(--black-color);
}

@media (max-width: 574px) {
  .main-header {
    font-size: 20px;
  }
}

span.bold,
.btn {
  font-weight: 500 !important;
}

.main-btn {
  border-radius: 50px !important;
  padding: 13px !important;
  width: 180px;
  border: 3px solid #2964b4 !important;
  color: #2964b4 !important;
  margin: auto;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.main-btn:hover {
  background-color: #2964b4 !important;
  color: #fff !important;
}

/* BACK TO TOP BUTTON*/
#back-to-top {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #00aece !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

#back-to-top:hover .icon {
  top: 30%;
}

#back-to-top .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  transition: all 0.5s ease-out;
}

/* NAVBAR SECTION*/
li.social-media {
  list-style-type: none;
}

li.social-media ul {
  padding: 0;
}

li.social-media ul li {
  list-style-type: none;
}

li.social-media ul a {
  position: relative;
  padding: 10px 15px;
  bottom: 4px;
  font-size: 15px;
  color: #fff;
  background-color: #00aece;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* li.social-media ul a i{
} */
li.social-media ul a:hover {
  background-color: rgba(0, 174, 206, 0.61);
}

.opening-hour {
  color: #1a1a1a;
  font-size: 15px;
  list-style-type: none;
}

.opening-hour i {
  font-size: 16px;
  color: #00aece;
  margin-right: 10px;
}

.navbar-1 {
  background-color: var(--dark-color);
  color: #fff;
}

.navbar-1 .row,
.navbar-2 .container-fluid {
  max-width: 2000px;
  margin: auto;
}

.navbar-1 small {
  color: #fff !important;
}


/* SECOND NAVBAR STARTS HERE */
.navbar-2 {
  background-color: #fcfcfc;
}

.navbar-2 .navbar-brand {
  position: relative;
}

.navbar-2 .nav-item {
  margin-left: 20px;
}

.navbar-2 .nav-link {
  position: relative;
  color: var(--black-color);
}

.navbar-2 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--light-color);
  -webkit-transition: all 0.2s ease !important;
  -moz-transition: all 0.2s ease !important;
  -ms-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}

.navbar-2 .nav-link:hover {
  color: #333;
}

.navbar-2 .nav-link:hover::before {
  width: 100%;
}

.navbar-2 .active {
  color: #00aece !important;
}

.navbar-2 .active:hover {
  color: #00aece;
}

.english-btn {
  background-color: var(--light-color);
  color: #fff !important;
  border: none;
  cursor: pointer;
}

.btn:focus, .english-btn:focus {
  outline: none !important;
}

.english-btn:hover {
  color: #fff !important;
  background-color: var(--black-color);
}

.navbar-2 .toggler {
  display: none;
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}

@media(min-width: 867px) {
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}

@media(max-width: 867px) {
  .navbar-2 ul {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    padding-top: 33px;
    background-color: var(--black-color);
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 100;
    -webkit-transition: all 0.4s ease-in-out !important;
    -moz-transition: all 0.4s ease-in-out !important;
    -ms-transition: all 0.4s ease-in-out !important;
    -o-transition: all 0.4s ease-in-out !important;
    transition: all 0.4s ease-in-out !important;
  }

  .navbar-2 ul.toggled {
    left: 0;
  }

  .navbar-2 ul .nav-link {
    color: #fff;
    margin-top: 20px;
    padding: 10px;
  }

  .navbar-2 ul .bxs.menu {
    display: block;
  }

  .navbar-2 .toggler {
    display: block;
  }
}

/* SLIDER SECTION */
.slick-slide div {
  height: 100vh;
}

.slide {
  position: relative;
}

.slide .img {
  height: 100vh;
}

.slide .img-1 {
  background: linear-gradient(90deg, rgba(0, 29, 92, 0.5) 100%, #000 0%), url('../images/giad-bg7.jpg');
  background-size: cover;
  background-position: center center;
}

.slide .img-2 {
  background: linear-gradient(90deg, rgba(0, 29, 92, 0.5) 100%, #000 0%), url('../images/giad-bg8.jpg');
  background-size: cover;
  background-position: center center;
}

.slide .caption {
  position: absolute;
  top: 50%;
  left: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(0%, -50%);
  background-color: rgba(0, 29, 92, 0.6);
  min-width: 300px;
  height: 100%;
  padding: 20px;
  opacity: 0;
  z-index: 1;
}

.slide .caption-bg {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(26, 26, 26);
  z-index: -1;
}

.slide .caption h2 {
  position: relative;
  color: #fff;
  opacity: 0;
  top: -70px;
  font-size: 25px;
  margin-bottom: 10px;
}

.slide .btn-outline-light:hover {
  font-weight: 600 !important;
}

.caption-btn {
  opacity: 0;
}

.slide .caption p {
  position: relative;
  color: rgb(227, 227, 227);
  opacity: 0;
  right: -60px;
}

.slick-prev {
  right: calc(100% - 30px) !important;
  z-index: 1;
}
.slick-next {
  left: calc(100% - 40px) !important;
  z-index: 1;
}

[dir=rtl] .slick-next:before {
  content: '→' !important;
}

.slick-prev:before {
  content: '←' !important;
}

.slick-next:before, .slick-prev:before {
  font-size: 30px !important;
  line-height: 1;
  opacity: .3 !important;
}
.slick-prev:hover:before,
.slick-prev:active:before,
.slick-next:hover:before,
.slick-next:active:before
{
  opacity: 1 !important;
}

.color {
  background-color: #001d5c !important;
}

.slide-animation {
  animation: slide 0.7s ease-in-out forwards;
}

.bg {
  animation: bg 1s 0.6s ease-in-out forwards;
}

.title {
  animation: title 1.2s 1.4s ease-in-out forwards;
}

.text {
  animation: text 1.2s 2s ease-in-out forwards;
}

.btn-animation {
  animation: btn 1s 2.5s ease-in-out forwards;
}

@keyframes slide {
  from {
    left: 0%;
    opacity: 0;
  }

  to {
    left: 10%;
    opacity: 1;
  }
}

@keyframes bg {
  from {
    height: 0%;
  }

  to {
    height: 100%;
  }
}

@keyframes title {
  from {
    top: -70px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes text {
  from {
    right: -60px;
    opacity: 0;
  }

  to {
    right: 0;
    opacity: 1;
  }
}

@keyframes btn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media(max-width: 768px) {
  .slide .caption {
    bottom: 0%;
    left: 0%;
    height: 200px;
    width: 100%;
  }

  .slide .caption h2 {
    font-size: 25px;
  }

  .slide img {
    min-width: 150%;
  }

  @keyframes slide {
    from {
      top: 0%;
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

/* ABOUTUS SECTION */
.aboutus-section {
  background-color: #eee;
}

.aboutus-section .row {
  max-width: 1920px;
  padding: 0;
}

.aboutus-section p {
  word-spacing: 5px;
  line-height: 30px;
}

.aboutus-section .aboutus-img {
  position: relative;
  width: 100%;
}

.aboutus-section .aboutus-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.aboutus-section .aboutus-img .video-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  pointer-events: none;
}

.aboutus-section .aboutus-img .video-icon:hover {
  filter: grayscale(100%);
  background-color: rgba(0, 0, 0, 0.222);
}

.aboutus-section .aboutus-img .video-icon i {
  font-size: 70px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease !important;
}

.aboutus-section .aboutus-img .video-icon i {
  font-size: 50px;
}

.aboutus-section p.extra-info {
  display: none;
}

/* Modal Area*/
.modal {
  padding: 0 !important;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-dialog {
  margin: 30px auto;
  max-width: 900px !important;
}

.modal-content {
  background-color: transparent !important;
  border: 0 !important;
  margin: auto;
  text-align: center;
  padding: 0 !important;
  width: 80% !important;
  margin-top: 130px;
}

.modal-body {
  position: relative;
  padding: 0 !important;
}

.close {
  position: absolute;
  right: -50px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  background-color: #fff !important;
  padding: 7px 10px !important;
  opacity: 1;
}

@media (max-width: 500px) {
  .modal-content {
    width: 100% !important;
  }

  .modal-dialog {
    margin: 0 !important;
  }
}

/* SERVICES SECTON STARTS HERE 00ccfd*/
.services-section {
  /* background-color: rgb(246, 249, 254); */
  background-color: #eeeeee;
}

.services-card {
  position: relative;
  background-color: var(--dark-color) !important;
  max-width: 450px;
  min-height: 180px;
  border: 0 !important;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1;
}

.services-card .bg-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 90px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.1);
}

.services-card:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  background-color: var(--black-color);
  -webkit-transition: all 0.4s ease !important;
  -moz-transition: all 0.4s ease !important;
  -ms-transition: all 0.4s ease !important;
  -o-transition: all 0.4s ease !important;
  transition: all 0.4s ease !important;
  z-index: -1;
}

.services-card:hover:before {
  height: 100%;
}

.services-card:hover .card-icon {
  background-color: var(--black-color) !important;
}

.services-card:hover .card-title {
  color: #fff !important;
}

.services-card:hover .card-text {
  color: rgb(235, 235, 235);
}

.services-section .card-body {
  padding-top: 50px;
}

.services-section .services-card .card-title {
  color: #fff;
  font-family: 'poppins', 'bkufi';
  transition: color 0.5s;
  font-size: 18px;
}

.services-section .services-card .card-title .card-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.services-section .services-card .card-title .card-icon i {
  color: #fff;
  font-size: 25px;
}

.services-section .services-card .card-text {
  text-align: center;
  color: rgb(235, 235, 235);
}

/*------------------- 5.12 Progress -------------------*/
.progress-wrap-layout1 {
  margin: auto;
  background: linear-gradient(-90deg,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.7) 50%),
    url("../images/workers2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .progress-wrap-layout1 {
    background-size: cover;
  }
}

.progress-box-layout1 {
  background-color: rgba(0, 174, 206, 0.62);
  padding: 5.5rem 7rem 6.5rem;
  height: 500px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .progress-box-layout1 {
    padding: 3rem 3rem 6rem;
  }
}

@media only screen and (max-width: 575px) {
  .progress-box-layout1 {
    padding: 3rem 3rem 0;
  }
}

.progress-box-layout1 .item-title {
  color: #fff;
  font-family: 'kufi', 'poppins';
  font-size: 25px;
}

/*------------------- 5.18 Why Choose Us -------------------*/
.whygiad-section {
  position: relative;
  background-color: #eeeeee;
}

.why-choose-box-layout2 {
  background-color: var(--dark-color);
  padding: 6rem 2rem 1rem;
  min-height: 380px;
  text-align: center;
  -webkit-transition: all 0.5s ease-out !important;
  -moz-transition: all 0.5s ease-out !important;
  -ms-transition: all 0.5s ease-out !important;
  -o-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  cursor: pointer;
}

.why-choose-box-layout2 .item-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #2964b4;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.why-choose-box-layout2 .item-icon i {
  font-size: 25px;
}

.why-choose-box-layout2 .item-content .item-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

.why-choose-box-layout2 .item-content p {
  color: #e3e3e3;
}

.why-choose-box-layout2:hover {
  transform: translateY(-10px) !important;
  background-color: #00aece;
}

.why-choose-box-layout2:hover .item-icon {
  background-color: var(--black-color);
  color: #00aece;
}

@media only screen and (max-width: 1199px) {
  .why-choose-box-layout2 .item-content .item-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-box-layout2 .item-content .item-title {
    font-size: 20px;
  }
}

/* Bannar Section Starts Here */
.bannar-section{
  height: 500px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 29, 92, 0.9)),
    url(../images/manager.png);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.bannar-section .bannar-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bannar-section i{
  color: #fff;
  font-size: 60px;
}

.bannar-section h2 {
  color: #fff;
  font-size: 28px;
}

.bannar-section .iso {
  display: flex;
}

.bannar-section p {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.689);
  border: 2px solid #00aece;
  font-size: 13px;
  color: #1a1a1a;
  padding: 5px;
}

.certifs{
  /* background: linear-gradient(90deg, #001d5c 80%, #1a1a1a) !important; */
  background-color: #00aece;
}

.certifs .slick-slide div{
  height: auto;
}

.ant-image-preview-switch-left, .ant-image-preview-switch-right {
}

.ant-image-preview-switch-left {
  left: 10px !important;
  right: unset !important;
}


/*------------------- 5.17 Testimonial -------------------*/

/* FAQ */
.service-faq {
  max-width: 1920px;
  background-color: #eeeeee;
  margin: auto;
  padding: 5rem;
}

.service-faq .item-title {
  font-size: 20px !important;
}

@media only screen and (max-width: 575px) {
  .service-faq {
    padding: 0rem !important;
  }
}

.service-faq .faq-box {
  margin-top: 30px;
}

.service-faq .faq-box .accordion .card {
  border: none;
  margin-bottom: 2px;
  border-radius: 0;
  margin-bottom: 5px;
}

.service-faq .faq-box .accordion .card .card-header {
  border: none;
  padding: 0;
  border-radius: 0;
}

.service-faq .faq-box .accordion .card .card-header .heading-title {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 0;
  padding: 22px 50px 18px 25px;
  font-size: 18px;
  color: #ffffff;
  background-color: #2964b4;
}

.en .service-faq .faq-box .accordion .card .card-header .heading-title {
  text-align: left;
  padding: 22px 25px 18px 50px;
}

.service-faq .faq-box .accordion .card .card-header .heading-title:before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 10px;
  position: absolute;
  top: 33px;
  right: 25px;
  transform: translateY(-50%);
}

.en .service-faq .faq-box .accordion .card .card-header .heading-title:before {
  content: "\f105" !important;
  right: calc(100% - 40px);

  margin-right: 10px;
}

.service-faq .faq-box .accordion .card .card-header .heading-title.collapsed {
  background-color: #f8f8f8;
  color: #444444;
}

.collapsed {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.service-faq .faq-box .accordion .card .card-header .heading-title.collapsed:before {
  content: "\f104";
  color: #287ff9;
}

.service-faq .faq-box .accordion .card .card-body {
  position: relative;
  padding: 25px 50px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.en .service-faq .faq-box .accordion .card .card-body {
  text-align: left;
}

/* .service-faq .faq-box .accordion .card .card-body:after {
  content: "";
  height: 80%;
  width: 2px;
  background-color: #e4eaf2;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
} */
.en .service-faq .faq-box .accordion .card .card-body:after {
  right: calc(100% - 25px);
}

/* Agents bannar starts here */
.agents-bannar {
  background-color: #1a1e22;
  padding: 20px 50px 0;
}

.agents-bannar .row {
  max-width: 1920px;
  margin: auto;
}

.agents-bannar h4 {
  color: #fff;
  font-size: 25px;
}

.agents-bannar .btn {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  width: 160px;
  padding: 10px;
  font-weight: 700 !important;
}

.agents-bannar .btn:hover {
  background-color: #fff;
}

@media (max-width: 560px) {
  .agents-bannar {
    margin: auto;
    text-align: center;
    padding: 0;
  }

  .agents-bannar .btn {
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 50px;
  }
}

/* CONTACT US SECTION */
.contactus-section {
  margin: auto;
  background-color: #eeeeee;
}

.contactus-section .form-control {
  border-radius: 0;
  padding: 20px;
  border: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e3e3e3;
  background-color: transparent;
}

.contactus-section .form-control:focus,
.contactus-section .form-control:active {
  border-bottom: 2px solid #2289af;
  background-color: transparent;
}

.contactus-section .btn {
  border-radius: 20px;
  width: 140px;
  padding: 10px;
  border: 0;
  background-color: #265f98;
  color: #fff;
  margin: auto;
}

.contactus-section .btn:hover {
  background-color: #1a1e22;
  color: #fff;
}

.contactus-section label span {
  color: rgb(219, 58, 58);
  font-size: 20px;
}
.contactus-section label{
  margin: 0;
}

.contactus-section form {
  margin: auto;
  width: 100%;
  padding: 0 70px;
}

.contactus-section form input:focus,
.contactus-section form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

@media (max-width: 500px) {
  .contactus-section form {
    padding: 0 50px;
  }
}

@media (max-width: 400px) {
  .contactus-section form {
    padding: 0 20px;
  }
}

/* FOOTER STYLE */

.upper-footer {
  background-color: #113c67;
  padding: 100px !important;
  position: relative;
}

.upper-footer .row {
  max-width: 1920px;
}

.upper-footer .row .col-lg-4 {
  text-align: right;
}

.en .upper-footer .row .col-lg-4 {
  text-align: left;
}

.upper-footer p,
.upper-footer a,
.upper-footer .opening-hour {
  color: #c1c0c0;
}

.upper-footer a:hover {
  color: #fff;
}

.upper-footer h2 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
}

.upper-footer .giad-shortcut {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.upper-footer .privacy-policy a {
  color: #fff;
  text-decoration: underline;
}

.upper-footer .btn,
.aboutus-section .btn,
.bannar-caption .btn {
  border-radius: 0;
  width: 140px;
  padding: 15px;
  width: 200px;
  border: 0;
  background-color: #00aece;
  color: #fff;
  margin: auto;
  overflow: hidden;
}

.upper-footer .btn:hover,
.aboutus-section .btn:hover,
.bannar-caption .btn:hover {
  background-color: #1a1e22;
}

@media (max-width: 575px) {
  .upper-footer .row .col-lg-4 {
    text-align: center;
    margin: auto;
  }
}

footer {
  margin: auto;
  background-color: #1a1e22;
  padding: 20px;
  padding-top: 30px;
}

footer .row {
  max-width: 1920px;
  margin: auto;
}

footer p,
footer a {
  font-size: 15px;
  margin: 0;
  color: #ffffff;
}

footer a:hover {
  color: #ffffff;
}

@media (max-width: 990px) {
  footer p {
    border-bottom: 1px solid #242424;
    padding-bottom: 10px;
  }
}

@media (max-width: 770px) {
  .upper-footer {
    padding: 10px !important;
    padding-top: 50px !important;
  }
}

/* CONTACT US PAGE */
/*-------------------------------------
	1. inner page banner 
-------------------------------------*/
.wt-bnr-inr {
  background-size: cover;
  color: #001d5c;
  background-image: linear-gradient(90deg, rgba(0, 29, 92, 0.4) 50%, rgba(0, 29, 92, 0.4) 50%), url(../images/hyundai.png);
  background-position: center top;
}

@media (max-width: 837px) {
  .wt-bnr-inr {
    background-size: 849px;
  }
}

.wt-bnr-inr-entry {
  display: flex;
  justify-content: space-between;
  height: 250px;
  align-items: center;
}

.wt-bnr-inr-entry .banner-title-outer {
  position: relative;
}

.wt-bnr-inr-entry .banner-title-outer .banner-title-name {
  display: inline-block;
  margin-bottom: 15px;
}

.wt-bnr-inr-entry .banner-title-outer h2 {
  font-size: 50px;
  line-height: 60px;
  position: relative;
  margin-bottom: 0px;
  color: #fff;
}

.wt-bnr-inr-entry .banner-title-outer i {
  font-size: 50px;
  margin: 0 5px;
}

@media only screen and (max-width: 991px) {
  .wt-bnr-inr-entry {
    display: table-cell;
    vertical-align: middle;
  }
}

@media only screen and (max-width: 991px) {

  .wt-bnr-inr-entry .banner-title-name h1,
  .wt-bnr-inr-entry .banner-title-name h2,
  .wt-bnr-inr-entry .banner-title-name h3 {
    font-size: 50px;
    line-height: normal;
  }
}

@media only screen and (max-width: 540px) {

  .wt-bnr-inr-entry .banner-title-name h1,
  .wt-bnr-inr-entry .banner-title-name h2,
  .wt-bnr-inr-entry .banner-title-name h3 {
    font-size: 36px;
  }

  .wt-bnr-inr-entry .banner-title-outer i {
    font-size: 36px;
  }
}

/*13.1 breadcrumb-row-1*/
.wt-breadcrumb {
  margin: 0;
  list-style: none;
}

.wt-breadcrumb li {
  padding: 0px;
  margin-left: 20px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}

.wt-breadcrumb li a {
  color: #fff;
}

.wt-breadcrumb li a:hover {
  color: #00aece;
}

.wt-breadcrumb li:last-child {
  color: #00aece;
  margin-left: 15px;
}

.wt-breadcrumb li:first-child a i {
  font-size: 18px;
  vertical-align: text-top;
}

.wt-breadcrumb li:last-child:after {
  display: none;
}

/*13.2 Breadcrumb-1*/

.breadcrumb-style-2 li:after {
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 16px;
  margin-left: 2px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.en .breadcrumb-style-2 li {
  margin: 0 10px;
}

.en .breadcrumb-style-2 li:after {
  content: "\f101";
  left: 50px;
}

/*====Button Effect====*/

.btn-effect {
  color: rgba(0, 0, 0, 0) !important;
  transition: all 0.3s ease !important;
  text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
}

.btn-effect:hover {
  text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

/* About us Page */
.another-about-section {
  background: linear-gradient(-90deg,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.6) 50%),
    url(../images/another-about.png);
  background-position: center;
  background-size: cover;
  padding-top: 100px;
}

@media (max-width: 448px) {
  .another-about-section {
    background-position: -900px center;
  }
}

@media (max-width: 365px) {
  .another-about-section {
    background-position: -1100px center;
  }
}

.another-about-section .about-card {
  background-color: hsla(0, 0%, 0%, 0.4);
  width: 100%;
  height: 100%;
  padding: 10px;
}

.another-about-section .about-card:hover {
  background-color: hsla(189, 100%, 40%, 0.4);
}

.another-about-section .about-card:hover .fa-check-circle {
  color: #fff;
}

.another-about-section h2 {
  font-size: 20px;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.another-about-section li {
  list-style: none;
}

.another-about-section li,
.another-about-section p {
  color: #fff;
}

.another-about-section .fa-check-circle {
  font-size: 25px;
  color: #00aece;
}

/* .another-about-section .row div:hover .fa-check-circle {
  color: #1a1e22;
} */

.contact-methods {
  padding: 70px;
  background-color: var(--black-color);
  margin: auto;
}

.contact-methods h4 {
  color: #ffffff;
  font-size: 20px;
}

.contact-methods p {
  color: #cbcbcb;
}

.contact-methods a:hover {
  color: #fff;
}

.contact-methods i {
  color: #2964b4;
  background-color: #fff;
  padding: 10px;
  border-radius: 100%;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 25px;
}

.contact-methods a:hover i {
  color: #00aece;
}

@media (max-width: 991px) {
  .contact-methods {
    margin: auto;
  }
}

@media (max-width: 380px) {
  .contact-methods {
    padding: 40px 0;
  }
}

/* SERVICES CENTER PAGE */
.services-centers-section {
  background-color: #eee;
  padding: 0 30px;
}

.services-centers-section table thead {
  background-color: #244791;
  color: #fff;
  border-bottom: 0 !important;
}

.services-centers-section table td {
  color: #333;
}

.services-centers-section table tbody {
  margin-top: 0 !important;
  border: 0 !important;
}

@media (max-width: 650px) {
  .services-centers-section {
    padding: 0;
  }
}

/* PRODUCTS PAGE */
/* PRODUCTS PAGE */
.products{
  background-color: #eee;
}

.products-section {
  max-width: 1920px;
  margin: auto;
}

.products-section .side-header {
  background-color: #2964b4;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding: 5px;
}

.products-section .products-card {
  position: relative;
  overflow: hidden;
  max-width: 350px;
  border: 0;
  margin: auto;
  background: transparent;
  /* box-shadow: 0 0 8px rgb(0, 0, 0, 0.2); */
}

.products-section .products-card .inner-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 30, 34, 0.95);
  color: #fff;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  display: none;
  cursor: pointer;
}

.products-section .products-card .inner-info h4 {
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid;
}

.products-section .inner-info li {
  font-size: 15px;
  list-style-type: none;
}

.products-section .inner-info p {
  font-size: 15px;
}

.products-card:hover .inner-info {
  display: block;
}

.products-section .products-card img.card-img-top {
  max-width: 140px;
}

.products-section .products-card .card-body {
  padding: 0;
}

.products-section .products-card .card-title {
  background-color: #1a1e22;
  color: #ffffff;
  transition: color 0.5s;
  font-size: 14px;
  padding: 5px;
  margin: 0;
}

.products-section .products-card .card-text {
  font-size: 16px;
  width: 100%;
}

.products-section .products-card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.products-section .filter-card {
  cursor: pointer;
}

.products-section .filter-card .card-img-top {
  min-height: 230px;
}

.products-section .filter-card:hover .card-title {
  background-color: #00aece;
}

/* 404 Section starts here */
.error-section-container {
  padding: 50px;
}

.error-section h2 {
  font-size: 40px;
  color: #606060;
  position: relative;
}

.error-section span.dot {
  width: 10px;
  height: 10px;
  margin: 10px;
  background-color: #00aece;
  border-radius: 100%;
  display: inline-block;
}

.error-section h1 {
  font-size: 60px;
  color: #00aece;
  border-bottom: 3px solid #00aece;
  width: 300px;
  margin: auto;
}

.error-section p {
  font-size: 30px;
  color: 606060;
}

@media (max-width: 500px) {
  .error-section h2 {
    font-size: 35px;
    color: #606060;
    position: relative;
  }

  .error-section span.dot {
    width: 10px;
    height: 10px;
    margin: 10px;
    background-color: #00aece;
    border-radius: 100%;
    display: inline-block;
  }

  .error-section h1 {
    font-size: 50px;
    color: #00aece;
    border-bottom: px solid #00aece;
    width: 170px;
    margin: auto;
  }

  .error-section p {
    font-size: 20px;
    color: 606060;
  }
}

.back-message {
  position: fixed;
  left: 0%;
  top: 50%;
  z-index: 10;
  width: 100%;
  height: 130px;
  padding: 40px;
  background-color: lightgreen;
  color: #fff;
  border-radius: 12px;
  animation: message-fade 7s ease-in-out forwards;
}

.back-message-anim {
  animation: message-fade 7s ease-in-out forwards;
}

@keyframes message-fade {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

.success {
  background-color: #59e559;
}

.failure {
  background-color: #e55959;
}