 
.public-error-notice,.bad-request{
    font-size:16px;
    margin-bottom:14px;
    text-align:center;
    color:red;
}
.success-message{
    text-align:center;
    font-size:16px;
    margin-bottom:20px;
    line-height:1.2;
    color:green;
}
/* sections additions */
.section-padding {
  padding: 40px 0;
}
.section-title {
  margin-bottom: 30px;
}
.section-title h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 26px;
  color: #0c4c93;
  margin-top: 5px;
  margin-bottom: 0;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: var(--bg-7);
  width: 90px;
  overflow: hidden;
}
.heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}
.section-title p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-2);
}
.no-scroll{
    overflow:hidden;
}
@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@media screen and (min-width:768px){
    .section-title h3{
        font-size:34px;
    }
}
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  z-index: 50;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  background-color: var(--bg-5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}
/* btn animations */

.theme-btn {
  font-size: 16px;
  color: #fff;
  padding: 12px 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  border-radius: 50px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  border: none;
  background: #51acfb;
  box-shadow: 0 3px 24px rgb(0 0 0/10%);
}

.theme-btn::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 20px;
  height: 20px;
  background: #1e60aa;
  border-radius: 50px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn:hover::before {
  width: 105%;
  height: 105%;
}

.theme-btn2 {
  background: #1e60aa;
}

.theme-btn2::before {
  background: #51acfb;
}

.theme-btn i {
  margin-left: 8px;
}


/*header*/
.header-bottom {
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  padding: 10px 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 90;
  position: absolute;
}
.header-bottom.isSticky {
  background-color: #fff;
  padding: 5px 0;
  top: 0;
  right: 0;
  position: fixed;
  left: 0;

  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  animation: 500ms ease-in-out 0s normal fadeInDown;
}
.header-bottom.isSticky .header-links ul li a {
  color: var(--default);
}
.header-bottom.isSticky .hamburger-btn svg {
  fill: var(--default);
}
.header-bottom.isSticky .language-area button {
  color: var(--default);
}
.header-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bottom-left {
  display: flex;
  align-items: center;
}
.header-logo a {
  display: block;
  height: 100%;
  width: 100%;
}
.header-logo a img {
  max-width: 150px;
  height: 60px;
  width: 100%;
}
.header-links {
  margin-left: 40px;
  display: none;
}
.header-links ul {
  display: flex;
  align-items: center;
}
.header-links ul li {
  padding: 0 10px;
  position: relative;
}
.header-links ul li a {
  line-height: 30px;
  color: var(--default);
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}
.header-links ul li a svg {
  transition: 0.3s ease-in;
}
.header-links ul li:hover svg {
  transform: rotate(180deg);
  transition: 0.3s ease-out;
}
.header-links ul li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  max-height: 300px;
}
.nav-dropdown {
  position: absolute;
  background-color: var(--bg-1);
  min-width: 150px;
  z-index: 5;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
  padding: 10px;
  max-height: 0;
  display: block !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-top: 1px solid var(--default);
  border-radius: 4px;
}
.nav-dropdown li {
  padding: 10px !important;
  border-radius: 6px !important;
  width: 100% !important;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}
.nav-dropdown li:hover {
  background-color: #eee;
}
.nav-dropdown li a {
  display: block !important;
  width: 100% !important;
  font-size: 16px;
      white-space: nowrap;
  font-weight: bold;
  color: var(--default) !important;
  height: 100% !important;
  line-height: 1 !important;
}

/* language */
.header-bottom-right {
  display: flex;
  align-items: center;
}
.language-area {
  position: relative;
}
.language-area button {
  display: flex;
  align-items: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 30px;
  color: var(--default);
  background: transparent;
}

.language-area button svg {
  margin-right: 5px;
}

.language-dropdown {
  margin-top: 10px;
  position: absolute;
  border-top: 4px solid var(--default);
  padding: 10px;
  z-index: 10;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  right: 0;
  width: 120px;
  display: none;
  border-radius: 5px;
}

.language-dropdown li {
  padding: 8px 10px;
  background-color: transparent;
  border-radius: 6px;
  color: #202020;
  transition: 0.3s ease-in-out;
}

.active-lang {
  color: darkgreen;
}

.language-dropdown li:hover {
  background: #eee;
}

.language-dropdown li a {
  display: flex;
  align-items: center;
  color: currentColor;
  font-size: 18px;
  font-weight: 500;
}

.language-dropdown li a img {
  margin-right: 5px;
  width: 35px;
  height: 25px;
  border-radius: 5px;
  object-fit: cover;
}

.hamburger {
  display: block;
  margin-left: 20px;
}

.hamburger-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.hamburger-btn svg {
  fill: var(--white);
}
.header-callaction {
  display: none;
}
.header-bottom.isSticky .header-callaction button {
  border: 1px solid var(--default);
  color: var(--default);
}

.header-callaction button {
  background: transparent;
  position: relative;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--default);
  border-radius: 10px;
  outline: none;
  overflow: hidden;
  color: var(--default);
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
}

.header-callaction button span {
  margin: 10px;
}

.header-callaction button::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}
.header-bottom.isSticky .header-callaction button:hover {
  color: var(--white);
}
.header-callaction button:hover {
  color: #fff;
  border: 1px solid var(--default);
}

.header-callaction button:hover::before {
  box-shadow: inset 0 0 0 10em var(--default);
}

.hamburger {
  display: block;
  margin-left: 20px;
}

.hamburger-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.hamburger-btn svg {
  fill: var(--default);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}



.all_sidebar {
	display: block;
}

#mobile_navbar {
	max-width: 400px;
	top: 0;
	right: 0;
	width: 100%;
	background-color: #fcfcfc;
	z-index: 999;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 20px;
	transition: .3s ease-in-out;
	position: fixed;
	height: 100vh;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
}
#mobile_navbar.active_navbar{
	transform: translateX(0%);
	visibility: visible;
	opacity: 1;
}
#mobile_navbar::-webkit-scrollbar {
	width: 5px;
  }
  
  #mobile_navbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  }
  
  #mobile_navbar::-webkit-scrollbar-thumb {
	width: 3px;
	height: auto;
	background-color:#ddd;
	border-radius: 4px;
  }
#mobile_navbar .cancel_logo_mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.cancel_logo_mobile .logo_mobile {
	margin: 0;
	width: auto;
	height: 45px;
}

.cancel_logo_mobile .logo_mobile a {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.cancel_logo_mobile .logo_mobile a img {
	width: 100%;
	height: 100%;
}

.cancel_logo_mobile .cancel_button {
	width: 25px;
	height: 25px;

}

.cancel_logo_mobile .cancel_button #cancel {
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.cancel_logo_mobile .cancel_button svg {
	width: 100%;
	height: 100%;
	fill:#221f1f;
	opacity: .8;
}

.mobile_list .mobile_nav_item {
	width: 100%;
}

.mobile_list .mobile_nav_item .mobile_nav_links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
	padding: 10px 0;
	color: #000;
	border-bottom: 1px solid #ddd;
}

.mobile_nav_item .mobile_nav_submenu {
	padding-left: 20px;
	display: none;
}

.mobile_nav_submenu li a {
	display: block;
	width: 100%;
	padding: 10px 0;
	color: #000;
	font-weight: bold;
	opacity: .8;
	border-bottom: 1px solid #ddd;
}

.mobile_nav_item:last-child {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile_getQuete {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1rem 2.5rem 1rem 2.5rem;
	border: 0;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 500;
	background: transparent;
	color:#fff;
}

.mobile_getQuete:hover {
	cursor: pointer;
}

.mobile_getQuete>span {
	position: relative;
	z-index: 3;
}

.mobile_getQuete::before,
.mobile_getQuete::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 300%;
	height: 100%;
	opacity: 0;
}

.mobile_getQuete::before {
	background: #1d1d1d repeating-linear-gradient(50deg, transparent, transparent 10px,  #1d1d1d56 10px,  #575555 20px);
}

.mobile_getQuete::after {
	z-index: 2;
	background: linear-gradient( var(--default) 30%, transparent 100%);
}

@keyframes loading_49100 {
	0% {
	  translate: 25px 0;
	}
  
	100% {
	  translate: -30px 0;
	}
  }
.mobile_getQuete::before {
	animation: loading_49100 0.6s infinite linear;
  }  
.mobile_getQuete::before,
.mobile_getQuete::after {
	opacity: 1;
}
.overlay{
	position: fixed;
	width: 100%;
	height: 100vh;
inset:0;
	background-color:rgba(0,0,0,0.3);
	z-index: 99;  
	display: none;
}

@media (min-width:576px) and (max-width:992px) {
	.mobile_getQuete{
		width: unset;
	}
	.mobile_nav_item:last-child {
		justify-content: flex-start;
	}
}



@media screen and (min-width: 768px) {
  .language-area {
    margin-right: 20px;
  }
}
@media screen and (min-width: 992px) {
  .header-links {
    display: block;
  }
  .header-callaction {
    display: block;
  }
  .hamburger {
    display: none;
  }
}

/* hero */
.hero-section {
  height: 70vh;
  background-color: var(--bg-1);
}
.myHeroSwiper {
  height: 100%;
}
.myHeroSwiper .swiper-wrapper {
  height: 100%;
}
.myHeroSwiper-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  justify-content: center;
}
.myHeroSwiper-content:after {
  inset: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  content: '';
  background-color: rgba(46, 49, 78, 0.8);
}
.myHeroSwiper-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  position: absolute;
}
.myHeroSwiper-content article {
  position: relative;
  z-index: 2;
}
.myHeroSwiper-content article h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--white);
}
.myHeroSwiper-content article p {
  display: -webkit-box;
  font-size: 16px;
  color: var(--white);
  width: 100%;
  hypens:auto;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  height: auto;
  margin-bottom: 25px;
}
.myHeroSwiper-content article a {
  max-width: 150px;
  height: 45px;
  display: flex;
  background: #0093c8;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  color: var(--white);
}
.myHeroSwiper-content article a:hover {
  background: #0e6eb2;
}
.myHeroBullet {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px !important;
}
.myHeroBullet .my-bullet {
  background: #f9f871;
  height: 10px;
  width: 10px;
}
.myHeroBullet .my-active-bullet {
  height: 12px;
  width: 12px;
}
@media screen and (min-width:768px){
    .myHeroSwiper-content article p{
        width:50%;
    }
}



/* footer */
.footer {
  background: var(--bg-1);
}
.footer .row {
  row-gap: 20px;
}
.footer-head {
  padding: 40px 0;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-logo a img {
  max-width: 150px;
  height: 60px;
  width: 100%;
}
.footer-logo-content article p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.2;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.footer-social-list {
  display: flex;
  align-items: center;
  row-gap: 10px;
  margin-top: 20px;
}
.footer-social-list li {
  width: 2.5rem;
  background: var(--bg-1);
  height: 2.5rem;
  border-radius: 50%;
  color: var(--color-1);
  transition: 0.3s ease-in-out;
}
.footer-social-list li:not(:first-child) {
  margin-left: 10px;
}
.footer-social-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: currentColor;
  justify-content: center;
}
.footer-social-list li:hover {
  background: var(--color-1);
  color: var(--white);
}
.footer-links h6 {
  line-height: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-2);
}
.footer-links li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-links li svg {
  fill: var(--color-1);
  margin-right: 4px;
}
.footer-links li a,
.footer-links li span {
  display: block;
  width: 100%;
  line-height: 1;
  font-weight: normal;
  font-size: 16px;
  color: var(--color-2);
  transition: 0.3s ease-in;
}
.footer-links li span:hover,
.footer-links li a:hover {
  color: var(--color-1);
}
.footer-links li {
  display: flex;
  align-items: center;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-1);
}
.footer-bottom .row {
  align-items: center;
  row-gap: 10px;
}
.footer-copyright {
  font-size: 18px;
  font-weight: normal;
  color: var(--color-2);
  text-align: center;
  line-height: 1.2;
}
.footer-copyright a {
  text-decoration: underline;
  color: var(--color-1);
  font-weight: bold;
  margin-left: 10px;
}
.footer-siteby {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-siteby a {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100%;
}
.footer-siteby a {
  font-size: 18px;
  font-weight: bold;
  color: var(--default);
}
.footer-siteby a img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

@media screen and (min-width: 576px) {
  .footer-logo-content article p {
    -webkit-line-clamp: 3;
  }
  .footer-siteby {
    justify-content: flex-end;
  }
  .footer-copyright {
    text-align: start;
  }
}

@media screen and (min-width: 992px) {
  .footer-links h6 {
    line-height: 60px;
  }
}

/* feedback page */

/* blog section */
.blogAreaTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-section .row {
  row-gap: 20px;
}
.myBlogSwiper .swiper-wrapper {
  padding: 10px 0;
}
.blog-card {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  transition: 0.3s ease-in-out;
}
.blog-card a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.blog-card a:hover > figure img {
  transform: scale(1.1);
}
.blog-card figure {
  height: 200px;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.blog-card figure span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c4b9388;
  position: absolute;
  z-index: 1;
  color: var(--white);
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
}
.blog-card:hover > a > figure > span {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.blog-card article {
  margin-top: 10px;
}
.blog-card article ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-6);
}
.blog-card article ul li {
  display: flex;
  align-items: center;
}
.blog-card article ul li:not(:first-child) {
  margin-left: 20px;
}
.blog-card article ul li svg {
  margin-right: 5px;
  fill: var(--default);
}
.blog-card article ul li span {
  font-size: 14px;
  color: var(--default);
}
.blog-card article h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 45px;
  font-size: 18px;
  color: var(--color-2);
  line-height: 1.2;
  margin-bottom: 10px;
}
.blog-card article .phragraph  {
  color: var(--color-2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 35px;
  text-overflow: ellipsis;
  font-size: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.blog-card:hover {
  transform: translateY(-8px);
}
.blog-navigation {
  display: none;
  align-items: center;
  position: relative;
  z-index: 20;
}
.notNavigation {
  display: none !important;
}
.blog-navigation button:not(:first-child) {
  margin-left: 10px;
}
.blog-navigation button {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  cursor: pointer;
  line-height: 50px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid var(--default);
  color: var(--default);
  transition: all 500ms ease;
}
.blog-navigation button:hover {
  background: var(--default);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .blog-navigation {
    display: flex;
  }
  .blog-card article ul li span {
    font-size: 16px;
  }
}

/* blog inside */
.blog-inside .row {
  row-gap: 20px;
}
.blog-inside-left figure {
  height: 250px;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
.blog-inside-left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-inside-left article {
  padding: 10px 0;
}
.blog-inside-left article ul {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-6);
}
.blog-inside-left article ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-inside-left ul li svg {
  fill: var(--default);
  height: 20px;
  width: 20px;
}
.blog-inside-left ul li span {
  font-size: 14px;
  font-weight: normal;
  color: var(--default);
}
.blog-inside-left article h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--default);
}
.blog-inside-left-content {
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;
  hyphens: auto;
  color: var(--color-1);
}
.blog-inside-left-content ul{
    display:block !important;
    padding:0  !important;
    margin:0 !important;
    border:none !important;
}
.blog-inside-right-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.blog-inside-right-box h3 {
  color: #0c4c93;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
}
.blog-inside-right-box h3:after {
  position: absolute;
  content: "";
  width: 5px;
  border-bottom: 3px solid #0c4c93;
  bottom: 0;
  left: 35px;
}
.blog-inside-right-box h3:before {
  position: absolute;
  content: "";
  width: 30px;
  border-bottom: 3px solid #0c4c93;
  bottom: 0;
  left: 0;
}
.blog-inside-right-boxul {
  display: flex;
  flex-direction: column;
}
.blog-inside-right-box ul li {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-6);
}
.blog-inside-right-box ul li:last-child {
  border-bottom: none;
}
.blog-inside-right-box ul li a {
  display: block;
  color: #0c4c93;
  transition: all 0.5s ease-in-out;
}
.blog-inside-right-box ul li a i {
  margin-right: 5px;
}
.blog-inside-right-box ul li a:hover {
  padding-left: 10px;
  color: #51acfb;
}
.blog-recent-wrapper {
  display: flex;
  flex-direction: column;
}

.blog-recent-wrapper .blog-recent-card:last-child {
  border-bottom: none;
}
.blog-recent-wrapper .blog-recent-card {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-6);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.blog-recent-card {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
}
.blog-recent-card figure {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  margin-right: 10px;
  overflow: hidden;
}

.blog-recent-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-recent-card article {
  width: 100%;
}
.blog-recent-card article h5 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-align: start;
  width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  color: var(--color-2);
  font-size: 16px;
  text-overflow: ellipsis;
}

.blog-recent-card article span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-3);
  margin-top: 10px;
}
.blog-inside-followus {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-inside-followus li {
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
}
.blog-inside-followus li a {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  display: flex !important;
  border: none;
  align-items: center;
  justify-content: center;
}
.blog-inside-followus li a:hover {
  padding: 0;
}
.blog-inside-followus li a svg {
  fill: var(--white);
}
.blog-inside-followus li a.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.blog-inside-followus li a.facebook {
  background: #006aff;
}
.blog-inside-followus li a:hover svg{
  padding-left: 0 !important;
}
.blog-inside-followus li a.tiktok {
  background: var(--black);
}

@media screen and (min-width: 576px) {
  .blog-recent-card figure{
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .blog-recent-wrapper .blog-recent-card {
    flex-direction: unset;
  }
  .blog-recent-card article {
    width: calc(100% - 90px);
  }
  .blog-recent-card article h5{
    -webkit-line-clamp: 2;

  }
  .blog-inside-left figure {
    height: 400px;
  }
  .blog-inside-left ul li span {
    font-size: 16px;
  }
  .blog-inside-left article h2 {
    font-size: 30px;
  }
  .blog-recent-card article h5 {
    text-align: unset;
  }
  .blog-recent-card article span {
    justify-content: flex-start;
  }
  .blog-inside-right-box h3 {
    font-size: 24px;
  }
}


/* process-single */
.working-process {
  background-color: var(--bg-1);
}
.working-process .row {
  row-gap: 40px;
}
.process-single {
  text-align: center;
  position: relative;
}
.process-single figure {
  height: 100px;
  width: 100px;
  margin: 0 auto 30px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  font-size: 40px;
  border: 2px dashed #1e60aa;
  padding: 5px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.process-single figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.process-single figure > span {
  position: absolute;
  height: 35px;
  width: 35px;
  font-size: 14px;
  background: #1e60aa;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  border-radius: 50%;
  color: #fff;
  left: -3px;
  top: -13px;
  font-weight: 600;
}

.process-single article {
  text-align: center;
}
.process-single article h4 {
  font-size: 22px;
  text-align: center;
  height:55px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  color: #092a49;
  overflow: hidden;
  text-overflow: ellipsis;
}
.process-single article p {
  font-size: 14px;
  color: #757f95;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 576px) {
  .process-single::before {
    content: url(/assets/img/workingafter.webp);
    position: absolute;
    right: -65px;
    top: 34px;
  }
  .working-process .col-12:nth-child(2) .process-single::before {
    display: none;
  }
  .working-process .col-12:last-child .process-single::before {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .working-process .col-12:nth-child(2) .process-single::before {
    display: block;
  }
}
/* partnors */
.partnors_section .row {
  row-gap: 20px;
}

.partnors_section .partnors_box {
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  border: 1px solid #ddd;
  cursor: pointer;
  height: 130px;
  border-radius: 15px;
  outline: none;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
.partnors_box a{
    width:100%;
    height:100%;
    border-radius:15px;
    display:flex;
    padding:20px;
    align-items:center;
    justify-content:center;
}
.partnors_section .partnors_box:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.partnors_section .partnors_box a img {
  width: 100%;
  height: 100%;
  object-fit:contain;
}
@media screen and (min-width: 576px) {
  .partnors_section .partnors_box {
    max-width: 100%;
  }
}

/*partnors*/

/* sercvices card  */
.services-section .row{
  row-gap: 24px;
}
.services-card {
  height:280px;
  width: 100%; position: relative;
  overflow: hidden;
  border-radius: 5px;
    display: flex;
    align-items: flex-end;
}
.services-card a {
  position: absolute;
    inset:0;
  height: 100%;
  transition: .3s ease-in-out;
  width: 100%;

}
.services-card img {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
}
.services-card-content {
  background-color: rgba(6, 54, 104, 0.85);
  padding:15px 10px;
  position: relative;
  display: flex;
  align-items: center;
  width:100%;
  z-index: 2;
}
.services-card a:hover:after{
  background: rgba(0,0,0,0.8);
}
.services-card a:after{
  inset: 0;
  content: '';
  transition: .3s ease-in-out;
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0,0,0,0.2);
}
.services-card-line {
  height: 100px;
  width: 6px;
  border-radius: 3px;
  margin-right: 20px;
  background-color: #51ACFB;
}
.services-card-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height:1.2;
  color: var(--white);
}
.services-card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  hyphens: auto;
  font-size: 14px;
  -webkit-box-orient: vertical;
  color: var(--white);
}


@media screen and (min-width:768px){
  .services-card {
    height: 350px;
  }
  .services-card-content{
    padding: 30px;
  }
}


.whychooseus {
  background: var(--bg-1);
}
.whychooseus .row{
  row-gap: 24px;
}
.chooseus-box {
  display: flex;
  align-items: flex-start;
}
.chooseus-box figure {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  margin-right: 10px;
}
.chooseus-box figure img {
  width: 24px;
  height: 24px; 
}
.chooseus-box article {
  width: calc(100% - 50px);
}

.chooseus-box article h4 {
  display: -webkit-box;
  height: auto;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.chooseus-box article p {
  font-size: 14px;
  line-height: 1.2;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  hyphens: auto;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .chooseus-box{
    align-items: center;
  }
  .chooseus-box article h4 {
    font-size: 20px;
  }
  .chooseus-box figure{
    width: 60px;
    height: 60px;
  }
  .chooseus-box article{
    width: calc(100% - 70px);
  }
}


.suggestus {
  background:#1f465e;
}
.suggestus .row{
  row-gap: 20px;
}
.suggestus article {
  text-align: center;
  margin-bottom: 30px;
}

.suggestus h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}
.suggestus p {
  font-size: 16px;
  color: #A2ACBD;
}
.suggestus .input-wrapper input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 2px;
  min-height: 50px;
  outline: none;
  color: var(--white);
  background-color: transparent;
}
.suggestus .input-wrapper button {
  width: 100%;
  cursor: pointer;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestus .input-wrapper input:placeholder-shown {
  color: var(--white);
}


 
/* gallery */
.gallery-section .row{
    row-gap:30px;
}
.gallery_card {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery_card::after {
  inset: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.gallery_card:hover .gallery_overlay {
  opacity: 1;
  visibility: visible;
}
.gallery_card:hover a {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  font-size: 40px;
}
.gallery_card img {
  width: 100%;
  inset: 0;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.gallery_overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.gallery_card a {
  overflow: hidden;
  display: block;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  opacity: 0;
  z-index: 4;
  position: relative;
  font-size: 20px;
  transform: scale(0.8);
  color: #fff;
}


/*modal*/
.no-scroll{
  overflow: hidden;
}
.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding:50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-2);
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: var(--default);
}
.customModalHeader button:hover svg {
  fill: black;
}
.custommodal-body {
  padding: 20px;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal-input-wrapper {
  width: 100%;
}
.modal-input-wrapper input {
  width: 100%;
  min-height: 25px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
}
.modal-input-wrapper textarea {
  max-height: 180px;
  height: 100%;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
  resize: vertical;
}
.modal-input-wrapper button {
  position: relative;
  padding: 15px 45px;
  background: var(--white);
  font-size: 17px;
  width: 100%;
  font-weight: 500;
  color: var(--default);
  font-weight: bold;
  cursor: pointer;
  border: 1px solid var(--default);
  border-radius: 8px;
  transition:.3s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.modal-input-wrapper button:hover {
  border: 1px solid var(--default);
  background: var(--default);
  color:var(--white);
}

/*modal*/