* {
  direction: rtl;

}
body#Body{
  overflow: visible !important;
}

ul li{
  
  font-size: 1rem;
}
ul {
  list-style: none;
}

:root {
  --primary-color: #03264c;
  --secondary-color: linear-gradient(to top, #b91218f7 0%, #bd4834 100%);
}

p {
  color: #848282;
  font-size: 1rem;
  line-height: 32px;
  letter-spacing: -0.5px;
  text-align: justify;
}

a {
  color: unset;
  text-decoration: none;
}

a:hover {
  color: unset;
}

.logo-container {
  width: 246px;
}

.logo-container img {
  width: 100%;
  filter: brightness(1.5);
}

.icons-container {
  display: flex;
  width: 169px;
  justify-content: space-around;
}

.icons-container img {
  width: 20px;
  height: 20px;
}

.header-sec {
  background-color: #3b3b3b1f;
  position: relative;
  z-index: 10;
  padding: 17px 0;
  width: 100%;
}

.header-sec .nav-item a {
  font-size: 16px;
  font-weight: 500;
  color: #fff !important;
}

.slider-sec {
  /* background: url("/Portals/_default/Skins/glend/resource/theme-assests/img//slide01.jpg") top / cover no-repeat;
  filter: grayscale(0.3) contrast(0.9); */
  height: 100vh;
  padding: 12% 0;
  overflow: hidden;
  position: relative;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgb(0 0 0 / 28%) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}
.banner-context {
  position: absolute;
  top: 31%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}
.slider-links {
  justify-content: center;
	    flex-wrap: wrap;
}
.slider-links div.about-btn:first-child {
     margin-left: 24px;
}
.slider-links div.about-btn:last-child {
     margin-right: 16px;
}
.slider-links  .about-btn{
width: 218px !important;
}
.banner-context h1{
  padding-bottom:35px;
  color: #fff;
  font-weight: 400;
  font-size: 23px;
}
.banner-context h1 span{
 font-weight: 700;
	    font-size: 26px;
}
.banner-context h6{
    color: #fff;
    line-height: 27px;
    padding-top: 40px;
	 padding-bottom: 10px;
    width: 27%;
    font-weight: 400;
 }
.slider-sec .about-btn {
  background: transparent !important;
  border: 2px solid #e4e4e4;
  transition: .4s;
}

.slider-sec .about-btn:hover {
  background: #fff !important;
  border: 2px solid #e4e4e4;
  transition: .4s;
}

.slider-sec .about-btn:hover span {
  transition: .4s;
  color: var(--primary-color) !important;
}
.mouse-icon {
  position: relative;
  display: inline-block;
	
}

.mouse-image {
  width: 24px; /* Adjust based on your image size */
}

.bouncing-dot {
  position: absolute;
  top: 8px; 
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: #fff; /* Dot color */
  border-radius: 50%;
  animation: slide-down 2s infinite ease-in-out;
}

@keyframes slide-down {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20px); /* Adjust based on how far down you want the dot to go */
    opacity: 0;
  }
}

.each_card-slider {
  display: flex;
  width: 100%;
  padding: 55px 24px;
  flex-direction: column;
  height: 365px;
}

.icon_container-card {
  width: 40px;
  /*padding-top: 14px;*/
  height: auto;
  margin: 0 auto;
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon_container-card i {
  font-size: 37px;
}

.context_container-card {
  text-align: center;
}

.slider_cards-sec .col-12 {
  padding: 0;
}

.context_container-card p {
  color: #edecec;
  line-height: 32px;
  padding-top: 44px;
  height: 152px;
  text-align: center;
  font-size: 15px;
  overflow: hidden;
  padding-bottom: 14px;
  letter-spacing: 0;
}

.context_container-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #e7e7e7;

  padding-top: 26px;
  position: relative;
}

.context_container-card h4::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 2px;
  bottom: -26px;
  left: 40%;
  background: var(--secondary-color);
}

.arrow-container i {
  color: #d5d5d5;

  font-size: 23px;
  font-weight: 600;
}

/* Targeting the .each_card-slider based on the nth-child of the parent .col */

.col-12:nth-child(1) .each_card-slider {
  background-color: #03264c;
}

.col-12:nth-child(2) .each_card-slider {
  background-color: #032c58;
}

.col-12:nth-child(3) .each_card-slider {
  background-color: #0b325d;
}

.col-12:nth-child(4) .each_card-slider {
  background-color: #0e3663;
}

.col-12:nth-child(5) .each_card-slider {
  background-color: #0e3969;
}

.col-12:nth-child(6) .each_card-slider {
  background-color: #15406f;
}

.each_card-slider:hover {
  background: var(--secondary-color) !important;
  transition: .6s;
}

.each_card-slider:hover .icon_container-card {
  background: #bfbfbf;
  transition: .6s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-sec {
  background: url("/Portals/_default/Skins/glend/resource/theme-assests/img//main-testimonial-bg.jpg") center / cover no-repeat;
  padding: 120px 0;
}

.about-sec .about-right {
  display: flex;
  flex-direction: column;
}

.about-sec .about-title h2 {
  font-size: 25px;
  color: #03264c;
  font-weight: 700;
}

.about-sec .about-title h1 {
  font-size: 34px;
  font-weight: 700;
  color: #03264c;
  padding-bottom: 27px;
}

.about-btn {
  border-radius: 5em;
  font-weight: 500;
  background: var(--secondary-color);
  transition: 0.5s;
  padding: 14px 35px !important;
  width: 158px;
  transition: 0.5s;
  text-align: center;
}

.about-btn:hover {
  background: linear-gradient(to top, #bd4834 0%, #ec1c24 100%) !important;
  color: #fff !important;
  transition: 0.5s;
}

.about-btn span {
  color: #f3f3f3;
  text-align: center;
}

.about-center h5 {
  color: #03264c;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  line-height: 30px;
  padding-bottom: 17px;
}

.about-center p {
  color: #999;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
  text-align: justify;
}

.about-left {
  width: 100%;
  text-align: left;
}

.about-left img {
  width: 225px;
}

.box_img-container {
  width: 100%;
	    height: 100%;
  filter: grayscale(0.3) contrast(0.9);
}

.box_img-container img {
  width: 100%;
 height: 100%;
	    object-fit: cover;
}

.box_context-container {
  padding: 9% 22%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.boxes-sec {
  overflow: hidden;
}

.boxes-sec .col-lg-6 {
  padding: 0;
}

.box_context-container h1 {
  font-size: 30px;
  font-weight: 600;
  color: var(--main-color);
  position: relative;
  word-wrap: break-word;
  text-align: right;
  padding-bottom: 53px;
  display: inline-block;
}

.box_context-container h1::after {
  content: "";
  display: block;
  height: 3px;
  position: relative;
  top: 24px;
  width: 50px;
  background: var(--secondary-color);
}

.box_context-container p {
  padding-bottom: 25px;
}

.box_context-container ul {
  color: #999;
  list-style: none;
  padding: 0;
}

.box_context-container ul li {
  color: #1f4e7d;
  font-weight: 500;
  padding: 4px 30px 4px 0px;
  position: relative;
}

.box_context-container ul li::before {
  color: #E42427;
  content: "\f00c";
  display: inline-block;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 12px;
  font-weight: 900;
  right: 0;
  line-height: 1;
  position: absolute;
  top: 12px;
}

.gallery-sec {
  background: linear-gradient(rgba(3,38,76,0.88) 87%, #03264c 100%), url("/Portals/_default/Skins/glend/resource/theme-assests/img//portfolio-bg.jpg") top / cover no-repeat;
  padding: 90px 0;
}

.gallery-sec .col-md-4 {
  padding: 16px 0;
}

.each_pic-gallery {
  width: 100%;
  text-align: center;
  filter: grayscale(0.3) contrast(0.9);
}

.each_pic-gallery img {
  width: 93%;
  height: 250px;
}

.gallery-title {
  text-align: center;
  padding-bottom: 50px;
}

.gallery-title h2 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
}

ul.nav.nav-tabs {
  border-bottom: none;
  justify-content: center;
  padding-bottom: 39px;
  padding-right: 0;
}

.gallery-sec li.nav-item {
  padding: 7px;
}

.gallery-sec a.nav-link {
  border: 2px solid #fafafa !important;
  border-radius: 5em;
  font-size: 16px;
  font-weight: 600;
  color: #fafafa !important;
  line-height: 1;
  margin-bottom: 10px;
  padding: 10px 27px;
  text-transform: capitalize;
}

.gallery-sec a.nav-link.active {
  background-image: var(--secondary-color);
  border: none !important;
  color: #fff !important;
  padding: 12px 29px;
  border-radius: 5em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  padding: 10px 27px;
  text-transform: capitalize;
}

.gallery-btn {
  text-align: center;
  width: 100%;
  padding-top: 60px;
}

.gallery-btn a {
  border-radius: 5em;
  font-weight: 500;
  background: #fff;
  border: 2px solid #fff;
  transition: 0.5s;
  padding: 14px 35px !important;
  width: 158px;
  transition: 0.5s;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
  transition: .5s;
}

.gallery-btn a:hover {
  background-color: transparent;
  transition: .5s;
  color: #fff;
}

.news-title {
  text-align: center;
  padding-bottom: 50px;
}

.news-title h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 30px;
}

.news-sec {
  padding: 90px 0;
  background-color: #F2F5F7;
}

.news-special {
  background-color: #fff;
  border: 1px solid #ececec;
transition: .5s;
border-radius: 8px;
}
.news-special:hover {
  filter: contrast(0.8);
  transition: .5s;
}
.news-special:hover .read-more img{
  transform: scale(1.2);
  transition: .5s;
}
.news-row:hover .read-more img{
  transform: scale(1.2);
  transition: .5s;
}
.news_row-container .news-row:hover{
  filter: contrast(0.8);
  transition: .5s;
}
.arrow-container {
  padding-top: 3px;
  padding-right: 13px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #d5d5d5;
  position: absolute;
  bottom: 30px;
  right: 44%;
}

.news-special_img {
  width: 100%;
  height: 255px;
}

.news-special_img img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  object-position: center;
  object-fit: cover;
}

.news_special-context {
  padding: 14px 47px;
  min-height: 310px;
}

.news_special-context h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 10px;
}

.date-container {
  padding-bottom: 10px;
}

.date-container span:first-child {
  color: #dd4454;
  font-size: 12px;
  font-weight: 500;
}

.date-container span {
  color: #999;
  font-size: 12px;
  font-weight: 500;
}

.read-more {
  text-align: left;
}

.read-more span img {
  transition: .5s;
  width: 31px;
}

.read-more span:hover img {
  transform: scale(1.2);
  transition: .5s;
}

.news_row-container {
  display: flex;
  flex-direction: column;
}
.news_row-container .col-lg-6{
padding: 0;
}


.news_row-container .col:first-child {
  margin-bottom: 28px;
}

.news_row-container .news-row {
  background-color: #fff;
  border: 1px solid #ececec;
  transition: .5s;
  border-radius: 8px;
}

.news_row-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 0 8px 8px 0;
}

.news_row-context {
  padding: 19px 39px;
}

.news_row-context h3 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: var(--primary-color);
  /* padding-bottom: 10px; */
}

.news_row-img {
  height: 100%;
}

.slogan-sec {
  background: url("/Portals/_default/Skins/glend/resource/theme-assests/img//title_bg.jpg") top / cover no-repeat;
  padding: 90px 0;
}

.slogan-sec h1 {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.faq_title-container h1 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  word-wrap: break-word;
  text-align: right;
  padding-bottom: 53px;
  display: inline-block;
}

.faq_title-container h1::after {
  content: "";
  display: block;
  height: 3px;
  position: relative;
  top: 24px;
  width: 50px;
  background: var(--secondary-color);
}

.faq-sec {
  padding: 90px 0 ;
}

.accordion-button::after {
  align-items: center;
  background-image: var(--secondary-color);
  border-radius: 50%;
  color: #fff;
  content: "\f078";
  display: flex;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 10px;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  position: absolute;
  left: 28px;
  top: 33%;
  width: 20px;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--secondary-color);
}

.accordion-button {
  background: #f2f5f7;
  border: 2px solid #f2f5f7;
  border-radius: 5px;
  font-weight: 500;
  text-align: right;
  position: relative;
  color: var(--primary-color);
}

.accordion-button:hover {
  background-color: transparent;
  transition: .5s;
}

.accordion-item {
  padding: 12px 0 12px 59px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: #f2f5f7;
  color: var(--primary-color);
}

.accordion {
  --bs-accordion-btn-focus-border-color: unset;
  --bs-accordion-btn-focus-box-shadow: unset;
}

.accordion-button:focus {
  border: none;
}

.colleague-container .col-md-4 {
  padding-top: 20px;
}

.each_pic-logo img {
  width: 210px;
  height: 100%;
  padding: 38px;
}

.each_pic-logo {
  height: 150px;
  display: flex;
  justify-content: center;
  border: 2px solid #f2f5f7;
}

.footer {
  background: var(--primary-color);
 
}

.footer a:hover {
  color: #dd4454;
  transition: .3s;
}

.footer a {
  transition: .3s;
}
div#row-184431 {
text-align:center;
background-color: var(--primary-color) !important;
 border-top: 1px solid #cbcbcb1f;
}
div#row-184431 p{
text-align:center;
font-size: 12px;
margin-bottom:0 !important;
padding: 6px 0;
line-height: 20px;
}
div#row-184431 p a{
color:#c5c5c5;
}
div#row-184431 p a:hover{
color:#bb2424;
}
.contact_info-footer li {
  color: #dbdbdb;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.contact_info-footer ul {
margin-right: 0 !important;
}
.contact_info-footer li a {
  color: #dbdbdb ;
}
.contact_info-footer li div {
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: 15px;
}

.contact_info-footer li div i {
  padding: 10px 11px;
}
.contact_info-footer {
  margin-top: 72px;
}



div h4.useful-links  {
  color: #fff;
  font-size: 22px;
  padding-bottom: 18px;
  font-weight: bold;
}



div#column-811407 ul {
  margin-right: 0;
}
footer.footer .dngTextBox {width: 100%;}

.contact_form-footer h2 {
  font-size: 35px;
  color: var(--primary-color);
  font-weight: 600;
}
.footer .LiveForm.Default .Field.mobile-under .Field-Container-Wide {
  text-align: center;
}
.page-break-section li:nth-child(3) {
  padding-top: 20px;
}
/* .captcha-simple,.captcha-refresh {
  margin-bottom: 23px !important;
} */
.captcha-refresh {
  width: 20px !important;
  height: auto !important;
}
.contact_form-footer .card-body {
  background-color: #F2F5F7;
  padding: 67px 40px 35px;
  border-top: 2px solid #dd4454;
}
.dng-column>.dng-column-inner {
  padding: 0;
}
#dng-megamenu219470 .dnngo_slide_menu{
  background-color: #fff !important;
  border-bottom: 2px solid #dd4454;
}
.dng-megamenu .dnngo_slide_menu{
  padding: 8px 0;
}
.dng-megamenu .dnngo_slide_menu span{
  font-size: 0.81rem;
}
/* .dnngo_slide_menu li {
  padding: 0 14px;
} */
.dnngo_slide_menu li a {
  border-bottom: 1px solid #f2f5f7;
  padding: 10px 20px 10px 0;
  width: 100%;
  color: #999 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.dnngo_slide_menu li a:hover
{
    color: #dd4454 !important;

}
#mobilemenu994977 .gomenu > ul > li > a:hover {
  /* color: #121722 !important; */
}
.fa-search:before {
  color: #3578bb;
}
.gomenu a {
  width: 100%;
}
#mobilemenu994977 a:hover span {
  color: var(--primary-color) !important;
}
#mobilemenu994977 .gomenu > ul > li > a >span::after {
  background-color: unset !important;
}
.dnngo_slide_menu li:last-child a {
  border: none;
}
/* .dng-megamenu .dnngo_menuslide {
  position: unset !important;
} */
.contact_form-footer .form-control {
  /* border: none; */
  border: 1px solid #e1e1e17d;
  border-radius: 2px;
  padding: 13px 0px;
}
a:visited {
  color: unset;
}
.footer .LiveForm.Default ul.page-break-section .Field {
  padding: 10px 0 !important;
}
.footer .LiveForm.Default ul.page-break-section {
  padding: 0;
}
.contact_form-footer .card-body h6 {
  font-size: 12px;
  line-height: 20px;
  padding-top: 30px;
  text-align: center;
  color: var(--primary-color);
}

.contact_form-footer .card {
  border: none;
}

.btn_form-container {
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer_col-about p {
  color: #fff;
}

.footer_col-about {
  padding-right: 28px;
  margin-top:72px;
}

.logo_container-footer {
  width: 210px;
  padding-bottom: 22px;
}

.logo_container-footer img {
  width: 100%;
}

.social_icon-container {
  display: flex;
	padding-bottom: 16px;
}

.social_icon-container div {
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding-left: 6px;
}

.social_icon-container a {
  transition: .3s;
  padding-left: 10px;
}

.social_icon-container a:hover div {
  transition: .3s;
  background-color: transparent;
}

.social_icon-container div i {
  padding: 10px;
}

@media only screen and (max-width: 950px) {
  .contact_form-footer {
    margin-top: 0;
  }
}

@keyframes bubble {
  0%, 100% {
    border-radius:55% 58% 46% 45% / 64% 46% 44% 73%;
  }
  25% {
    border-radius:43% 46% 64% 40% / 50% 47% 47% 38%;
  }
  50% {
    border-radius:49% 40% 60% 51% / 48% 72% 44% 56% ;
  }
  75% {
    border-radius: 47% 62% 60% 53% / 48% 60% 70% 55%;
  }
}

.intro_layers {
  -webkit-animation: bubble 21s linear infinite;
  animation: bubble 10s linear infinite;
  background-image: linear-gradient(to top, #03264c 0%, #0d4684 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  max-width: 672px;
  padding: 187px 103px;
  padding-top: 130px;
  padding-bottom: 140px;
  position: relative;
  width: 100%;
  z-index: 1;
}

@keyframes scaleAppear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.intro_layer {
  animation: scaleAppear 750ms ease;
}

.intro_layer h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 20px;
}

.intro_layer h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 100;
  letter-spacing: -2px;
  line-height: 73px;
  padding-bottom: 25px;
}

.news_row-context p {
  margin-bottom: 11px;
}

@media only screen and (max-width: 768px) {
  .intro_layers {
    padding: 187px 90px;
    padding-top: 86px;
    padding-bottom: 86px;
  }
}

@media only screen and (max-width: 768px) {
  .intro_layer h2 {
    font-size: 33px;
    line-height: 41px;
  }
}

@media only screen and (max-width: 768px) {
  .intro_layer h6 {
    font-size: 23px;
  }
}

.box_modal-container {
  position: relative;
}

.box_modal-container::after {
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  background-image: linear-gradient(to top, #ec1c24 0%, #bd4834 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7);
  color: #fff;
  content: "\f0da";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 60px;
  left: 50%;
  line-height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  position: absolute;
  text-align: center;
  top: 50%;
  filter: contrast(1.4);
  transition: all 0.3s ease-in-out;
  width: 60px;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(242, 245, 247, 0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 245, 247, 0);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

.dng-megamenu .primary_structure>li {
  float: right !important;
  margin-left: 20px;
}
#dng-megamenu219470 .primary_structure>li>a  {
  padding: 30px 0;
  font-size: 16px !important;
}
#dng-megamenu219470 .primary_structure>li>a:before {
  background: #fff;
  bottom: 20px;
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  right: 50%;
  transition: 0.3s ease-in-out;
  width: 0;
}
#dng-megamenu219470 .primary_structure>li>a:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}
.dng-megamenu .primary_structure>li.dir>a>span:after {
  content: "";
    /* font-size: 16px; */
    height: 7px;
    width: 7px;
    overflow: hidden;
    margin: 0 10px 3px 6px;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(135deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(45deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-bottom: 2px solid;
    border-right: 2px solid;

}
.LiveForm.Default input[type="submit"]{
  color: white;
  border-radius: 5em !important;
  font-weight: 500 !important;
  background: var(--secondary-color) !important;
  padding: 14px 35px !important; 
  width: 158px !important;
  transition: 0.5s !important;
  text-align: center !important;
  width: 158px !important;
  font-size: 16px;
}
.LiveForm.Default input[type="submit"]:hover {
  background: linear-gradient(to top, #bd4834 0%, #ec1c24 100%) !important;
    color: #fff !important;
    transition: 0.5s;
}
.Submit-Align-Right {
  text-align: center !important;
}
.footer .LiveForm.Default ul.page-break-section {
  background-color:unset !important;
}
.footer .LiveForm.Default .Field label {
  display: none;
}
.footer .LiveForm.Default input[type="text"],.footer .LiveForm.Default textarea {
  width: 100% !important;
  padding: 25px 0px !important;
  text-align: center;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: unset !important;
  border: 1px solid #e1e1e17d !important;
}
.footer .LiveForm.Default textarea {
  padding-top: 10px !important;
  height: 125px;
}
.footer .LiveForm.Default .Field input:focus-visible,.LiveForm.Default .Field textarea:focus-visible  {
  /* outline: 1px solid var(--primary-color) !important; */
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}
.pro-photo .pic_box {
overflow: unset !important;
}
#isotope1537 .pro-photo {
  background-color: unset !important;
  margin: 12px 15px 0px 15px !important;
}
.ico-left,.ico-right {
  border-radius: unset !important;
}
.Theme_04_Default .moremeassage {
  display: none;
}
#isotope1537 .pro-isotope_group a, #isotope1537 .pro-isotope_group a:link {
    border: 2px solid #fafafa !important;
    border-radius: 5em;
    font-size: 16px;
    font-weight: 600;
    color: #fafafa !important;
    line-height: 1;
    margin-bottom: 10px;
    padding: 10px 27px;
    text-transform: capitalize;
}
#isotope1537 .pro-isotope_group a:hover  {
  border-radius: 5em;
  font-size: 16px;
  font-weight: 600;
  color: #fafafa !important;
  line-height: 1;
  margin-bottom: 10px;
  padding: 10px 27px;
  text-transform: capitalize;
}
#isotope1537 .pro-isotope_group a.active {
  background-image: var(--secondary-color);
  border: none !important;
  color: #fff !important;
  padding: 12px 29px;
  border-radius: 5em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  padding: 10px 27px;
  text-transform: capitalize;
}
.Theme_04_Default .pro-isotope_group {
  padding-bottom: 55px !important;
}
.Theme_04_Default .pro-isotope_group a {
  margin: 0px 5px !important;
}

div#dnn_ctr393_ModuleContent .swiper-wrapper {justify-content:center}
.carousel-timeline01 .swiper-slide .cont-placeholder {
  padding: 49px 0px 0 !important;
}
.carousel-timeline01 .swiper-slide:nth-child(2n + 1) .cont:not(.cont-placeholder) {
  padding: 0 !important;
}
#dnn_content {
  padding: 60px 0 ;
 min-height: 200px;
}
.page-title-bg {
  padding-top: 47px;
}
.title-area {
  padding-bottom: 0px;
}
.page-title.small .main-title{
  font-weight: 700 !important;
  color: #e9e9e9;
  padding-right: 4px;
}
.Theme_04_Default .pro-isotope_item .pic_box img {
  height: 268px !important;
}
.Theme_04_Default .meassage_box{
  display: none;

}
.news-pic.nslist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
  max-height: 340px;
}

.nbox {
  background-color: #F2F5F7;
  border: 1px solid #ececec;
  transition: .5s;
  margin-top: 25px;
  border-radius: 8px;
}
.day {
  padding-bottom: 10px;
}
.day span:first-child {
  color: #dd4454;
  font-size: 12px;
  font-weight: 500;
}

.day span {
  color: #999;
  font-size: 12px;
  font-weight: 500;
}
.desc.ndesc h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 5px;
}
.desc.ndesc p {
  color: #999;
  font-size: 1rem;
  line-height: 32px;
  letter-spacing: -.5px;
  text-align: justify;
 height: 70px;
 overflow: hidden;
}
.desc.ndesc {
  padding-left: 50px;
  padding-top: 55px;
  padding-bottom: 22px;
}
.news-pic.nslist {
  height: 100%;
}
.nbox:hover {
  filter: contrast(0.8);
  transition: .5s;
}
.nbox:hover .read-more img {
  transform: scale(1.2);
  transition: .5s;
}
.news-image-single img {
  width: 100%;
}
.LiveForm.Default textarea{
  width: 100% !important;
}
.LiveForm.Default .Field .Field-Container-Wide {
  width: 100%;
}
.LiveForm.Default .Field.mobile-under input{
  width: 100%;
}
.LiveForm.Default .Field.mobile-under select{
  width: 100%;
}
.contactus-page{
  padding: 0 !important;
}
.contact-section01 .is-container {
  margin-top: -118px !important;
  background-color: #FFF;
  box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.contact-box01 img, .contact-box02 img {
  max-width: 100%;
  object-fit: cover;
  width: 110px;
  height: 110px;
}
.contactus-page a.social-02:hover {
  color: #03264c !important;
  background-color: #bc312a !important;
  border-color: #bc312a !important;
  box-shadow: 0 0 6px #d7453d;
}
.contactus-page .sico svg{
  margin-right: 0 !important;
}
.Field-Container-Wide div{
  display: flex;
  flex-direction: row-reverse;
}
.Field-Container-Wide div:nth-child(1){
  display: flex;
  flex-direction: row;
}
input#dnn_ctr1533_View_CaptchaSimple_1533_4 {
  width: 64% !important;
}
img.captcha-simple{
  margin-top: 8px;
}
.Field-Container-Wide div:nth-child(1) div{
  display: block !important;
}
.page-breadcrumbs > .container {
  text-align: right;
}
.page-title .center {

  vertical-align: bottom !important;
}
.page-title .center .center-v {
  padding-bottom: 84px !important;
}
.portfolio-masonry-style02.isotope-grid .isotope-group button{
  border-radius: 20px !important;
}
.portfolio-masonry-style02 .title {
  color: #ff2a36 !important;
  font-size: 1.5rem;
}
.portfolio-masonry-style02 .title::after {
  margin: 6px auto 0 !important;
}
@media only screen and (max-width: 425px) {
  .contact-section01 .is-container {
    margin-top: 0 !important;
  }
}
.Business11-imgbox::after{
  content: "";
  position: absolute;
  background-image: url(../img/Business11-img.png);
  background-position: bottom;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  bottom: -33px;
  right: 0;
  z-index: 0;
}
.Business11-imgbox img{
filter: contrast(0.7);
}
.ourteam-05 .social {
  display: none;
}
.ourteam-05 .title {
  text-align: right;
}
#dnn_ctr1461_ModuleContent .is-container .row:last-child {
  justify-content: center;
}

.social-box a {
  display: none;
}
.ourteam-11 h3.title {
  color: #03264c;
  font-size: 14px;
  font-weight: 800;
}

.ourteam-11 h3.subtitle {
  color: #bc312a;
  font-size: 14px;
}
.title-37 small::before {
  display: none !important;
}
#dnn_content {
  overflow: hidden !important;
}
.ourteam-11 .pic {
  height: 190px;
} 
#headerrow-893713 .area-left {
  padding-right: 0px !important;
}


#content-builder-1538 .col-md-6.col-lg-3.col-xl-6.img-Lazy-warp {
  height: 287px !important;
}
#content-builder-1538 .d-wrapper img {
  height: 100% !important;
  width: 100% !important;
  object-position: center;
  object-fit: cover;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev  {
  right: unset !important;
}
@media only screen and (max-width: 426px) {
  div#dnn_ctr393_ModuleContent .swiper-wrapper {
    justify-content: unset !important;
}
}
.swiper-container .swiper-button-next:hover, .swiper-container .swiper-button-prev:hover {
  color: unset !important;
}
.carousel-timeline01 .swiper-button-prev span, .carousel-timeline01 .swiper-button-next span {
  display: none;
}
@media (max-width: 1441px) {
  .carousel-timeline01 .swiper-button-next {
      left: 0 !important;
      right: unset !important;
      transform: rotate(180deg);
  }
  .carousel-timeline01 .swiper-button-prev {
    right: 0 !important;
    left: unset !important;
    transform: rotate(180deg);
}
.header-area.area-right .header-content-wrap, div.header-area.text-right .header-content-wrap {
  justify-content: flex-start;
}
}

.info-box01 .title {
  color: #03264c;
}
#dng-megamenu219470 .dnngo_boxslide {
  background-color: #fff !important;
  border-bottom: 2px solid #dd4454;
}
.dng-megamenu .dnngo_menuslide {
  top: 80% !important;
  right: -1px !important;
}
.dng-megamenu .dnngo_custommenu .submenu {
  text-align: right;
  border-bottom: 1px solid #f1f1f1;
}
#dng-megamenu219470 .dnngo_menu_list li a, #dng-megamenu219470 .dnngo_menu_list li a, #dng-megamenu219470 .dnngo_boxslide .submenu_title a{
  transition: .3s;
  color: #999 !important;
    font-family: "iransans";
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 48px;
}
#dng-megamenu219470 .dnngo_menu_list li a:hover, #dng-megamenu219470 .dnngo_menu_list li a:focus, #dng-megamenu219470 .dnngo_boxslide .submenu_title a:hover {
  color: #bc312a !important;
  transition: .3s;
}

/* .dng-megamenu .dnngo_custommenu>.menupane {

  border-left: 1px solid #dcdcdc;
} */
.dng-megamenu .dnngo_custommenu {
  padding: 0  !important;
  display: flex;
  height: 100%;
}
@keyframes spinner {
  0% {
    transform: perspective(350px) rotate(0deg);
}
100% {
    transform: perspective(350px) rotate(360deg);
}
}
.page-loaders{
  background-color: #F2F5F7 !important;
  text-align: center;
}
.loading-img {

  width: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 32%;
  text-align: center;
}
.pre-loader_wrapper{
  display: flex !important;
  flex-direction: column;
  width: 375px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 27%;
}
.loading-img img{
  width: 100%;
  animation: spinner 5s linear infinite;
}
.pre-loader_wrapper span{
  color: #03264c;
  font-size: 30px;
  font-weight: 600;
  padding-top: 29px;
  display: none;
}
.dng-megamenu .primary_structure>li.dir>a>span:after {
  transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
}
.slider-product{
margin-right: 42px;
display: flex;
    align-items: center;
}
.slider-product span{
color: #fff;
font-weight: 400;
font-size: 15px;
  }
  .header_bg .container{
    max-width: 1575px !important;
  }

  .header-pattern {
    background: url("/Portals/_default/Skins/glend/resource/theme-assests/img/header-pattern.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .dng-megamenu .dnngo_custommenu .submenu:last-child {
    border-bottom: unset;
  }
  .news-single-content-p li {
    color: #515151;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.5px;
    text-align: justify;
    list-style-type: disc;
}

.news-single-content-p h4 {
    color: #15375c;
    font-size: 20px;
    font-weight: 600;
}
.news-single-text-full-div h5{
  color: #15375c;
  font-size: 22px;
  font-weight: 600;
}
.news-single-content-p p {
    color: #515151;
}

.description.mb-20 p {
    color: #515151;
}
@media only screen and (max-width: 425px) {
	.slider-links .about-btn:first-child{
	    margin-left: unset !important;
    margin-bottom: 10px;
	}
	.banner-context h6{
	    width: 85%;
	}
	.slider-links div.about-btn:last-child {
     margin-right: unset;
}
	.banner-context{
	    top: 17%;
	}
	.accordion-item {
    padding: 12px 0 12px 0px;
}
	.accordion-button::after{
		    width: 16px;
		    height: 16px;
		    left: 9px;
	}
  .ourteam-11 .pic{
    height: auto;
  }
  .desc.ndesc{
    padding-left: 20px;
    padding-right: 20px;
  }
	.about-left {
   
    text-align: center;
}
	.about-title .about-btn{
    margin-bottom: 32px;
	}
  label#dnn_ctr1530_Login_Login_DNN_plCaptcha {
     margin-right:0px; 
}
}
.table-container {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #dbdbdb;
}
th {
  background-color: #03264c;
  color: #ffffff;
  font-weight: bold;
}
td {
  color: #333;
}
tr:nth-child(even) {background-color: #f2f2f2;}
@media (max-width: 600px) {
  th, td {
      padding: 10px;
      font-size: 14px;
  }
}
.news_row-container .col{
   padding: 0px;
}
.postComment p:nth-child(3) span {
  display: none;
  width: 100%;
}
div#dnn_ctr1530_Login_Login_DNN_divCaptcha2 img {
  margin-top: -30px;
}
.flag-container {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 142px; */
}
.swiper-container:not(.section-slider) .swiper-slide {
  margin-left: 27px !important;
}
.about-use-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 20px !important;
}

h4.about-use-title {
  padding-bottom: 25px;
  color: #03264c;
  font-size: 23px;
  font-weight: 600;
}

p.about-us-text {
  line-height: 36px;
  font-size: 15px;
  text-align: justify;
}
