@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap");

/* body {
  font-family: 'Lato', sans-serif;
  color: #040000;
} */

/* ====================what next is new=================== */
body {
  font-family: 'Tajawal', sans-serif;
  /* font-weight: bold; */
  /* background-color: #f4f4f9; */
  margin: 20px;
  padding: 0;
  line-height: 1.8;
  /* direction: rtl; */
  /* Set text direction to right-to-left for Arabic */
}

.special {
  font-weight: bold;
  /* Make text bold */
  font-size: 1.5rem;
  /* Increase font size */
  color: #0063ff;
  /* Tomato color */
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  /* Add shadow */
  background: linear-gradient(45deg, #200dca, #2d7485);
  /* background: linear-gradient(45deg, #ff9a9e, #fad0c4); */
  -webkit-background-clip: text;
  /* Apply gradient to text */
  -webkit-text-fill-color: transparent;
  border: 2px dashed #0063ff;
  /* Add a dashed border */
  padding: 5px 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add hover effect */
}

.special:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 71, 0.6);
}

.special-small {
  font-weight: bold;
  /* Make text bold */
  font-size: 1.0rem;
  /* Increase font size */
  color: #0063ff;
  /* Tomato color */
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  /* Add shadow */
  background: linear-gradient(45deg, #2210c5, #2c8399);
  /* background: linear-gradient(45deg, #ff9a9e, #fad0c4); */
  -webkit-background-clip: text;
  /* Apply gradient to text */
  -webkit-text-fill-color: transparent;
  border: 2px dashed #0e4aaa;
  /* Add a dashed border */
  padding: 5px 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add hover effect */
}

.special-small:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 71, 0.6);
}

.support {
  display: inline-block;
  line-height: 1.2;
  /* Adjust the spacing */
  text-align: center;
  /* font-family: Arial, sans-serif; */
}

.detail-box {
  text-align: center;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  /* Semi-transparent background */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  /* Raised shadow */
  border-radius: 15px;
  backdrop-filter: blur(8px);
  /* Glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Subtle border */
}

.detail-box h1 {
  font-size: 2.5rem;
  /* Larger font size */
  color: #333;
  font-weight: bold;
  /* Bold heading */
  margin-bottom: 15px;
  line-height: 1.4;
}

.detail-box p {
  font-size: 1.4rem;
  /* Increase paragraph font size */
  color: #555;
  font-weight: 400;
  /* Regular weight for better readability */
  margin-bottom: 20px;
}

.detail-box a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  /* Larger button text */
  color: #ffffff;
  background-color: #007bff;
  /* Blue button */
  padding: 12px 25px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: bold;
  /* Bold button text */
}

.detail-box a:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
  transform: scale(1.05);
  /* Enlarge on hover */
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.download-buttons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-buttons a img {
  height: 30px;
  margin-left: 10px;
}

.google-play {
  background-color: #34a853;

}

.google-play:hover {
  background-color: #2a8642;
}

.apple-store {
  background-color: #333;
}

.apple-store:hover {
  background-color: #000;
}

/* ==================================Till here is new========================= */

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  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;
}

.heading_container h2 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-family: 'Merriweather Sans', sans-serif;
}

.heading_container p {
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: 'Merriweather Sans', sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/*header section*/
.hero_area {
  position: relative;
  background-color: #d1e3ff;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .header_top {
  padding: 15px 0;
  background-color: #000000;
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
}

.header_section .header_top .contact_nav a i {
  color: #ff8a1d;
}

.header_section .header_bottom {
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
}

.navbar-brand span {
  color: #0355cc;
  text-transform: uppercase;
}

/* Styling for the logo */
.logo {
  height: 75px;
  /* Adjust height as needed */
  max-width: 150px;
  /* Restrict the width for responsiveness */
  object-fit: contain;
  /* Maintain aspect ratio */
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 25px;
  color: #000000;
  text-align: center;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #0355cc;
}

.custom_nav-container .form-inline .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .form-inline .nav_search-btn:hover {
  color: #0355cc;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quote_btn-container a {
  color: #ffffff;
  margin-right: 25px;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #ff8a1d;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: bottom;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  padding-bottom: 90px;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 15px;
  color: blue;
}

.slider_section .detail-box h1 p {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 15px;
  color: #0355cc;

}

.slider_section .detail-box p {
  color: #444;
  font-size: 15px;
}

.slider_section .detail-box a {
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #ff8a1d;
  border: 1px solid #ff8a1d;
  border-radius: 5px;
  color: #ffffff;
  margin-top: 15px;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #ff8a1d;
}

.slider_section .img-box img {
  width: 100%;
}

.feature_section {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* --------------------------------------------------------------- */
.feature_section .cards-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature_section .cards-container .card {
  align-items: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */

  background-color: #ffffff;
  color: #555089;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);

}

.feature_section .cards-container .card .card-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;

}

.feature_section .cards-container .card h3 {
  /* font-size: 18px;
  color: #333;
  margin-bottom: 10px; */
  margin-top: 20px;
  text-transform: uppercase;
  font-family: 'Tajawal', sans-serif;
  color: #0063ff;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.feature_section .cards-container .card p {
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.feature_section .cards-container .card:hover,
.feature_section .cards-container .card.active {
  background-color: #ff8a1d;
  color: #ffffff;
}

/* --------------------------------------------------------------- */
.feature_section .feature_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature_section .feature_container .box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  text-align: center;
  margin: 0 10px;
  padding: 45px 15px;
  background-color: #ffffff;
  color: #555089;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.feature_section .feature_container .box .img-box {
  width: 90px;
  height: 90px;
}

.feature_section .feature_container .box .img-box svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  /* fill: #726dae; */
  fill: #0063ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.feature_section .feature_container .box .img-box svg path {
  /* fill: #726dae; */
  fill: #0063ff;
}

.feature_section .feature_container .box .name {
  margin-top: 20px;
  text-transform: uppercase;
  /* font-family: 'Merriweather Sans', sans-serif; */
  font-family: 'Tajawal', sans-serif;
  color: #0063ff;
  /* font-weight: bold;
  margin-bottom: 0; */
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.feature_section .feature_container .box .description {
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.feature_section .feature_container .box:hover,
.feature_section .feature_container .box.active {
  background-color: #ff8a1d;
  color: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg,
.feature_section .feature_container .box.active .img-box svg {
  fill: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg path,
.feature_section .feature_container .box.active .img-box svg path {
  fill: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 10px;
}

.about_section .detail-box a {
  margin-top: 15px;
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #0355cc;
  border: 1px solid #0355cc;
  border-radius: 2px;
  color: #ffffff;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #0355cc;
}

/* ---------------------------------------------------------------------- */
.about_section .detail-box .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.about_section .detail-box .description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: right;
}

/* --------------------------------------------------------- */
.about_section .detail-box .numbered-list {
  text-align: right;
  /* Align text to the right for Arabic */
  direction: rtl;
  /* Ensure proper flow for Arabic text */
  margin: 10px 0;
  padding: 0;
  list-style-position: inside;
  /* Ensure the numbers are inside the list container */
}

.about_section .detail-box .numbered-list li {
  margin-bottom: 5px;
  /* Add spacing between list items */
  font-size: 18px;
  /* Adjust font size as needed */
  font-weight: bold;
  color: #0355cc;
}

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

/* .about_section .detail-box .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.about_section .detail-box .btn:hover {
  background-color: #9fffff;
} */
/* --------------------------------------------------------- */
.about_section .detail-box .hidden {
  display: none;
}

.about_section .detail-box .btn {
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.about_section .detail-box .btn:hover {
  background-color: #ff8a1d;
  /*  #9fffff; */
}

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

.about_section .img-box img {
  width: 100%;
}

.professional_section {
  background-color: #d1e3ff;
}

.professional_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.professional_section .img-box img {
  width: 100%;
}

.professional_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: #0355cc;
}

.professional_section .detail-box p {
  margin-top: 20px;
}

.professional_section .detail-box a {
  margin-top: 25px;
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #ff8a1d;
  border: 1px solid #ff8a1d;
  border-radius: 2px;
  color: #ffffff;
}

.professional_section .detail-box a:hover {
  background-color: transparent;
  color: #ff8a1d;
}

/* ------------------------------------------------------------------ */
.professional_section .detail-box .bullet-list {
  text-align: right;
  /* Align text to the right for Arabic */
  direction: rtl;
  /* Ensure proper flow for Arabic text */
  margin: 10px 0;
  padding: 0;
  list-style-type: disc;
  /* Default bullet style */
  list-style-position: inside;
  /* Keep bullets inside the container */
}

.professional_section .detail-box .bullet-list li {
  margin-bottom: 5px;
  /* Add spacing between list items */
  font-size: 16px;
  /* Adjust font size as needed */
}

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

.service_section {
  position: relative;
}

.service_section .box {
  margin-top: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
  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;
}

.service_section .box .img-box {
  width: 65px;
  height: 65px;
  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;
}

.service_section .box .img-box img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  color: #000000;
}

.service_section .box .detail-box p {
  margin: 0;
  color: #000000;
}

/* ------------------------------------------------------------------ */
.service_section .box .detail-box .bullet-list {
  text-align: right;
  /* Align text to the right for Arabic */
  direction: rtl;
  /* Ensure proper flow for Arabic text */
  margin: 10px 0;
  padding: 0;
  list-style-type: disc;
  /* Default bullet style */
  list-style-position: inside;
  /* Keep bullets inside the container */
}

.service_section .box .detail-box .bullet-list li {
  margin-bottom: 5px;
  /* Add spacing between list items */
  font-size: 16px;
  /* Adjust font size as needed */
  color: #000000;
}

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

.service_section .box:hover {
  background-color: #ff8a1d;
  color: #ffffff;
}

.service_section .box:hover .detail-box h5 {
  color: blue;
  /* Optional: Change text color on hover */
  font-weight: bold;
}

/* .service_section .box:hover .img-box img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
} */

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #0355cc;
  border: 1px solid #0355cc;
  border-radius: 0;
  color: #ffffff;
}

.service_section .btn-box a:hover {
  background-color: transparent;
  color: #0355cc;
}

.client_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.client_section .box {
  margin: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 25px;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.client_section .box .client_id .img-box {
  width: 125px;
  min-width: 125px;
  margin-right: 15px;
}

.client_section .box .client_id .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_id .client_detail {
  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;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 25px;
}

.client_section .box .client_id .client_detail .client_info h6 {
  margin-bottom: 0;
}

.client_section .box .client_id .client_detail .client_info i {
  color: #fbaf5d;
}

.client_section .box .client_text {
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #0355cc;
  outline: none;
  margin: 0 20px;
  color: #ffffff;
}

.heading_container {
  margin-bottom: 30px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #ffffff;
  outline: none;
  color: #ffffff;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.contact_section input::-webkit-input-placeholder {
  color: #737272;
}

.contact_section input:-ms-input-placeholder {
  color: #737272;
}

.contact_section input::-ms-input-placeholder {
  color: #737272;
}

.contact_section input::placeholder {
  color: #737272;
}

.contact_section input.message-box {
  height: 135px;
}

.contact_section button {
  border: none;
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 55px;
  background-color: #0355cc;
  border: 1px solid #0355cc;
  border-radius: 0;
  color: #ffffff;
  margin-top: 15px;
}

.contact_section button:hover {
  background-color: transparent;
  color: #0355cc;
}

.contact_section .map_container {
  height: 360px;
}

.contact_section .map_container .map {
  height: 100%;
}

/* .info_section {
  padding: 75px 0;
  background-color: #0a0f43;
  text-align: center;
  color: #fff;
}

.info_section h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}

.info_section .social-box {
  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;
  margin-top: 25px;
}

.info_section .social-box .box {
  background-color: #ffffff;
  padding: 5px 15px;
}

.info_section a {
  margin: 0 5px;
  color: #0355cc;
}

.info_section a i {
  font-size: 18px;
}

.info_section a:hover {
  color: #ff8a1d;
} */

/* -----Infor Section--- */
.info_section {
  background-color: #d1e3ff;
  color: #000000;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #000000;
  font-weight: bold;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #0355cc;
  /* #00bbf0; */
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  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;
  color: #007bff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #ff8a1d;
  /* #00bbf0; */
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

.info_section .info_links a:hover {
  color: #0355cc;
  /* #00bbf0; */
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #007bff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #000000;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #007bff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #007bff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  /* #ff8a1d; */
  /* #00bbf0; */
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;

  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  /* border-radius: 4px; */
  /* transition: background-color 0.3s ease; */
}

/*
.about_section .detail-box .btn {
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
*/

.info_section form button:hover {
  background-color: #ff8a1d;
  /* #007fa4; */
}

/* -----End Info Section---- */

.info_items a {
  position: relative;
}

.info_items .item {
  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;
  text-align: center;
}

.info_items .item .img-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 80px;
  background-color: #0355cc;
  color: #ffffff;
}

.info_items .item .img-box i {
  font-size: 24px;
}

.info_items .item p {
  margin-top: 25px;
  color: #fff;
  margin-bottom: 0;
  background-color: #0a0f43;
}

.info_items .item:hover .img-box {
  background-color: #ff8a1d;
}

.info_items {
  position: relative;
}

.info_items::before {
  content: "";
  position: absolute;
  top: 65px;
  width: 75%;
  height: 1px;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* footer section*/
.footer_section {
  background-color: #000000;
  /* #0a0f43; */
}

.footer_section p {
  margin: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
  border-top: 0.8px solid #ffffff;
}

.footer_section a {
  color: inherit;
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */


/** Asked section **/

.asked_main {
  padding-top: 90px;
  background-color: #ffffff;
  color: #0355cc;

}

.asked_main .titlepage {
  text-align: right;
  color: #0355cc;
}

.asked_main .titlepage h2 {
  color: #000;
}

.question {
  color: #0355cc;
}

.slider span {
  float: left;
  cursor: pointer;
  font-size: 30px;
  line-height: 29px;
  color: #0355cc;

}

.asked_main .ask_box {
  max-width: 539px;
  width: 100%;
  float: right;

}

.asked_main .ask_box .simpaly {
  padding: 10px 10px 10px 20px;
  border: #0355cc solid 2px;
  margin-bottom: 20px;

}

.asked_main .ask_box .simpaly .slider a {
  color: #272827;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}

.asked_main .ask_box .simpaly .content p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}

.asked_main .ask_box .simpaly .content p span {
  color: #A92827;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}

.asked_main .ask_box .simpaly .content ul {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}
/* ------------ */

/* ----------- */
@import "bourbon";
@import url(https://fonts.googleapis.com/css?family=News+Cycle);

.asked_main .ask_box .simpaly .slider {
  font: 1.1em 'News Cycle', sans-serif;
  padding: 1%;
  /* background: #999;
  color: #fff; */
  background: #fff;
  color: #000;
  margin-bottom: 1%;
  text-align: right;

  span {
    margin-right: .3%;
  }

  a {
    text-decoration: none;
    color: #000;
  }
}

.content {
  font: 1em 'News Cycle', sans-serif;
  padding: 1%;
  text-align: right;

  p {
    margin-bottom: 1%;
  }
}


/** end Asked section **/