/* Global css goes here */
@font-face {
  font-family: MR;
  src: url("../fonts/Montserrat-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: MB;
  src: url("../fonts/Montserrat-Bold.ttf") format("TrueType");
}
@font-face {
  font-family: MEB;
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("TrueType");
}
@font-face {
  font-family: MSB;
  src: url("../fonts/Montserrat-SemiBold.ttf") format("TrueType");
}
@font-face {
  font-family: MM;
  src: url("../fonts/Montserrat-Medium.ttf") format("TrueType");
}
@font-face {
  font-family: ML;
  src: url("../fonts/Montserrat-Light.ttf") format("TrueType");
}
@font-face {
  font-family: MEL;
  src: url("../fonts/Montserrat-ExtraLight.ttf") format("TrueType");
}
@font-face {
  font-family: SSR;
  src: url("../fonts/SourceSansPro-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: SSB;
  src: url("../fonts/SourceSansPro-Bold.ttf") format("TrueType");
}
@font-face {
  font-family: SSL;
  src: url("../fonts/SourceSansPro-Light.ttf") format("TrueType");
}
@font-face {
  font-family: SSSB;
  src: url("../fonts/SourceSansPro-SemiBold.ttf") format("TrueType");
}
:root{
  --primary: #1b305b;
  --secoundry: #67bc47;
  --body: #2b2b31;
  --text: #5f6973;
  --white:#fff;
  --textSize: 1rem;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-size: var(--textSize);
  font-family: SSR;
  line-height: 1.625;
  color: var(--body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: MB;
  line-height: 1.3;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}
p,
li {
  margin-bottom: 10px;
  color: var(--text);
}
p:last-child,
li:last-child {
  margin: 0;
}
nav ul li {
  margin: 0;
  list-style-type: none;
}
ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
li {
  list-style-type: none;
}
nav ul {
  margin: 0;
}
p:empty {
  display: none;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
a:hover {
  color: var(--secoundry);
  opacity: 1;
}
.title {
  font-size: 2.5rem;
}
.sub_title {
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3125rem;
  display: inline-block;
}
.text {
  margin: 1.25rem 0 2rem;
}
.text_dark {
  color: var(--text);
}
input[type="search"] {
	margin-bottom: 0 !important;
}
input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="file"],
select,textarea{
  display: block;
  width: 100%;
  padding: calc(0.75em - 1px) 1rem;
  margin-bottom: 1rem;
  line-height: 1.625;
  border-radius: 6px;
  border: 1px solid #d4d4e1;
  background-color: var(--white);
  outline: none;
  appearance: none;
  transition: all 0.2s;
  color: var(--body);
  position: relative;
}
.select::after {
    content: "\e5d7";
    font-family: "Material Icons";
    font-size: 1.375rem;
    position: absolute;
    right: 20px;
    top: 8px;
    pointer-events: none;
    color: var(--text);
}
input:focus {
  border-color: var(--body);
}
input[type="checkbox"] {
  border: 1px solid #d4d4e1;
  border-radius: 0.25rem;
  background: var(--white);
  color: #50575e;
  outline: 0;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
input[type="checkbox"]::after {
  content: "\e5ca";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Material Icons";
  text-align: center;
  font-size: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  color: var(--secoundry);
  opacity: 0;
  transition: all 0.2s;
}
input[type="checkbox"]:checked {
  border: 1px solid var(--secoundry);
}
input[type="checkbox"]:checked::after {
  opacity: 1;
}
.form-field {
  position: relative;
}
.form-field label {
  position: absolute;
  transition: 0.2s all;
  top: 12px;
  left: 17px;
  color: var(--text);
  pointer-events: none;
}
.form-field.checkbox label {
  top: 0;
  left: 30px;
  font-size: 0.875rem;
}
.form-field.checkbox {
  margin-bottom: 2rem;
}
input:focus ~ label {
  opacity: 0;
  visibility: hidden;
  transform: translateX(1rem);
}
.boxShadow {
  box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
}
.btn {
  background: var(--secoundry);
  color: var(--white);
  padding: 0.75em 1.75em;
  border-radius: 6px;
  border: none;
  position:relative;
  transition:0.3s all;
  z-index: 1;
  overflow: hidden;
}
.btn:hover {
  color: var(--white);
}
.btn span{
  position: absolute;
  display: inline-block;
  width:0;
  height:0;
  transform: translate(-50%,-50%);
  border-radius:50%;
  background-color:var(--primary);
  transition:width 0.4s, height 0.4s;
  z-index: -1;
}
.btn:hover span{
  width:300px;
  height:300px;
}
.btn.btn-with-icon {
  padding: 0.75em 3em 0.75em 1.75em;
}
.btn.btn-with-icon::after {
  content: "\e941";
  position: absolute;
  right: 24px;
  font-family: "Material Symbols Outlined";
  font-size: 1.25rem;
  top: 10px;
}
.btn:focus {
  box-shadow: none;
}
.submit-btn {
  width: 87%;
  text-align: center;
}
.section {
  padding: 4.5rem 0;
}
.section-top-0 {
  padding-top: 0;
}
.section_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.overlay_sec .container {
  position: relative;
  z-index: 9;
}
.btn.video-btn {
  border-radius: 50%;
  padding: 0;
  line-height: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.btn.video-btn i {
  font-size: 2.25rem;
  color: var(--secoundry);
  transition:0.2s all;
}
.btn.video-btn:hover i{
  color:var(--white);
}
.sec_desc {
  margin: 1.25rem auto !important;
  max-width: 30rem;
}
.sec_heading {
  margin: 0 auto;
  max-width: 880px;
  margin-bottom: 3.25rem;
}
.sec_btn_space {
  margin-top: 2.5rem;
}
.section_bg_light {
  background-color: #1b305b0f;
}
.flickity-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid #d4d4e1;
  display: flex;
}
.flickity-button-icon {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  width: 0.8125rem !important;
  height: 0.8125rem !important;
  margin: auto;
  color: var(--secoundry);
}
.flickity-page-dots {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
  position: relative;
}
.flickity-page-dots .dot {
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  outline: none;
  opacity: 1;
  background-color: var(--body);
  margin: 0;
  margin-right: 20px;
  transition: 0.2s all;
}
.flickity-page-dots .dot.is-selected {
  background-color: var(--secoundry);
  width: 0.875rem;
  height: 0.875rem;
}
.content_col .text {
  margin: 1.25rem 0;
}
.content_col ul li {
  position: relative;
  padding-left: 30px;
}
.content_col ul li:before {
  position: absolute;
  left: 0;
  content: "\e5ca";
  font-family: "Material Icons";
  font-size: 1.125rem;
  color: var(--secoundry);
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  color: var(--secoundry);
  background: var(--white);
  border: 1px solid #d4d4e1;
  padding: 10px 12px;
  line-height: 1;
  transition: 0.4s all;
  transform: translateY(200%);
}
#btn-back-to-top:hover {
  border-color: var(--secoundry);
}
#btn-back-to-top i {
  font-size: 1rem;
}
#btn-back-to-top span {
	display: none;
}
#btn-back-to-top.active {
  transform: translateY(0);
}
.modal-backdrop.show {
	opacity: 0.8;
	cursor: pointer;
}
/* Global css ends here */

/* Page loading css goes here */
/* .page_loading {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  position: fixed;
  z-index: 9999;
}
.stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dot_loading {
  position: relative;
  left: -9999px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--body);
  color: var(--body);
  box-shadow: 9999px 0 0 0 var(--body);
  animation: dotLoading 1s infinite linear;
  animation-delay: 0.1s;
}
.dot_loading::before,
.dot_loading::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--body);
  color: var(--body);
}
.dot_loading::before {
  animation: dotLoadingBefore 1s infinite linear;
  animation-delay: 0s;
  left: -7px;
}
.dot_loading::after {
  animation: dotLoadingAfter 1s infinite linear;
  animation-delay: 0.2s;
  left: 7px;
}
@keyframes dotLoading {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 var(--body);
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dotLoadingBefore {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 var(--body);
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dotLoadingAfter {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 var(--body);
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
} */
/* Page loading css ends here */

/* Header css goes here */
.logo {
    width: 100px;
    display: inline-block;
    transition: 0.5s all
}
.header-fixed.fixed .logo {
    transform: scale(0.8);
}
.logo span {
	font-size: 13px;
	color: var(--primary);
	font-weight: 700;
	text-align: center;
}
nav ul li a.nav-link{
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  color:var(--body);
}
nav ul li a.nav-link:hover{
  color:var(--secoundry);
}
/* nav ul li a::after {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.4s;
  color: var(--secoundry);
} */
.header-top {
  background-color: var(--primary);
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  position: relative;
}
.header-top-info i,
.header-top-info span {
  color: var(--white);
}
.header-top-info i {
  font-size: 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.625rem;
}
.header-top-info span {
  opacity: 0.8;
  transition: 0.3s all;
}
.header-top-info a:hover span {
  opacity: 1;
}
.header-top-links li {
  margin: 0;
  list-style-type: none;
}
.social-links a {
  color: var(--white);
  margin-right: 1.5rem;
  opacity: 0.8;
}
.social-links a:hover {
  opacity: 1;
}
.btn-link-call {
  margin-left: 18px;
}
.btn-link-call a {
  color: var(--white);
  opacity: 0.8;
}
.btn-link-call a:hover {
  opacity: 1;
}
.btn-link-call a span {
  border-bottom: 1px dashed var(--white);
  transition: all 0.2s;
  line-height: 1.1;
}
.btn-link-call a i {
  margin-right: 5px;
}
.btn-link-call a:hover span {
  border-bottom: 1px solid var(--white);
}
.header-fixed {
  background-color: var(--white);
  width: 100%;
  padding: 0.75rem 0;
  box-shadow: 0 0 13px 0 rgba(77, 82, 94, 0.13);
  transition:0.5s all;
  position: relative;
  z-index: 999;
}
.header-fixed.menu_opened {
	z-index: 10001;
}
.header-fixed.fixed ~ .header-fixed-static {
	display: block;
}
.header-fixed.fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
}
.header-fixed-static {
	display: none;
}
.desktop-menu .nav-item {
  padding: 1rem 0;
  margin-left: 1.5rem;
}
.desktop-menu .nav-item .nav-link {
  padding: 0;
}
/* nav ul li a:hover::after,
nav ul li a.active::after {
  transform: translateY(0%);
}
nav ul li a span {
  transform: translateY(0%);
  display: inline-block;
  transition: 0.2s all;
}
nav ul li a:hover span,
nav ul li a.active span {
  transform: translateY(100%);
} */
.dropdown .nav-link {
  display: flex;
}
.dropdown .nav-link div {
  display: flex;
  align-items: center;
}
.dropdown .nav-link div i {
  color: var(--secoundry);
  transition: all 0.4s;
  font-size: 1.125rem;
}
nav ul .dropdown .nav-link:hover i {
  transform: rotateX(180deg);
}
nav ul.desktop-menu .dropdown:hover .dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
nav ul .dropdown .dropdown-menu {
  min-width: 12.5rem;
  border-radius: 10px;
  padding: 0.75rem 0;
  transition: all 0.2s;
  cursor: default;
  border: none;
}
.sub-menu .nav-item {
  padding: 0.25rem 0;
  margin-left: 0;
}
.sub-menu .nav-item .nav-link {
  padding: 0.125rem 1rem 0.125rem 1.5rem;
}
.sub-menu .nav-item .nav-link:hover {
  background-color: var(--white);
}
.sub-menu li a:after {
  padding: 0.125rem 1rem 0.125rem 1.5rem;
}
.header-lang {
	padding: 0.75rem 0;
}
.header-lang ul {
  padding: 0;
}
.lang-icon i {
  font-size: 1.375rem;
}
.lang-icon {
	line-height: 0;
}
.lang-icon a {
	display: inline-block;
}
.header-lang nav ul .dropdown .dropdown-menu {
  min-width: auto;
  right: 0;
  left: auto;
  padding: 0.75rem 0;
  margin-top: 1rem;
}
.lang-icon .sub-menu .nav-item .nav-link {
  padding: 0.125rem 0;
  background-color: transparent;
}
.lang-icon .sub-menu .nav-item {
  padding: 0.4rem 1.5625rem;
  line-height: 1.6;
}
.lang-icon .sub-menu li a::after {
  padding: 0.125rem 0;
}
.header-search,.three_dots {
  margin-left: 1.25rem;
}
.header-action-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.2s;
}
.header-search-ico-search {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-search-ico-close {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.3);
}
.header-search-ico-search,
.header-search-ico-close {
  position: absolute;
  left: 0.0625rem;
  top: 0.0625rem;
  transition: all 0.2s;
}
.header-action-icon:hover i,
.lang-icon:hover i,
.lang-icon a.show i {
  color: var(--secoundry);
}
.header-fixed .container {
  position: relative;
}
.searchform {
	position: absolute;
	width: 95%;
	top: 50%;
	left: 0.75rem;
	transform: translateY(-50%);
}
.searchform .form-field {
  position: relative;
}
.search-field {
  padding-right: 2.5rem;
}
.search-submit.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.header-search-form.collapse.show
  ~ .header-action-icon
  .header-search-ico-search {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.3);
}
.header-search-form.collapse.show
  ~ .header-action-icon
  .header-search-ico-close {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.navbar {
	box-shadow: none !important;
	padding: 0;
}
.main_menu_toggle {
	position: relative;
  display: block;
  width: 24px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.main_menu_toggle .line {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--body);
	transition: all 0.4s ease-in-out;
}
.main_menu_toggle .line:first-child {
	top: 0;
}
.main_menu_toggle .line:nth-child(2) {
	top: 50%;
  transform: translateY(-50%);
}
.main_menu_toggle .line:last-child {
	bottom: 0;
}
.main_menu_toggle.show .line:nth-child(2) {
	top: 50%;
	transform: translate(-50%,-50%);
	left: -50%;
}
.main_menu_toggle.show .line:first-child {
	top: 8px;
	transform: rotate(45deg);
}
.main_menu_toggle.show .line:last-child {
	bottom: 8px;
	transform: rotate(-45deg);
}
.mobile_menu.offcanvas {
	justify-content: space-between;
  max-width: 20rem;
}
.offcanvas-start {
	width: 100%;
  border-right: none;
}
.mobile-menu .nav-item .nav-link {
	color: var(--body);
	line-height: 3.125rem;
	padding: 0 3.75rem 0 1.25rem;
	border-bottom: 1px solid var(--white);
	position: relative;
	transition: 0.3s background-color;
}
.mobile-menu .nav-item .nav-link::after {
	display: none;
}
.mobile-menu .nav-item .nav-link span {
	transform: translateY(0);
	width: 100%;
}
.mobile-menu {
	background-color: #f7f8fa;
}
.mobile-menu .nav-item{
  padding: 0;
}
.mobile-menu .nav-item a.active{
	background-color:var(--secoundry);
  color:var(--white);
}
.mobile_menu_footer {
	padding: 1.25rem;
	text-align: center;
}
.menu_ftr_lang a {
	color: var(--secoundry);
}
.arrow_submenu {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50px;
	justify-content: center;
	border-left: 1px solid var(--white);
	display: flex;
	align-items: center;
}
.mobile-menu .nav-item .sub-menu {
	position: relative;
	padding: 0;
  display: none;
}
.mobile-menu .nav-item .sub-menu li a {
	border-color: #d4d4e1;
  padding:0 1.25rem 0 2rem;
}
.mobile-menu .dropdown .nav-link.active i {
	color: var(--white);
}
.mobile-menu .dropdown .nav-link:hover i {
	transform: rotateX(0deg);
}
.three_dots ul li a::after {
	display: none;
}
.three_dots ul li:hover{
  background-color: var(--white);
}
.three_dots ul li a:hover span {
	transform: translate(0);
}
.three_dots ul li:hover i{
  color:var(--body);
}
.three_dots .sub-menu li {
	display: flex;
	align-items: center;
	padding: 0 !important;
}
.three_dots .sub-menu li:not(:last-child){
	margin-bottom: 1rem;
}
.three_dots .sub-menu li i{
  margin-right: 10px;
}
.three_dots .sub-menu li.social-widgets i {
	font-size: 1rem;
	margin-right: 0;
}
.three_dots .sub-menu li.social-widgets a {
	margin-right: 20px;
}
.three_dots .sub-menu {
	padding: 1.5rem !important;
}
.request-btn span {
	border-bottom: 1px dashed;
  transition: 0.3s all;
}
.request-btn:hover span {
	border-bottom: 1px solid;
}

/* Header ends here */

/* Popup css goes here */
#popupForm .modal-content {
  border: none;
  padding: 2.5rem 2.85rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.modal-dialog {
  max-width: 28.125rem;
}
.popupClose {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s;
}
.modal-heading {
  text-align: center;
  margin-bottom: 1rem;
}
/* Popup css ends here */

/* Home page css goes here */

/* Banner Sec */
#home .flickity-slider {
  transform: none !important;
}

.banner_inner{
  width:100%;
}
#home .banner_slide{
  height: 40rem;
  position: relative;
  display: flex;
  align-items: center;
  width:100%;
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
#home .banner_slide.is-selected{
   opacity: 1;
  z-index: 0;
  transform: unset !important;
}
.banner_image {
    height: 100%;
    position: absolute;
    right: 0;
    width: 100%;
    background: no-repeat center;
    background-size: cover;
    background-image: linear-gradient(60deg, 
              rgb(28 48 91), 
              rgb(0 0 0 / 0%)),url(../images/intro-img-r3.jpg);
    z-index: 1;
}
.banner-box {
  width: 100%;
  padding: 3rem 3rem 3rem 4.375rem;
  background-color: var(--white);
  border-radius: 10px;
  max-width: 37rem;
  position: relative;
  z-index: 9;
}
.about_img_1,
.about_img_2 {
  width: 65%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* About Section */
.about_img_1 img,
.about_img_2 img {
  width: 100%;
}
.about_img_1 {
  margin-bottom: 30%;
}
.about_img_2 .btn.video-btn {
  position: absolute;
  z-index: 99;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.about_img_2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.about_col {
  position: relative;
}
.about_content_col {
  padding-left: 2.5rem;
}
.about_btn .btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.about_btn .btn > span{
  background-color:var(--primary);
}
.about_btn .btn:hover,.about_btn .btn:hover i{
  color:var(--white);
}
/* Services Section */
.service_link {
  display: inline-block;
  padding: 6.25rem 1.5rem 3rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d4d4e1;
  position: relative;
  background-color: var(--white);
  height:100%;
  width: 100%;
}
.service_title {
  margin-bottom: 1rem;
}
.service_icon {
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  padding-top: 1rem;
  padding-left: 1rem;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  min-width: 6rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary);
  margin: 0 auto 1.25rem;
  color: var(--white);
}
.service_icon_bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
  z-index: 1;
  opacity: 0;
  color: var(--white);
  transition: opacity 0.2s 0.1s;
}
.service_icon_bg i {
  font-size: 31.25rem;
}
.service_link:hover {
  background-color: var(--primary);
  color: var(--white);
}
.service_link:hover p {
  color: var(--white);
}
.service_link:hover .service_icon {
  background: var(--white);
  color: var(--primary);
}
.service_link:hover .service_icon_bg {
  opacity: 0.14;
}

/* Counter Section */
#counter_sec {
  color: var(--white)fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("../images/jud-mackrill.jpg");
  position: relative;
}
#counter_sec .section_overlay {
  background-color:#1b305bed;
}
.counter {
    font-size: 36px;
}

/* Why Coose Us section */
section#whychoose {
    padding-bottom: 0;
}
#whychoose .sec_desc {
    margin-bottom: 60px !important;
}
.whychoose_main_col {
  position: relative;
  overflow: hidden;
}
.box_main_col{
  padding: 0;
  overflow: hidden;
}
.box_main_col:not(:last-child){
  border-right:1px solid #f2f3f5c2;
}
.box_bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    transition: 0.8s;
    transform: scale(1.1);
    visibility: hidden;
    opacity: 0;
}
.box_main_col.active .box_bg{
  transform: scale(1.0);
    visibility: visible;
    opacity: 1;
}
.spacer {
    height: 500px;
    width: 100%;
    transition: 0.6s;
}
.box_main_col:hover  .spacer,.box_main_col.active .spacer{
    background-color: #00000029;
}
.box h4 {
    background-color: #f2f3f594;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
}
.box h4::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--secoundry);
    transition: 0.6s;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
.box_main_col:hover .box h4::before,.box_main_col.active .box h4::before{
  transform: unset;
  visibility: visible;
  opacity: 1;
}
.box h4 span {
    position: relative;
    z-index: 3;
}

/* Services Section */
.s_case_col {
  width: 23%;
  margin-left: 15px;
}
.case_img {
  width: 100%;
  height: 242px;
  border-radius: 10px;
  object-fit: cover;
}
.case_title {
  margin-top: 0.8rem;
}
.case_desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case_title_link {
  transition: 0.3s all;
}
.case_title_link:hover {
  color: var(--secoundry);
}

/* Brands Section */
.brand {
  width: 20%;
  display: flex;
  justify-content: center;
}
.brand_img_col {
  max-width: 10rem;
}
.brands .flickity-slider {
  display: flex;
  align-items: center;
}
.brands {
	min-height: 120px;
}

/* Company Vision Section */
.content_col ul {
	margin-bottom: 0;
}
.right_img_col {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.right_img_col .btn.video-btn {
  position: absolute;
  z-index: 99;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
}
.right_img_col .btn.video-btn i {
  font-size: 2.75rem;
}
.right_img_col img {
  height: 24.5rem;
  width: 100%;
  object-fit: cover;
}

/* Pricing Section */
#pricing {
  color: var(--white)fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/jud-mackrill.jpg");
  position: relative;
}
#pricing .section_overlay {
  background-color:#1b305bed;
}
.package_col {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  padding: 2rem;
  border: 1px solid #d4d4e1;
}
.package_col:hover{
  border-color: var(--white);
  box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
}
.package_header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.package_name {
  margin: 0;
}
.included,.excluded{
  position: relative;
  padding-left: 20px;
}
.included::before{
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secoundry);
}
.excluded{
  color:#D7D7D7;
}
.excluded::before{
  content:"\f00d";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
}
.package_drak{
  background-color: var(--secoundry);
  border-color: var(--secoundry);
}
.package_drak:hover{
  border-color: var(--secoundry);
}
.package_drak .package_desc {
    color: var(--white);
}
.package_drak .package_info .btn {
    background: var(--white);
    color: var(--secoundry);
}
.package_drak .package_info .btn:hover{
  color:var(--white);
}
.package_drak .included,.package_drak .included::before{
  color:var(--white);
}

/* News Section */
.news_col {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  border: 1px solid #d4d4e1;
}
.news_img_link {
  display: inline-block;
}
.news_img_link img {
  height: 17.5rem;
  object-fit: cover;
}
.news_info {
  position: relative;
  padding: 2.1875rem 1.25rem 1.25rem;
}
.news_date {
  position: absolute;
  left: 50%;
  top: -1.125rem;
  height: 2.25rem;
  line-height: 2.25rem;
  padding: 0 0.625rem;
  background-color: var(--secoundry);
  color: var(--white);
  font-size: 0.8125rem;
  border-radius: 6px;
  transform: translateX(-50%);
}
.news_title {
  margin-bottom: 0.625rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.2s all;
}
.news_title:hover a {
  color: var(--secoundry);
}
/* Home page css ends here */

/* Footer css goes here */
footer {
  background-color: var(--primary);
}
.footer_main {
  padding: 4rem 0 2rem;
}
footer a,
footer i,
footer p,
footer h6 {
  color: var(--white);
  opacity: 0.8;
  transition: 0.2s all;
}
footer .ftr_logo a {
  opacity: 1;
  display: inline-block;
}
.ftr_logo span{
  color:var(--white);
}
footer a i {
  opacity: 1;
}
footer a:hover {
  opacity: 1;
}
.ftr_info {
  margin: 1.25rem 0;
}
.social-icons {
  margin: 0;
}
.social-icons li {
  display: inline-block;
  margin-right: 0.625rem;
}
.social-icons li a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  border: 1px solid #d4d4e1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:hover {
  background-color: var(--white);
}
.social-icons a:hover i {
  color: var(--primary);
}
.ftr_col_title {
  margin-bottom: 1.5rem;
}
.ftr_links nav ul li {
  overflow: hidden;
}
.ftr_links nav ul li:not(:last-child) {
	margin-bottom: 0.7rem;
}
.ftr_links nav ul li a::after {
  color: var(--white);
}
.ftr_services{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ftr_contact ul li {
  display: flex;
  align-items: flex-start; 
}
.ftr_contact ul li:not(:last-child){
  margin-bottom: 1rem;
}
.ftr_contact ul li p {
  margin: 0;
}
.ftr_contact ul li a:hover {
  text-decoration: underline;
  color: var(--white);
}
.ftr_contact ul li i {
  margin: 4px 5px 0 0;
}
.footer_bottom {
  padding: 1rem 0 1rem;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_bottom ul {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
}
.footer_bottom ul li {
  margin: 0 1.25rem 0 0;
}
.footer_bottom ul li a {
  border-bottom: 1px dashed var(--white);
}
.footer_bottom ul li a:hover {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

/* Footer css ends here */
.image_col {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.image_div {
	width: 720px;
	height: 430px;
	background-size: cover;
	background-image: url('../images/laptop.avif');
	background-position: center;
  position: relative;
}
.image_info {
	padding: 18px;
	bottom: 0;
	left: 0;
	position: absolute;
	color: var(--white);
	background: linear-gradient(#f9808070,#029dad80);
	width: 95%;
	text-transform: uppercase;
	height: 100%;
}
.image_info ul li{
  color:var(--white)
}
.image_info ul li img,.image_info ul li i{
  margin-right: 5px;
}
.image_info ul li img {
	width: 15px;
}
.fa-brands.fa-js {
	color: #efd81d;
}
.fa-brands.fa-wordpress-simple {
	color: #007298;
}
.fa-brands.fa-css3-alt {
	color: #1579b8;
}
.fa-brands.fa-html5 {
	color: #f75421;
}
.seo_img {
	width: 19px !important;
}
.right_text {
	position: absolute;
	transform: rotate(90deg);
	color: var(--white);
	letter-spacing: 7px;
	right: -138px;
	top: 159px;
	height: 100%;
	width: 100%;
	text-transform: uppercase;
	font-weight: 800;
}


.bg {
	padding: 50px;
	min-height: 650px;
	width: 100%;
	max-width: 1000px;
	background-color: #ebeaf5;
	position: relative;
	z-index: 1;
  align-items: center;
}
.ps,.figma,.xd {
	width: 30%;
}
.l_col img {
  width: 22%;
}
.jquery {
	width: 60% !important;
}
.wp {
	width: 38% !important;
  margin-top:10px;
}
.profile_circle {
	width: 200px;
	height: 200px;
	border: 10px solid #ff651e;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
  margin: 0 auto;
}
.profile_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.curve {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: url('../images/bg.png');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}
.o {
	color: #ff651e;
}
.t {
  text-transform: uppercase;
  font-size: 48px;
  white-space: nowrap;
}
.col-4 {
  position: relative;
  margin-top: auto;
  margin-bottom: 26px;
}
.c_col {
  margin-bottom: 115px;
  margin-left: 80px;
}
span.to {
  position: absolute;
  top: 60px;
  font-size: 45px;
  font-weight: 900;
  left: 125px;
  color: #06072e;
}
.html,.css{
  margin-right:15px;
}
.l_col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.b {
  color: #06072e;
}
h1.t.bg-b {
  background-color: #06072e;
  display: inline;
  position: relative;
  padding-right: 10px;
  color: #d3d3f7;
}
.bg-b::before {
  content: "";
  background-color: #06072e;
  width: 18%;
  height: 100%;
  position: absolute;
  left: -18%;
  top: 0;
}
.profile{
  position: relative;
  margin-top: 30px;
}
.online {
  position: absolute;
  bottom: 32px;
  right: 35%;
  width: 25px;
  height: 25px;
  z-index: 99;
  border: 5px solid var(--white);
  background-color: #0acf83;
  border-radius: 50%;
}
.services{
  margin-top: 10px;
  font-size: 30px;
}
.services h1{
  font-size: 30px;
}