@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Varialbes */
:root {
	--font-default: 'Inter', sans-serif;
	--font-heading: 'Inter', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #040d43;
	--dark-secondary: #022b6d;
	--white: #ffffff;
	--color-primary: #2b4dff;
	--color-secondary: #3e00a7;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #f3f7fd;
	--bg-gradient: linear-gradient(90deg, var(--color-primary)  0%, var(--color-secondary) 100%);
	--bg-gradient-reverse: linear-gradient(90deg, var(--color-secondary)  0%, var(--color-primary) 100%);
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

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

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label,
table, th, td, tr, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	/* border: 0; */
	outline: 0;
}

.wrapper {
	height: 100%;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	color: #2b4dff;
}

a img {
	border: none;
}

a:active {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
	opacity: 1;
}

a:focus {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a:hover {
	outline: none;
	text-decoration: none;
	color: var(--color-primary);
	opacity: 1;
}

.color-style-two a:hover {
	color: var(--color-style-two);
}

button {
	outline: medium none;
}

iframe {
	border: none;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eeeeee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

textarea:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ol{
  margin-left: 40px;
}

ul {
	list-style-type: none;
}

ul, li {
	margin: 0px;
	padding: 0;
}

b {
	font-weight: 700;
}

strong {
	font-weight: 700;
}

.row {
	/* --bs-gutter-x: 30px; */
}

i::before {
	line-height: inherit !important;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 700;
}

h1 {
	font-size: 40px;
	margin-bottom: 25px;
}

h2 {
	font-size: 36px;
	margin-bottom: 25px;
}

h3 {
	font-size: 22px;
	margin-bottom: 25px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 14px;
}

a, .btn, button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 700;
	line-height: 26px;
}

p {
	color: var(--color-paragraph);
	margin: 0 0 15px;
	text-transform: none;
	font-weight: 400;
	font-family: var(--font-default);
}

.form-group {
  margin-bottom: 20px;
}

/* Default CSS */
.container-medium {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width:576px) {
  .container-medium {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container-medium {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container-medium {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container-medium {
    max-width: 1400px;
    width: 80%;
  }
}

@media (min-width:576px) {
  .container-full {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container-full {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container-full {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container-full {
    max-width: 1400px;
    width: 90%;
  }
}

@media (min-width:576px) {
  .container-fill {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container-fill {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container-fill {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

.fixed-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
}

.bg-cover-bottom {
  background-size: cover !important;
  background-position: left bottom !important;
  background-repeat: no-repeat;
}

.bg-bottom-center {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-fixed {
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

.bg-gray {
  background-color: #f3f7fd;
}

.bg-gray-hard {
  background-color: #d1eeec;
}

.bg-theme-small {
  background-color: #edf5ff;
}

.bg-light {
  background-color: var(--white) !important;
}

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

.bg-light-gradient {
  background: linear-gradient(90deg, rgba(244,247,252,1) 36%, rgba(255,255,255,1) 100%);
}

.gradient-bg {
  background-image: var(--bg-gradient);
  background-color: var(--color-primary);
}

.bg-gradient {
  background-image: var(--bg-gradient);
  background-color: var(--color-primary);
}

.container-md {
  width: 90%;
  margin: auto;
  position: relative;
}

.text-italic {
  font-style: italic;
}

.text-light h1, 
 .text-light h2, 
 .text-light h3, 
 .text-light h4, 
 .text-light h5, 
 .text-light h6, 
 .text-light p, 
 .text-light a {
  color: var(--white);
}

.shadow {
  position: relative;
  z-index: 1;
  box-shadow: inherit !important;
}

.shadow.dark::after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}




.shadow.theme::after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
}


.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
  z-index: 1;
}

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

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

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

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

.top-border {
  border-top: 1px solid #e7e7e7;
}

.align-center {
  align-items: center;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 25px;
  text-transform: capitalize;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 5px;
  font-size: 17px;
}

.btn i {
  font-size: 20px;
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.btn.btn-sm i {
  font-size: 17px;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.btn.btn-icon i {
  font-size: 50px;
  align-items: center;
  float: left;
  margin-right: 10px;
}

.btn.btn-icon {
  padding: 0;
  line-height: 50px;
}

.btn.btn-icon:hover {
  color: var(--white);
}

.btn-md {
  padding: 13px 40px;
}

.btn-sm {
  padding: 13px 35px;
  font-size: 15px;
}

.btn.btn-sm-pro {
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
  padding: 4px 35px;
  display: inline-block;
}



.btn-dark {
  background-color: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

.btn-dark.border {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--dark) !important;
}

.btn-dark.border:hover {
  background-color: var(--dark);
  color: var(--white) !important;
  border: 2px solid var(--dark) !important;
}


.btn.btn-light {
  background: var(--white) none repeat scroll 0 0;
  border: 2px solid var(--white);
  color: var(--dark);
}

.btn.btn-light.border {
  background: transparent;
  border: 2px solid var(--white) !important;
  color: var(--white);
}

.btn.btn-light.border:hover {
  background: var(--white) none repeat scroll 0 0 !important;
  border: 2px solid var(--white) !important;
  color: var(--dark) !important;
}



.btn-dark:hover, 
 .btn-dark:focus {
  color: var(--dark) !important;
  background: transparent;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-dark-hard {
  background: var(--dark-secondary);
}


.btn-theme {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary);
}

.btn-theme.border {
  background-color: transparent;
  color: var(--dark) !important;
  border: 2px solid var(--color-primary) !important;
}

.text-light .btn-theme.border {
  color: var(--white) !important;
}

.btn-theme.border:hover {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary);
}

.btn-theme.effect:hover, 
 .btn-theme.effect:focus {
  background: var(--dark) none repeat scroll 0 0;
  border: 2px solid var(--dark);
  color: var(--white);
}

.shadow .btn-theme.effect:hover,
.text-light .btn-theme.effect:hover,
.bg-gradient .btn-theme.effect:hover,
.bg-dark .btn-theme.effect:hover {
  background: var(--white) none repeat scroll 0 0;
  border: 2px solid var(--white);
  color: var(--color-heading) !important;
}

.btn.btn-sm-lm {
  font-size: 12px;
  padding: 4px 35px;
}

.bg-theme a.btn-theme.btn:hover,
.bg-theme a.btn-theme.btn:focus {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn .fa-long-arrow-right {
  font-weight: 100;
  transform: rotate(-45deg);
}


.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.overflow-hidden {
  overflow: hidden;
}

button, button:focus {
  border: none !important;
  box-shadow: inherit !important;
  outline: inherit !important;
}

header {
  position: relative;
}


.site-heading h2 {
  display: inline-block;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 0;
  position: relative;
  letter-spacing: 1px;
  line-height: 1.1;
}


.site-heading h4 {
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
}

.bg-dark .site-heading h4 {
  color: var(--white);
}


.site-heading h2 span {
  color: var(--color-primary);
}

.site-heading p {
  margin: 0;
  margin-top: 20px;
  padding: 0 7%;
}

.site-heading h2::before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 40px;
}

.site-heading h2::after {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: 20px;
  position: absolute;
  width: 5px;
}


.shadow .site-heading h2, 
.shadow .site-heading p {
  color: var(--white);
}

.bg-theme .site-heading h2::before,
.shadow .site-heading h2::before {
  background: var(--white) none repeat scroll 0 0;
}


.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}


@media (max-width: 1023px) {
  nav.navbar.validnavs {
    padding: 0;
    box-shadow: var(--box-shadow);
  }
}



/* ============================================================== 
     # Bradcrumb 
=================================================================== */
.breadcrumb-area {
  padding: 30px 0;
}

.breadcrumb-area .breadcrumb {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb-area .breadcrumb::after {
  background: var(--dark) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.breadcrumb-area h1 {
  display: block;
  font-weight: 700;
  font-size: 40px;
  margin-top: -10px;
  margin-bottom: 0;
}

.breadcrumb > li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  padding: 0 5px;
  color: var(--white);
  display: none;
}

.breadcrumb-area .breadcrumb li i {
  margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
  padding: 0 15px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.breadcrumb-area .breadcrumb li::after {
  border: 2px solid var(--white);
  content: "";
  height: 10px;
  left: -7px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.breadcrumb-area .breadcrumb li:first-child::after {
  display: none;
}

.breadcrumb-area .breadcrumb a, 
.breadcrumb-area .breadcrumb li {
  font-family: var(--font-default);
  font-weight: 500;
  color: var(--white);
}

.breadcrumb-area .breadcrumb li.active {
    color: var(--white);
    text-decoration: underline;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ============================================================== 
     # Banner 
=================================================================== */
body, 
.banner-area, 
.banner-area div {
  height: 100%;
}

.banner-area.auto-height, 
.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 150px 0;
}

.banner-area.auto-height.circle-shape .content {
  padding: 200px 0;
}

.banner-area .box-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.banner-area .box-table {
  display: table;
  width: 100%;
}

.banner-area .box-cell, 
 .banner-area .box-cell div {
  height: auto;
}

.banner-area {
  position: relative;
  overflow: hidden;
}


/* Animation delays */
.banner-area .item h1:first-child, 
 .banner-area .item h2:first-child, 
 .banner-area .item h3:first-child, 
 .banner-area .item h4:first-child, 
 .banner-area .item h5:first-child, 
 .banner-area .item h6:first-child {
  animation-delay: .5s;
}

.banner-area .item h1:nth-child(2), 
 .banner-area .item h2:nth-child(2), 
 .banner-area .item h3:nth-child(2), 
 .banner-area .item h4:nth-child(2), 
 .banner-area .item h5:nth-child(2), 
 .banner-area .item h6:nth-child(2) {
  animation-delay: .7s;
}



.banner-area p {
  animation-delay: .5s;
  font-size: 18px;
}

.banner-area .item ul {
  animation-delay: .6s;
}

.banner-area .item a, 
 .banner-area .item button {
  animation-delay: .7s;
}



/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}




/* Content */
.banner-area .thumb {
  position: relative;
  top: 120px;
}

.banner-area.inc-shape .thumb {
  position: relative;
  z-index: 1;
}

.banner-area.inc-shape .thumb::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(assets/img/shape/2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: -1;
}

.banner-area .content h2 {
  font-size: 70px;
  margin-bottom: 25px;
  line-height: 1.1;
}
.banner-area.text-color .content h2 strong {
  font-weight: 700;
  color: var(--color-primary);
}

.banner-area.text-light .content h2 strong {
  color: var(--white);
}

.banner-area .content h2 strong {
  font-weight: 700;
  display: block;
}

.banner-area .content h4 {
  margin-bottom: 25px;
}

.banner-area.text-center .content a,
.banner-area .text-center .content a {
  margin-left: 15px;
  margin-right: 15px;
}

.banner-area.top-pad-60 .content {
  padding-top: 60px;
}

.banner-area.border-shadow .box-table {
  position: relative;
  z-index: 1;
}



.banner-area .item-box .item .row div {
  height: auto;
}




.banner-area.center-item .thumb {
    position: inherit;
    top: 0;
}

.banner-area.center-item .row > div {
    height: auto;
}



.banner-area .content .bottom {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.banner-area .content .bottom a {
    margin-right: 30px;
}


.banner-area .fixed-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-area .fixed-shape img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.banner-area .row.align-center div {
    height: auto;
}

.banner-area .thumbs {
    position: relative;
    z-index: 1;
}





/* ============================================================== 
     # About 
=================================================================== */

.about-area.inc-shape::after {
  transform: translateX(10px);
  position: absolute;
  left: -100px;
  top: 150px;
  content: "";
  height: 100%;
  width: 40%;
  background: url(assets/img/shape/1.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-area .thumb {
  position: relative;
}

.about-area .thumb img {
  border-radius: 8px;
}

.about-area .thumb img:first-child {
  width: 80%;
}

.about-area .thumb img:nth-child(2) {
  position: relative;
  left: 20%;
  width: 80%;
  top: -80px;
  margin-bottom: -80px;
  box-shadow: 0 0 10px #dce0e7;
  padding: 5px;
  background: var(--white);
}

.about-area .info > h5 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 45px;
  color: var(--color-primary);
}

.about-area .info > h5::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 2px;
  width: 30px;
  background: var(--color-primary);
  margin-top: -1px;
}
 


.about-area .info ul li {
  display: flex;
}

.about-area .info ul li i {
  display: inline-block;
  font-size: 60px;
  margin-right: 25px;
  color: var(--color-primary);
  line-height: 1;
}

.about-area .info ul li h4 {
  font-weight: 700;
}

.about-area .info ul li {
  margin-top: 30px;
}

.about-area .info ul li p {
  margin: 0;
}

.about-area .info ul li:first-child {
  margin-top: 0;
}

.about-area .info ul {
  margin-top: 30px;
}

.about-area .info > h3 {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.about-area .info h2 {
  font-weight: 700;
  margin-bottom: 25px;
}




/* ============================================================== 
     # Services Version Two 
=================================================================== */

.service-area .service-items .single-item {
  margin-bottom: 30px;
}

.service-area .service-items .item {
  padding: 67px 37px;
  box-shadow: 0 15px 55px -5px rgba(9,31,67,.1);
  background: var(--white);
  border-radius: 20px;
}

.service-area .service-items .item p {
  margin: 0;
}

.service-area .service-items .item .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 30px;
}

.service-area .service-items .item .info > i {
  display: inline-block;
  font-size: 70px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 30px;
}

.service-area .service-items .item .info > i::after {
  position: absolute;
  left: -10px;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(62.5deg, transparent, rgba(237, 245, 255, 0.9));
  z-index: -1;
  border-radius: 10px;
  transform: rotate(225deg);
}

.service-area .service-items .item .info h4 {
  font-weight: 700;
  margin-bottom: 35px;
}

.service-area .service-items .item:hover .btn-standard::after {
  left: 0;
}

.service-area .service-items .item:hover .btn-standard,
.service-area .service-items .item:hover .btn-standard i {
  color: var(--white);
}




/* ============================================================== 
     # Services Version Three 
=================================================================== */

.service-area .service-box .single-item {
  margin-bottom: 30px;
}

.service-area .service-box .item {
    display: flex;
    padding: 80px;
    background: var(--white);
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-area .service-box .item i {
  display: inline-block;
  font-size: 70px;
  min-width: 50px;
  margin-right: 35px;
  color: var(--color-primary);
  line-height: 1;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}


.service-area .service-box .item p {
    margin-bottom: 0;
}

.service-area .service-box .item .icon {
    position: relative;
    z-index: 1;
}

.service-area .service-box .item .icon::after {
    position: absolute;
    left: -20px;
    top: 0;
    content: "";
    height: 50px;
    width: 50px;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.35s ease-in-out;;
}




/* ============================================================== 
     # Services Details 
=================================================================== */

.services-details-area .content img {
    margin-bottom: 30px;
}

.services-details-area .content h2, 
.services-details-area .content h3, 
.services-details-area .content h4, 
.services-details-area .content h5 {
    font-weight: 700;
    line-height: 1.3;
}

.services-details-area .content p {
  margin-bottom: 25px;
}

.services-details-area .content p:last-child {
  margin-bottom: 0;
}

.services-details-area .content ul li {
    display: block;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-weight: 700;
    color: var(--color-heading);
}

.services-details-area .content ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    height: 100%;
    width: 100%;
    color: var(--color-primary);
}

.services-details-area .content ul li:last-child {
    margin-bottom: 0;
}

.services-details-area .content ul {
    margin-bottom: 25px;
    margin-top: 20px;
}

.services-details-area .content .thumbs img {
    margin-bottom: 0;
    margin-top: 15px;
}

/* Sidebar */
.services-details-area .sidebar-item {
    margin-bottom: 50px;
}

.services-details-area .sidebar-item:last-child {
    margin-bottom: 0;
}

.services-details-area .sidebar-item {
    background: #fafafa;
    border: 1px solid #e7e7e7;
    padding: 30px;
    border-radius: 5px;
}

.services-details-area .sidebar-item .title h4 {
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px;
}

.services-details-area .sidebar-item .title h4::after {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    height: 20px;
    width: 3px;
    background: var(--color-primary);
}

.services-details-area .sidebar-item.link li {
    display: block;
}

.services-details-area .sidebar-item.link li a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
    overflow: hidden;
}

.services-details-area .sidebar-item.link {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    background: transparent;
}

.services-details-area .sidebar-item.link li:last-child a {
    border: none;
}

.services-details-area .sidebar-item.link li a:hover, 
.services-details-area .sidebar-item.link li a.active {
    color: var(--white);
}

.services-details-area .sidebar-item.link li a.active::after {
    position: absolute;
    right: 10px;
    top: 50%;
    content: "\f105";
    border-radius: 50%;
    font-family: "Font Awesome 5 Pro";
    font-weight: 660;
    transform: translateY(-50%);
    font-size: 20px;
}

.services-details-area .sidebar-item.link li a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--bg-gradient);
    transition: all 0.35s ease-in-out;
    z-index: -1;
}

.services-details-area .sidebar-item.link li a:hover::before,
.services-details-area .sidebar-item.link li a.active::before {
  width: 100%;
}

.services-details-area .sidebar-item.banner {
    border-radius: 5px;
    padding: 0;
    border: none;
    background: transparent;
}

.services-details-area .sidebar-item.banner .thumb {
    position: relative;
    z-index: 1;
}

.services-details-area .sidebar-item.banner .thumb img {
    border-radius: 5px;
}

.services-details-area .sidebar-item.banner .thumb .content {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 30px;
}

.services-details-area .sidebar-item.banner .thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--black);
    border-radius: 5px;
    opacity: 0.5;
}

.services-details-area .sidebar-item.banner .thumb .content h3 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    font-size: 26px;
}

.services-details-area .sidebar-item.banner .thumb .content h3 i {
    height: 45px;
    width: 45px;
    line-height: 45px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    margin-right: 10px;
    z-index: 1;
}

.services-details-area .sidebar-item.banner .thumb .content h3 i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.services-details-area .sidebar-item.banner .thumb .content h5 {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 25px;
}

.services-details-area .sidebar-item.brochure a {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.services-details-area .sidebar-item.brochure a i {
    font-size: 40px;
    font-weight: 500;
    margin-right: 10px;
    color: var(--color-primary);
}

.services-details-area .sidebar-item.brochure a:last-child {
    margin-top: 15px;
}





/* ============================================================== 
     # Skill 
=================================================================== */

.quick-contact-area.half-bg {
  position: relative;
  z-index: 1;
}

.quick-contact-area.half-bg::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 60%;
  width: 100%;
  background: #f3f7fd;
  z-index: -1;
}

.quick-contact-items {
  padding: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.quick-contact-items::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  mix-blend-mode: multiply;
}

.quick-contact-items h5 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
}

.quick-contact-items h2 {
  font-weight: 700;
}

.quick-contact-items h2 strong {
  text-decoration: underline;
}






/* ============================================================== 
     # Team 
=================================================================== */

.team-area .team-items .single-item {
  margin-bottom: 30px;
}

.team-area .team-items .thumb {
  position: relative;
}

.team-area .team-items .thumb img {
  border-radius: 8px;
}

.team-area .team-items .info {
  padding: 30px;
  background: var(--white);
  padding-bottom: 0;
  margin-bottom: -5px;
}

.team-area .team-items .info h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.team-area .team-items .info span {
  font-weight: 500;
  text-transform: capitalize;
}

.team-area .team-items .social {
  position: absolute;
  right: 30px;
  bottom: -35px;
}

.team-area .team-items .social label i {
  transform: rotate(45deg);
}



.share-icon {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  transform: translateX(0) rotate(180deg);
  cursor: pointer;
  transition: .3s ease-in-out;
}










/* ============================================================== 
     # About / Faq 
=================================================================== */

.about-area .faq-content {
  margin-top: 25px;
}



.faq-area .info h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

.accordion .card-header h4:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
}

.accordion .card-header h4.collapsed:after {
  content: "\f105";
  font-weight: 700;
  color: #999999;
}

.faq-area .faq-content .card {
  border: none;
  margin-bottom: 31px;
  overflow: inherit;
  background: transparent;
  border-radius: 5px;
  padding: 0;
}

.faq-area .faq-content {
    margin-top: 25px;
}

.faq-area .faq-content .card:last-child {
  margin-bottom: 0;
}

.faq-area .faq-content .card .card-header {
  border: none;
  background: transparent;
  padding: 0;
}

.faq-area .faq-content .card .card-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  padding-right: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.faq-area .faq-content .card .card-body {
  padding-left: 30px;
  padding: 0;
  padding-top: 15px;
  border-top: 1px solid #e7e7e7;
  margin-top: 20px;
}

.faq-area .faq-content .card .card-body p:last-child {
  margin-bottom: 0;
}

.faq-area .faq-content .accordion-item {
  background: transparent;
  border: none;
}

.faq-area .faq-content .accordion-item button.accordion-button {
  background: transparent;
  color: var(--color-heading);
  box-shadow: none;
  font-size: 22px;
  padding: 10px 0;
}

.bg-dark .faq-area .faq-content .accordion-item button.accordion-button {
  color: var(--white);
}

.bg-dark .faq-area .faq-content .accordion-item button.accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-area .faq-content .accordion-item .accordion-body {
  border-top: 1px solid #cccccc;
  padding: 0;
  padding-top: 20px;
  margin-top: 10px;
  padding-bottom: 20px;
}

.bg-dark .faq-area .faq-content .accordion-item .accordion-body {
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-area .faq-content .accordion-item button.accordion-button strong {
  height: 45px;
  width: 45px;
  min-width: 45px;
  text-align: center;
  line-height: 45px;
  background: var(--bg-gradient);
  color: var(--white);
  border-radius: 50%;
  margin-right: 15px;
}



/* ============================================================== 
     # Blog Area 
=================================================================== */

.blog-area .single-item {
  margin-bottom: 30px;
}

.blog-area .blog-items .item {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  overflow: hidden;
  border-radius: 10px;
}

.blog-area .item .info {
  padding: 30px;
}

.blog-area .info .cats {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.blog-area .info .cats a {
  display: inline-block;
  background: var(--bg-gray);
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid #e7e7e7;
  padding: 2px 15px;
  border-radius: 5px;
  font-weight: 500;
}

.bg-dark .blog-area .info .cats a {
  background: var(--bg-gradient);
  border: none;
}

.bg-dark .blog-area .item .info h4 {
  font-size: 24px;
}

.blog-area .info .cats a:hover {
  color: var(--color-primary);
}

.blog-area .item .info .meta {
  margin-bottom: 15px;
}

.blog-area .item .info .meta ul li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  font-weight: 500;
  font-size: 15px;
  margin-top: 10px;
}

.blog-area .item .info .meta ul li::after {
  position: absolute;
  right: -2px;
  top: 6px;
  content: "";
  height: 15px;
  width: 1px;
  background: var(--color-paragraph);
}

.blog-area .item .info .meta ul li:last-child::after {
  display: none;
}

.blog-area .item .info ul li i {
  color: var(--color-primary);
  margin-right: 5px;
  font-weight: 500;
}

.blog-area .item .info h4 {
  font-weight: 700;
  line-height: 1.4;
}



.blog-area .item .info h4 a:hover {
  color: var(--color-primary);
}

.blog-area .item .info a.read-more {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  padding-right: 35px;
}

.blog-area .info .meta a {
  font-weight: 500;
  color: var(--color-paragraph);
}

.blog-area .info h1,
.blog-area .info h2,
.blog-area .info h3,
.blog-area .info h4 {
  font-weight: 700;
}


.btn-more {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-transform: uppercase;
  padding-right: 40px;
}

.btn-more::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 30px;
  transition: all 0.35s ease-in-out;
  border-top: 2px solid;
}

.btn-more:hover::after {
  border-color: var(--color-primary);
}

a.btn-more:hover {
  color: var(--color-primary);
}

.blog-area .item .info a.read-more:hover {
  color: var(--color-primary);
}

.blog-area .thumb {
  position: relative;
}


.blog-area .item .info a.btn {
  margin-top: 5px;
}

/* Sidebar */

.blog-area.right-sidebar .sidebar {
  padding-left: 35px;
}

.blog-area .sidebar .title {
  display: block;
}

.blog-area .sidebar .title h4 {
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: -5px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  font-size: 20px;
  display: inline-block;
  padding-left: 15px;
}

.blog-area .sidebar .title h4::after {
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  height: 18px;
  width: 2px;
  border-left: 3px solid var(--color-primary);
}

.blog-area .sidebar input[type="text"] {
  border: 1px solid #e7e7e7;
  box-shadow: inherit;
  min-height: 60px;
  
}

.blog-area .sidebar form {
  position: relative;
}

.blog-area .sidebar button[type="submit"] {
  background: var(--color-primary);
  border: medium none;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

.blog-area .sidebar input[type="submit"]:hover {
  background: var(--color-primary) none repeat scroll 0 0;
}

.blog-area .sidebar .sidebar-item {
  float: left;
  margin-bottom: 50px;
  width: 100%;
  background: var(--white);
}

.blog-area .sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}


.blog-area .sidebar .sidebar-item li a:hover {
  color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.category li a span {
  color: #b5b5b5;
  font-size: 14px;
  margin-left: 5px;
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
  top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child {
  margin-top: 0;
  padding-top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
  top: 0;
}

.blog-area .sidebar .sidebar-item.category li:last-child {
  border: medium none;
  margin-bottom: 0;
  padding-bottom: 0;
}


.blog-area .blog-items .info > ul li {
  margin-bottom: 15px;
  color: var(--color-heading);
  position: relative;
  z-index: 1;
  padding-left: 25px;
  display: block;
}

.blog-area .blog-items .info > ul {
  margin-bottom: 25px;
  margin-top: 25px;
}

.blog-area .blog-items .info > ul li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
}



.blog-area.full-blog.single-blog .form-group.submit {
  margin-bottom: 0;
}



/* Pagination */

.pagination li {
  display: inline-block;
  margin-top: 7px;
}

ul.pagination {
  display: block;
  margin-top: 30px;
}

.pagination li a {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 5px;
  margin: 0 2px;
  color: var(--color-primary);
  font-weight: 700;
}

.pagination li.page-item.active a {
  background: var(--color-primary);
  border-color: var(--color-primary);
}


/* ============================================================== 
     # Contact 
=================================================================== */

.contact-area {
  position: relative;
  z-index: 1;
}

.contact-area .fixed-bg {
  position: absolute;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 55%;
  transform: skewX(-10deg);
  margin-left: -5%;
}

.contact-area .content h2 {
  font-weight: 700;
}

.contact-area .content .heading {
  margin-bottom: 30px;
}

.contact-area form input, .contact-area form textarea {
  border: none;
  box-shadow: inherit;
  padding: 15px;
  background: #fafafa;
}

.contact-area.bg-gray form input, 
.contact-area.bg-gray form textarea {
  background: var(--white);
      display: block;
    width: 100%;
}

.contact-area form textarea {
  min-height: 150px;
}

.contact-area form button {
  background: var(--color-primary);
  border: none;
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 5px;
}

.contact-area form .col-lg-6 {
  padding: 0 8px;
}

.contact-area form .row:first-child {
  margin: 0 -8px;
}

.contact-area img.loader {
  margin-left: 10px;
}

.contact-area .info {
  padding-left: 35px;
}

.contact-area .contact-tabs > ul li {
  display: inline-block;
  margin: 0;
}

.contact-area .contact-tabs > ul {
  margin-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
  margin-top: -15px;
}

.bg-gray.contact-area .contact-tabs > ul {
  border-bottom: 1px solid #cccccc;
}

.contact-area .contact-tabs > ul li button {
  display: block;
  position: relative;
  background: transparent;
  border: none;
  padding: 15px 0;
  margin-right: 20px;
  text-transform: capitalize;
  font-size: 1.5rem;
  color: var(--color-heading);
}

.contact-area .contact-tabs > ul li button.active::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 3px;
  width: 100%;
  background: var(--color-primary);
}

.contact-area .contact-tabs > ul li button.active {
  background: transparent;
  color: var(--color-primary);
}

.contact-tabs .tab-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-tabs .tab-content ul li i {
  display: inline-block;
  font-size: 30px;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  background: #dde3ff;
  border-radius: 50%;
  color: var(--color-primary);
  margin-right: 20px;
}

.contact-tabs .tab-content ul li .info {
  padding: 0;
}

.contact-tabs .tab-content ul li:last-child {
  margin-bottom: 0;
}

.contact-tabs .tab-content ul li .info span {
  display: block;
  font-weight: normal;
  text-transform: none;
  color: var(--color-paragraph);
}

.contact-tabs .tab-content ul li .info p {
  margin-bottom: 0;
}

.contact-tabs .tab-content ul li .info p strong {
  display: block;
  color: var(--color-heading);
  font-size: 20px;
  font-weight: 600;
}

.contact-tabs .tab-content iframe {
  display: block;
  height: 100%;
  min-height: 400px;
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 15px;
  background: var(--white);
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

.contact-area .tab-content .info {
  margin: 0;
}

/* Google Mpas */
.google-maps iframe {
  display: block;
  height: 100%;
  min-height: 550px;
  position: relative;
  width: 100%;
  z-index: 1;
}


/* ============================================================== 
     # Footer 
=================================================================== */
footer {
  position: relative;
  z-index: 1;
}

footer .fixed-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: -1;
}

footer .fixed-shape img {
  opacity: 0.3;
}

footer.bg-dark .fixed-shape img {
  opacity: 0.1;
}

footer img, 
footer .widget-title {
  font-weight: 700;
  margin-bottom: 30px;
}



footer .item {
  margin-top: 50px;
}

footer .f-items.default-padding {
  padding-top: 70px;
}



footer .f-item.link li {
  margin-bottom: 15px;
}

footer .f-item.link li a {
  color: var(--color-paragraph);
  font-weight: 500;
}

footer .f-item.link li a:hover {
  color: var(--color-primary);
}

footer .f-item.link li:last-child {
  margin-bottom: 0;
}

footer.bg-dark .f-item.link li a {
  color: #c2d1e2;
}

footer.bg-dark .f-item.link li a:hover {
  color: var(--white);
}

footer.bg-dark p {
  color: #c2d1e2;
}

footer .f-item .address li strong {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
}

footer .f-item .address li {
  margin-bottom: 20px;
}

footer .f-item .address li:last-child {
  margin-bottom: 0;
}

footer.bg-dark .f-item .address li {
  color: #c2d1e2;
}

footer.bg-dark .f-item .address li a {
  color: #c2d1e2;
}

footer .f-item .address li a {
  font-weight: 500;
}

footer.bg-dark .f-item .address li strong {
  color: var(--white);
}

footer .f-item .download h5 {
  font-weight: 700;
  margin: 0;
}

footer .f-item .download {
  margin-top: 30px;
}

footer .f-item .download a {
  display: inline-block;
  margin-right: 25px;
  margin-top: 15px;
  color: var(--color-paragraph);
}

footer.bg-dark .f-item .download a {
  color: #c2d1e2;
}

footer .f-item .download a:last-child {
  margin-right: 0;
}

footer .f-item .download a i {
  font-size: 25px;
  margin-right: 5px;
  position: relative;
  top: 3px;
  color: var(--color-primary);
}

footer.bg-dark .f-item .download a i {
  color: #c2d1e2;
}

footer .f-item .download a i.fab.fa-apple {
  font-size: 32px;
}

/* Footer Bottom */

footer.bg-dark .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom li {
  display: inline-block;
  margin: 0;
  margin-left: 15px;
}

.footer-bottom p {
  margin: 0;
  color: var(--dark);
}

footer.bg-dark .footer-bottom p {
  margin: 0;
  color: #cccccc;
}

footer.bg-dark .footer-bottom a {
  color: #c2d1e2;
}

.footer-bottom {
  padding: 65px 0;
  border-top: 1px solid #e7e7e7;
}

.bg-dark .footer-bottom p a {
  color: var(--white) !important;
}



.bg-dark .bg-gray {
  background: #040b42;
}




.bg-dark .faq-area .faq-content .card .card-body {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark .faq-area .faq-content .card .card-body p {
  opacity: 0.8;
}

.bg-dark .team-area .team-items .info {
  background: transparent;
}

.bg-dark .team-area .team-items .social {
  bottom: -25px;
}

.bg-dark .share-button {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.4);
}

.bg-dark .blog-area .blog-items .item {
  background: transparent;
  box-shadow: inherit;
}

.bg-dark .blog-area .blog-items .item img {
  border-radius: 7px;
}

.bg-dark .blog-area .blog-items .item .info {
  padding: 0;
  padding-top: 30px;
}

.bg-dark .blog-area .info .meta a {
  color: #cccccc;
}

.bg-dark .blog-area .item .info ul li i {
  color: #cccccc;
}

.bg-dark .blog-area .info .meta a:hover {
  color: var(--color-primary);
}



.attr-nav > ul > li.button a {
  background: var(--color-primary);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (min-width: 1024px) {
  .attr-nav > ul > li.button {
      padding: 20px 0;
      margin-left: 10px;
  }

  .attr-nav > ul > li.button a {
    background: var(--color-primary);
    padding: 14px 40px !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    border-radius: 30pc;
}

  .title {
    /* font-size: 45px; */
  }



  .blog-area.single .item .info {
    padding: 60px;
  }

}



.faq-area .faq-content {
  margin-top: 0;
}


.padding-40{
  padding-top: 40px;
  padding-bottom: 40px;
}



#formsubmit{
  background: #2b4dff;
  color: #fff;
  border-radius: 6px;
}


tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 2px;
    padding: 4px;
}



.blog-area .blog-items .info > ol li{
  margin-bottom: 15px;
}



.navbar .attr-right .attr-nav li .call span{
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
}

.navbar .attr-right .attr-nav li .call span a{
  text-transform: none;
}


.the-subtitle{
    display: inline-block;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    line-height: 1.1;
    font-size: 36px;
    color: var(--color-heading);
}



.the-subtitle::before {
    background: var(--color-primary) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 40px;
}


.the-subtitle-blue{
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
}


.the-subtitle-service{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    color: var(--color-heading);
}


.footer-title{
    color: var(--white);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 22px;
}



/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  padding: 18px 20px 30px 20px;
}



/* IMAGE */
.blog-card__img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* CONTENT */
.blog-card__body {
  padding: 18px 18px 16px 18px;
}

.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #9aa0a6;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #0f172a;
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px 0;
  color: #475569;
}

.blog-card__more {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}



.notebox {
    display: flex;
    align-items: flex-start;
    background-color: #fff9db;
    border-left: 4px solid #f7d154;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.notebox-icon {
    font-size: 24px;
    color: #f7b500;
    margin-right: 15px;
    flex-shrink: 0;
}


.notebox p {
    margin: 0;
    color: #333;
}

.footer-right-links{
    display:flex;
    justify-content:flex-end;
    gap:20px;
}

.footer-right-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    opacity:0.85;
    transition:0.2s;
}

.footer-right-links a:hover{
    opacity:1;
}


.info strong{
  color: #000;
}

.mt-20{
  margin-top: 20px;
}

.mb-20{
  margin-bottom: 20px;
}



.author-box span{
  font-weight: bold;
}


.timeline-items {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.timeline-items::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #004685; /* Logonuzun laciverti */
    top: 50%;
    left: 0;
    z-index: 1;
}

.timeline-item {
    padding: 20px;
    position: relative;
    z-index: 2;
    width: 25%;
    text-align: center;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #004685;
}

.timeline-item .year {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #004685;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
}



.testimonial-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    height:100%;
}

.testimonial-card p{
    font-style:italic;
    font-size:15px;
    margin-bottom:20px;
}

.testimonial-card h5{
    margin-bottom:5px;
}

.testimonial-img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}


@media(max-width:768px){

    .footer-right-links{
        justify-content:center;
        flex-direction:row;
        align-items:center;
        margin-top:10px;
    }

    .footer-bottom p{
        text-align:center;
    }



    .timeline-items {
        flex-direction: column;
    }
    .timeline-items::after {
        width: 4px;
        height: 100%;
        left: 30px;
        top: 0;
    }
    .timeline-item {
        width: 100%;
        text-align: left;
        padding-left: 60px;
    }
    .timeline-content {
        margin-bottom: 20px;
    }



.breadcrumb-area .breadcrumb li.active{
  display: none;
}
    

}



@font-face {
  font-family: "Flaticon";
  src: url("assets/fonts/Flaticon.eot");
  src: url("assets/fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("assets/fonts/Flaticon.woff") format("woff"),
       url("assets/fonts/Flaticon.ttf") format("truetype"),
       url("assets/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("./Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
  font-family: Flaticon;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-medal:before { content: "\f100"; }
.flaticon-certification:before { content: "\f101"; }
.flaticon-trophy:before { content: "\f102"; }
.flaticon-award-star-with-olive-branches:before { content: "\f103"; }
.flaticon-award-medal-of-number-one-with-olive-branches:before { content: "\f104"; }
.flaticon-cogwheel:before { content: "\f105"; }
.flaticon-customer-service:before { content: "\f106"; }
.flaticon-maintenance:before { content: "\f107"; }
.flaticon-cloud-computing:before { content: "\f108"; }
.flaticon-cloud-computing-1:before { content: "\f109"; }
.flaticon-cloud-storage:before { content: "\f10a"; }
.flaticon-cyber-security:before { content: "\f10b"; }
.flaticon-cyber-security-1:before { content: "\f10c"; }
.flaticon-globe-grid:before { content: "\f10d"; }
.flaticon-backup:before { content: "\f10e"; }
.flaticon-backup-1:before { content: "\f10f"; }
.flaticon-backup-2:before { content: "\f110"; }
.flaticon-select:before { content: "\f111"; }
.flaticon-technical-support:before { content: "\f112"; }
.flaticon-tools:before { content: "\f113"; }
.flaticon-interview:before { content: "\f114"; }
.flaticon-meeting:before { content: "\f115"; }
.flaticon-video-call:before { content: "\f116"; }
.flaticon-plan:before { content: "\f117"; }
.flaticon-strategy:before { content: "\f118"; }
.flaticon-sketch:before { content: "\f119"; }
.flaticon-help:before { content: "\f11a"; }
.flaticon-gear:before { content: "\f11b"; }
.flaticon-secure-data:before { content: "\f11c"; }
.flaticon-secure:before { content: "\f11d"; }
.flaticon-firewall:before { content: "\f11e"; }
.flaticon-firewall-1:before { content: "\f11f"; }
.flaticon-firewall-2:before { content: "\f120"; }
.flaticon-implement:before { content: "\f121"; }
.flaticon-analytics:before { content: "\f122"; }
.flaticon-analysis-1:before { content: "\f123"; }
.flaticon-research:before { content: "\f124"; }
.flaticon-reduction:before { content: "\f125"; }
.flaticon-risk:before { content: "\f126"; }
.flaticon-location:before { content: "\f127"; }
.flaticon-pin:before { content: "\f128"; }
.flaticon-email-1:before { content: "\f129"; }
.flaticon-email:before { content: "\f12a"; }
.flaticon-call:before { content: "\f12b"; }
.flaticon-telephone:before { content: "\f12c"; }
.flaticon-apple:before { content: "\f12d"; }
.flaticon-apple-1:before { content: "\f12e"; }
.flaticon-google-play:before { content: "\f12f"; }
.flaticon-google-play-1:before { content: "\f130"; }


