
/*
Default Style
============================*/
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;500;700;800;900&display=swap');
:root {
  --color-primary: #020367;
  --color-secondary: #03b4ea;
  --color-secondary-alt: #0983a8;
  --color-tertiary: #050505;
  --color-heading: #000000;
  --color-body: #000000;
  --color-gray: #65676B;
  --color-midgray: #878787;
  --color-light: #E4E6EA;
  --color-lighter: #CED0D4;
  --color-lightest: #F0F2F5;
  --color-border: #eff4fa;
  --color-white: #ffffff;
}

body {
  font-size: 16px;
  font-family: 'Tajawal', sans-serif;
  color: #333333;
}

body.one-body-color {
  background-color: var(--color-lightest);
}

body.three-body-color {
  background-color: var(--color-lightest);
}

a {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #333333;
}

a:hover {
  text-decoration: none;
  color: #020367;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1b1b1b;
  font-weight: bold;
}

h3 {
  line-height: 1.5;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  height: 50px;
  color: #020367;
  border: 1px solid #ebebeb;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid var(--color-lighter);
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #020367;
}

.bg-color-two {
  background-color: #f8f7f2;
}

.bg-color-three {
  background-color: #eff4fa;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  background-color: var(--color-primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 15px 40px;
}

.default-btn:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

/*
Read More Btn Area Style*/
.read-more {
  font-weight: 600;
  font-size: 15px;
  color: #1b1b1b;
}

.read-more i {
  position: relative;
  position: relative;
  top: 1.7px;
  margin-left: 5px;
}

.read-more:hover {
  color: #020367;
  letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -6px auto 50px;
  text-align: center;
  position: relative;
}

.section-title span {
  font-size: 16px;
  color: #020367;
  display: block;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title p {
  max-width: 600px;
  margin: auto;
}

.section-title.white-title span {
  color: #020367;
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

/*
Header Area Style
======================================================*/
.top-header {
  background-color: var(--color-light);
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-header .header-left-content .contact-info {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-right: 30px;
}

.top-header .header-left-content .contact-info li {
  display: inline-block;
  margin-right: 30px;
  color: #1b1b1b;
  position: relative;
  padding-left: 30px;
}

.top-header .header-left-content .contact-info li i {
  color: #020367;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  font-size: 20px;
  top: -1px;
  left: 0;
}

.top-header .header-left-content .contact-info li:last-child {
  margin-right: 0;
}

.top-header .header-left-content .contact-info li a {
  font-size: 15px;
  color: #1b1b1b;
}

.top-header .header-left-content .contact-info li a:hover {
  color: #020367;
}

.top-header .header-left-content .social-icon {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
  top: 2px;
}

.top-header .header-left-content .social-icon li {
  display: inline-block;
  margin-right: 10px;
}

.top-header .header-left-content .social-icon li a i {
  font-size: 18px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header .header-left-content .social-icon li a:hover i {
  color: #020367;
}

.top-header .header-left-content .social-icon li:last-child {
  margin-right: 0;
}

.top-header .header-right-content {
  line-height: 1;
  text-align: right;
  position: relative;
  top: -4px;
}

.top-header .header-right-content .language {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
}

.top-header .header-right-content .language .language-settings {
  position: relative;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #333333;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle::after {
  display: none;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle.language-btn {
  display: inline-block;
  font-size: 15px;
  padding-left: 20px;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle.language-btn i {
  position: relative;
  font-size: 20px;
  top: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle.language-btn span {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 16px;
  color: #020367;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle:hover {
  color: #020367;
}

.top-header .header-right-content .language .language-settings .dropdown-toggle:hover .language-btn i {
  color: #020367;
}

.top-header .header-right-content .language .language-settings .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-top: 30px !important;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  left: 0 !important;
  right: auto !important;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  display: block;
  top: 0;
  border-top: 2px solid #020367;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item {
  padding: 0;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 600;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item::before {
  display: none;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item span:hover {
  color: #020367;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item:hover {
  background-color: transparent !important;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.top-header .header-right-content .language .language-settings .dropdown-menu .dropdown-item.active {
  color: #020367;
  background-color: transparent;
}

.top-header .header-right-content .language .language-settings .dropdown-menu.show {
  -webkit-transform: scaleX(1) !important;
          transform: scaleX(1) !important;
}

.top-header .header-right-content .my-account {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}

.top-header .header-right-content .my-account li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.top-header .header-right-content .my-account li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.top-header .header-right-content .my-account li a {
  font-size: 15px;
  color: #333333;
  position: relative;
  z-index: 1;
}

.top-header .header-right-content .my-account li a i {
  position: relative;
  top: 2px;
  margin-right: 5px;
  font-size: 16px;
  color: #020367;
}

.top-header .header-right-content .my-account li a span {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 10px;
  border-radius: 50%;
}

.top-header .header-right-content .my-account li a:hover {
  color: #020367;
}

.top-header.top-header-style-two {
  background-color: #111111;
}

.top-header.top-header-style-two .header-left-content li a {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .language .language-settings .dropdown-toggle {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .my-account li a {
  color: #ffffff;
}

.top-header.top-header-style-two .header-right-content .my-account li a span {
  background-color: #ffffff;
  color: #1b1b1b;
  font-size: 12px;
}

/*
Nav Area Style
======================================================*/
.navbar-area {
   
    background-color: #ffffff;
}

.navbar-area .desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-area .desktop-nav .navbar {
  position: inherit;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin-right: 0;
}

.navbar-area .desktop-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  line-height: 1;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-left: 0;
  margin-right: 0;
  padding: 35px 0;
  position: relative;
  margin: 0 15px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a:hover {
  color: #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 130%;
  left: 15px;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  z-index: 99;
  display: block;
  padding: 0;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-top: 2px solid #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 14px;
  color: #1b1b1b;
  position: relative;
  padding: 15px 15px;
  border-bottom: 1px solid #eeeeee;
  margin-left: 0;
  margin-right: 0;
  text-transform: capitalize;
  display: block;
  font-weight: 600;

}
.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 7px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 20px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--color-primary);  
  border-bottom:transparent;
  transform-origin: 50% 50%;
  transform: translate3d(-30%, 0, 0);
  transition: transform .3s cubic-bezier(0.36, 0, 0.24, 1);
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--color-primary);
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 100%;
  top: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  position: absolute;
  right: -98%;
  top: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  position: absolute;
  right: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b1b1b;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px dashed #eeeeee;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #020367;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:last-child a {
  border-bottom: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -4px !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu:last-child .dropdown-menu {
  right: -100%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 98%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu::before {
  height: 100%;
  right: auto;
  bottom: 0;
}

.navbar-area .desktop-nav .navbar .others-option {
  position: relative;
  top: -2px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item {
  color: #333333;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 3px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay {
  display: none;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-top: 18px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #1b1b1b;
  outline: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: #020367;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #020367;
  border: none;
  width: 50px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: #1b1b1b;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 46px;
  height: 46px;
  line-height: 46px;
  background-color: #020367;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .search-btn:hover {
  background-color: #020367;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 46px;
  height: 46px;
  line-height: 46px;
  background-color: #020367;
  text-align: center;
  border-radius: 50%;
  display: none;
  font-size: 20px;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .close-btn:hover {
  background-color: #020367;
}

.navbar-area .desktop-nav .navbar .others-option .option-item .close-btn.active {
  display: block;
}

.navbar-area .desktop-nav .navbar .others-option .get-quote {
  display: inline-block;
  margin-left: 30px;
}

.navbar-area.navbar-area-style-two {
  background-color: #f8f7f2;
}

.navbar-area.navbar-area-style-two .desktop-nav .navbar .others-option .option-item .search-btn, .navbar-area.navbar-area-style-two .desktop-nav .navbar .others-option .option-item .close-btn {
  color: #020367;
  background-color: #ffffff;
}

.navbar-area.navbar-area-style-three {
  background-color: #f9faff;
}

.navbar-area.navbar-area-style-three .desktop-nav .navbar .others-option .option-item .search-btn, .navbar-area.navbar-area-style-three .desktop-nav .navbar .others-option .option-item .close-btn {
  color: #333333;
  background: #eff4fa;
  border-radius: 0;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 5px;
  padding-bottom: 5px;
}

.mobile-nav {
  display: none;
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -34px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #1b1b1b;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #020367;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  z-index: 2;
  padding: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  max-width: 235px;
  right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.others-option-for-responsive .others-option {
  position: relative;
}

.others-option-for-responsive .others-option .option-item {
  color: #333333;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 0;
}

.others-option-for-responsive .others-option .option-item .search-overlay {
  display: none;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-top: 18px;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #1b1b1b;
  outline: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: #020367;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #020367;
  border: none;
  width: 50px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 0;
}

.others-option-for-responsive .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: #1b1b1b;
}

.others-option-for-responsive .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 39px;
  height: 39px;
  line-height: 39px;
  background-color: #020367;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
}

.others-option-for-responsive .others-option .option-item .search-btn:hover {
  background-color: #020367;
}

.others-option-for-responsive .others-option .option-item .close-btn {
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ffffff;
  width: 39px;
  height: 39px;
  line-height: 39px;
  background-color: #020367;
  text-align: center;
  border-radius: 50%;
  display: none;
  font-size: 20px;
}

.others-option-for-responsive .others-option .option-item .close-btn:hover {
  background-color: #020367;
}

.others-option-for-responsive .others-option .option-item .close-btn.active {
  display: block;
}

.others-option-for-responsive .others-option .get-quote {
  display: inline-block;
  margin-left: 14px;
}

/*
Hero Slider Area Style
======================================================*/
.hero-slider-area .owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 50%;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
}

.hero-slider-area .owl-theme .owl-nav .owl-prev, .hero-slider-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #020367;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev i, .hero-slider-area .owl-theme .owl-nav .owl-next i {
  font-size: 20px;
  color: #020367;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev:hover, .hero-slider-area .owl-theme .owl-nav .owl-next:hover {
  background-color: #020367;
}

.hero-slider-area .owl-theme .owl-nav .owl-prev:hover i, .hero-slider-area .owl-theme .owl-nav .owl-next:hover i {
  color: #ffffff;
}

.hero-slider-area .owl-theme .owl-nav .owl-next {
  right: 0;
  left: auto;
}

.hero-slider-area .owl-dots {
  margin-top: 0 !important;
  line-height: 1;
  display: -ms-grid;
  display: grid;
  position: absolute;
  right: 50px;
  top: 50%;
}

.hero-slider-area .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 10px 0;
  background: transparent !important;
  border: 1px solid var(--color-lighter);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.hero-slider-area .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 50%;
  margin: 3px;
}

.hero-slider-area .owl-dots .owl-dot:hover span {
  border-color: #020367;
}

.hero-slider-area .owl-dots .owl-dot:hover span::before {
  background-color: #020367;
}

.hero-slider-area .owl-dots .owl-dot.active span {
  border-color: #020367;
}

.hero-slider-area .owl-dots .owl-dot.active span::before {
  background-color: #020367;
}

.hero-slider-area .hero-slider-content {
  opacity: 0.5;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  /* background-color: rgba(239, 244, 250, 0.434); */
  background-color: var(--color-light);
  padding: 20px 20px;
}

.hero-slider-area .owl-item.active.center .hero-slider-content {
  opacity: 1;
}

.hero-slider-area .owl-item.active .hero-slider-content {
  overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content span {
  -webkit-animation: 1s .1s fadeInDownBig both;
          animation: 1s .1s fadeInDownBig both;
}

.hero-slider-area .owl-item.active .hero-slider-content h1 {
  -webkit-animation: 1s .1s fadeInLeft both;
          animation: 1s .1s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content p {
  -webkit-animation: 1s .1s fadeInRight both;
          animation: 1s .1s fadeInRight both;
}

.hero-slider-area .owl-item.active .hero-slider-content .hero-slider-btn {
  -webkit-animation: 1s .1s fadeInUpBig both;
          animation: 1s .1s fadeInUpBig both;
}

.hero-slider-area .hero-slider-item {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 505px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-slider-area .hero-slider-item.bg-1 {
  background-image: url(../images/news-slider/pexels-photo-4367584.jpeg);
}

    .hero-slider-area .hero-slider-item.bg-2 {
        background-image: url('../images/banner/banner.jpg');
        /*//background-image: url(../images/banner/banner.jpg);*/
    }

.hero-slider-area .hero-slider-item.bg-3 {
  background-image: url(../images/news-slider/55ef316f-7934-4908-9bdd-14c0c3c34a1c.jpg);
}

.hero-slider-area .hero-slider-item.bg-4 {
  background-image: url(../images/slider/slider-4.jpg);
}

.hero-slider-area .hero-slider-item.bg-5 {
  background-image: url(../images/slider/slider-5.jpg);
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content {
  opacity: 1;
  margin-left: 0;
  max-width: 800px;
  padding: 100px;
  z-index: 1;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(249, 248, 243, 0.928);
  z-index: -1;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content h1 {
  color: #1b1b1b;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content p {
  color: #333333;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-item {
  background-position: right;
  background-size: contain;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content {
  overflow: hidden;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content::before {
  -webkit-animation: 1s .1s fadeInDownBig both;
          animation: 1s .1s fadeInDownBig both;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content span {
  -webkit-animation: 1s .1s fadeInDownBig both;
          animation: 1s .1s fadeInDownBig both;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content h1 {
  -webkit-animation: 1s .1s fadeInLeft both;
          animation: 1s .1s fadeInLeft both;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content p {
  -webkit-animation: 1s .1s fadeInRight both;
          animation: 1s .1s fadeInRight both;
}

.hero-slider-area.hero-slider-area-style-two .owl-item.active .hero-slider-content .hero-slider-btn {
  -webkit-animation: 1s .1s fadeInUpBig both;
          animation: 1s .1s fadeInUpBig both;
}

.hero-slider-area .social-icon {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 15px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.hero-slider-area .social-icon li {
  margin: 15px 0;
  display: -ms-grid;
  display: grid;
  position: relative;
}

.hero-slider-area .social-icon li span {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.hero-slider-area .social-icon li a i {
  display: inline-block;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #020367;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.hero-slider-area .social-icon li:hover span {
  left: 40px;
  opacity: 1;
}

.hero-slider-area .social-icon li:hover a i {
  background-color: #020367;
  color: #ffffff;
}

.hero-slider-content {
  max-width: 600px;
  margin-left: 50px;
}

.hero-slider-content span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.hero-slider-content h1 {
  font-size: 70px;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-slider-content p {
  color: #ffffff;
  max-width: 450px;
  margin-bottom: 30px;
}

/*
Banner Area Style
======================================================*/
.banner-area-bg {
    background-image: url('');
   
    background-image: linear-gradient(rgba(6, 21, 90, 0.75),rgba(6, 21, 90, 0.75)), url(../images/banner/banner.jpg);
    height: 85vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-area {
  /* background-image: url(../images/banner/banner.jpg); */
   background-position: center center; 
  background-repeat: no-repeat;
  background-size: cover;
  height: 90%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.banner-area .banner-content {
  max-width: 810px;
  height: 350px;
  margin: auto;
  text-align: center;
  position: relative;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #fff;
}

.banner-area .banner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  /* background-color: rgba(249, 248, 243, 0.9); */
  z-index: -1;
  -webkit-animation: 1s .1s flipInY;
          animation: 1s .1s flipInY;
          -webkit-clip-path: polygon(100% 51%, 42% 100%, 100% 100%);
clip-path: polygon(100% 51%, 42% 100%, 100% 100%);
}

.banner-area .banner-content span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ffffff;
  background-color: #020367;
  padding: 5px 10px;
  -webkit-animation: 0.3s fadeInUpBig;
          animation: 0.3s fadeInUpBig;
}
.banner-area .banner-content i {
  font-size: 100px;
  color: var(--color-primary);
  -webkit-animation: 0.3s fadeInUpBig;
          animation: 0.3s fadeInUpBig;
}
.banner-area .banner-content i:hover{
  transition:all ease 0.5s;;
  transform: scale(1.2);
}
.banner-area .banner-content h1 {
  font-size: 25px;
  margin-bottom: 30px;
  -webkit-animation: 0.6s fadeInUpBig;
          animation: 0.6s fadeInUpBig;
}

.banner-area .banner-content p {
  max-width: 450px;
  margin: auto;
  margin-bottom: 40px;
  -webkit-animation: 0.9s fadeInUpBig;
          animation: 0.9s fadeInUpBig;
}

.banner-area .banner-content .banner-btn {
  -webkit-animation: 1s fadeInUpBig;
          animation: 1s fadeInUpBig;
}

.banner-area .banner-content .banner-btn .default-btn.active {
  margin-left: 30px;
}

/*
Expertise Area Style
======================================================*/
.single-expertise {
  overflow: hidden;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-expertise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.9)));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.single-expertise .expertise-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-expertise .expertise-title h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}

.single-expertise .expertise-content {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.single-expertise .expertise-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.single-expertise .expertise-content p {
  color: #ffffff;
}

.single-expertise:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-expertise:hover .expertise-title {
  opacity: 0;
}

.single-expertise:hover .expertise-content {
  bottom: 0;
  opacity: 1;
}

.single-expertise:hover .expertise-content h3 {
  bottom: 50px;
}

.single-expertises {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  /* -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05); */
          /* box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05); */
  padding: 30px;
  -webkit-animation: 1s .1s flipInY;
  animation: 1s .1s flipInY;
}

.single-expertises i {
  font-size: 50px;
  background-color: var(--color-light);
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #1b1b1b;
}

.single-expertises h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.single-expertises:hover i {
  background-color: #020367;
  color: #ffffff;
}

.single-expertise-box {
  position: relative;
  background-color: #eff4fa;
  padding: 30px;
  padding-left: 100px;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-expertise-box i {
  position: absolute;
  top: -35px;
  left: -35px;
  font-size: 40px;
  background-color: #e1eeea;
  color: #020367;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  border-radius: 0% 100% 100% 0% / 0% 0% 100% 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-expertise-box h3 {
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-expertise-box p {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-expertise-box:hover {
  background-color: #020367;
}

.single-expertise-box:hover i {
  color: #ffffff;
  background-color: #71c36e;
}

.single-expertise-box:hover h3 {
  color: #ffffff;
}

.single-expertise-box:hover p {
  color: #ffffff;
}



.table-condensed {
  border-collapse: collapse;
  width: 256px;
  text-align: center;
}

.table-condensed .prev {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}

.table-condensed .prev:hover {
  background-color: #020367;
}

.table-condensed .next {
  background-color: #f2f9fc;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}

.table-condensed .next:hover {
  background-color: #020367;
}

.table-condensed .day {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
  transition: all ease 0.5s;
  border-radius: 4px;
  font-size: 14px;
}

.table-condensed .day:hover {
  background-color: #020367;
  color: #ffffff;
}

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom {
  border-radius: 0 !important;
}

.datepicker table tr td.day:hover, .datepicker table tr td.focused {
  background-color: #020367;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
  background-color: #020367;
  border-color: #020367;
}


/*
Footer Area Style
======================================================*/
 
.footer-area {
  background-color: var(--color-primary);
}
.footer-btn{
  font-size: 16px;
color: #ffffff;
line-height: 1;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
text-align: center;
background-color: var(--color-secondary);
position: relative;
z-index: 1;
overflow: hidden;
display: inline-table;
padding: 15px 40px;
}
.footer-btn:hover{
  border: 2px solid var(--color-secondary);
}
.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  margin-bottom: 15px;
  display: inline-block;
}

.single-footer-widget p {
  margin-bottom: 25px;
  color: #f8fdf5;
}

.single-footer-widget .open-close {
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
  list-style-type: none;
}

.single-footer-widget .open-close li {
  color: #f8fdf5;
  margin-bottom: 10px;
}

.single-footer-widget .open-close li span {
  font-size: 20px;
  font-family: "Libre Baskerville", serif;
  display: block;
  margin-bottom: 15px;
}

.single-footer-widget .social-icon {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .social-icon li {
  display: inline-block;
  margin-right: 5px;
}

.single-footer-widget .social-icon li span {
  color: #ffffff;
}

.single-footer-widget .social-icon li a i {
  width: 30px;
  height: 30px;
  line-height: 28px;
  color: #f8fdf5;
  border: 1px solid var(--color-secondary);
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-footer-widget .social-icon li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-footer-widget .social-icon li a:hover i {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
}

.single-footer-widget h3 {
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid var(--color-lighter);
}

.single-footer-widget .address {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .address li {
  position: relative;
  margin-bottom: 20px;
  position: relative;
  color: #f8fdf5;
  padding-left: 40px;
}

.single-footer-widget .address li i {
  position: absolute;
  color: var(--color-secondary);
  left: 0;
  top: 5px;
  font-size: 25px;
}

.single-footer-widget .address li a {
  display: block;
  color: #f8fdf5;
}

.single-footer-widget .address li a:hover {
  color: var(--color-secondary);
}

.single-footer-widget .address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .import-link li {
  margin-bottom: 16px;
}

.single-footer-widget .import-link li a {
  color: #f8fdf5;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link li:hover::before {
  border-radius: 50%;
}

.single-footer-widget .import-link li:hover a {
  color: var(--color-secondary);
}

.single-footer-widget .newsletter-form p {
  margin-bottom: 25px;
  color: #f8fdf5;
}

.single-footer-widget .newsletter-form .form-control {
  background-color: transparent;
}

.single-footer-widget .newsletter-form .form-control::-webkit-input-placeholder {
  color: #f5f5f5;
}

.single-footer-widget .newsletter-form .form-control:-ms-input-placeholder {
  color: #f5f5f5;
}

.single-footer-widget .newsletter-form .form-control::-ms-input-placeholder {
  color: #f5f5f5;
}

.single-footer-widget .newsletter-form .form-control::placeholder {
  color: #f5f5f5;
}

.single-footer-widget .newsletter-form .default-btn {
  margin-top: 10px;
  display: block;
  width: 100%;
}

.single-footer-widget .newsletter-form #validator-newsletter {
  color: #8b0000;
  margin-top: 10px;
}


/*
Copy Right Area Style
======================================================*/
.copy-right-area {
  background-color:var(--color-primary);
  border-top: 1px solid var(--color-light);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.copy-right-area p {
  color: #f8fdf5;
}

.copy-right-area p a {
  color: #020367;
}

.copy-right-area p a:hover {
  color: #ffffff;
}


/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--color-light);
  text-align: center;
}

.page-title-area .page-title-content {
  position: relative;
  margin-top: -7px;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  font-size: 45px;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-right: 15px;
  margin-left: 15px;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  background-color: #333333;
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.page-title-area .page-title-content ul li.active {
  color: #020367;
}

.page-title-area .page-title-content ul li:first-child {
  margin-left: 0;
}

.page-title-area .page-title-content ul li:last-child {
  padding-right: 0;
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #1b1b1b;
}

.page-title-area .page-title-content ul li a:hover {
  color: #020367;
}


.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

/* 
Map Area Style
=====================================================*/
.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

/* 
News Details Content Style
=====================================================*/
.news-details-content .news-details-img {
  margin-bottom: 30px;
  position: relative;
}

.news-details-content .news-top-content .news-content .admin {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 15px;
}

.news-details-content .news-top-content .news-content .admin li {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.news-details-content .news-top-content .news-content .admin li i {
  color: #020367;
  display: inline-block;
  margin-right: 5px;
}

.news-details-content .news-top-content .news-content .admin li::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -4px;
  width: 1px;
  height: 85%;
  background-color: #333333;
}

.news-details-content .news-top-content .news-content .admin li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.news-details-content .news-top-content .news-content .admin li:last-child::before {
  display: none;
}

.news-details-content .news-top-content .news-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.news-details-content .news-top-content blockquote {
  padding: 30px;
  padding-left: 100px;
  position: relative;
  text-align: center;
  background-color: #eff4fa;
  margin-top: 30px;
  margin-bottom: 30px;
}

.news-details-content .news-top-content blockquote p {
  font-size: 18px;
  color: #1b1b1b;
  font-weight: 600;
}

.news-details-content .news-top-content blockquote i {
  font-size: 60px;
  color: #020367;
  position: absolute;
  top: 40px;
  left: 30px;
  line-height: 1;
}

.news-details-content .news-top-content .news-content-2 {
  margin-bottom: 25px;
}

.news-details-content .news-top-content .news-content-3 {
  margin-bottom: 30px;
}

.news-details-content .news-top-content .news-content-3 h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.news-details-content .tags {
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0 20px;
}

.news-details-content .tags .tag-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
  line-height: 1;
  display: inline-block;
}

.news-details-content .tags .tag-link li {
  display: inline-block;
  margin-right: 15px;
}

.news-details-content .tags .tag-link li.title i {
  color: #1b1b1b;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.news-details-content .tags .tag-link li a {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

.news-details-content .tags .tag-link li a:hover {
  color: #020367;
}

.news-details-content .share-link {
  display: inline-block;
  float: right;
  position: relative;
  padding-bottom: 20px;
}

.news-details-content .share-link span {
  font-weight: 600;
  font-size: 14px;
  position: relative;
  top: -2px;
  cursor: pointer;
}

.news-details-content .share-link span i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  background-color: #020367;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.news-details-content .share-link .social-icon {
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 10px;
  border-radius: 4px;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.news-details-content .share-link .social-icon li {
  display: inline-block;
}

.news-details-content .share-link .social-icon li a {
  padding: 0 5px;
}

.news-details-content .share-link .social-icon li a i {
  font-size: 18px;
}

.news-details-content .share-link:hover .social-icon {
  top: 46px;
  opacity: 1;
}

.news-details-content .leave-reply {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.news-details-content .leave-reply h3 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #020367;
  font-size: 24px;
}

.news-details-content .leave-reply form p {
  margin-top: -10px;
}

.news-details-content .leave-reply form .form-group {
  margin-bottom: 30px;
}

.news-details-content .leave-reply form .form-group label {
  margin-bottom: 10px;
}

.news-details-content .leave-reply form .form-group .form-control {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
}

.news-details-content .leave-reply form .form-group .form-control::-webkit-input-placeholder {
  color: #cccccc;
}

.news-details-content .leave-reply form .form-group .form-control:-ms-input-placeholder {
  color: #cccccc;
}

.news-details-content .leave-reply form .form-group .form-control::-ms-input-placeholder {
  color: #cccccc;
}

.news-details-content .leave-reply form .form-group .form-control::placeholder {
  color: #cccccc;
}

/* 
Sidebar Widget Style
=====================================================*/
.widget-sidebar {
  margin-left: 15px;
}

.sidebar-widget {
  margin-bottom: 35px;
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
  font-size: 20px;
  background-color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #020367;
}

.sidebar-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-widget.search .search-form {
  background-color: #ffffff;
  position: relative;
}

.sidebar-widget.search .search-form .search-button {
  position: absolute;
  width: 50px;
  height: 49px;
  line-height: 49px;
  top: 0;
  right: 0;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: var(--color-primary);
}

.sidebar-widget.search .search-form .search-button:hover {
  background-color: var(--color-secondary);
}

.sidebar-widget.categories ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.sidebar-widget.categories ul li a {
  border-left: 1px solid #ffffff;
  display: block;
}

.sidebar-widget.categories ul li a i {
  font-size: 20px;
  float: right;
  position: relative;
  top: 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.sidebar-widget.categories ul li a:hover {
  border-left: 1px solid #020367;
  padding-left: 5px;
}

.sidebar-widget.categories ul li span {
  float: right;
  position: relative;
  top: 1px;
}

.sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-widget.recent-post ul li {
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  padding-left: 90px;
  border-bottom: 1px solid #eeeeee;
}

.sidebar-widget.recent-post ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget.recent-post ul li a {
  font-size: 15px;
  color: #1b1b1b;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}

.sidebar-widget.recent-post ul li a:hover {
  color: #020367;
}

.sidebar-widget.recent-post ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}

.sidebar-widget.recent-post ul li span {
  display: block;
  font-size: 14px;
}

.sidebar-widget.tags ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.sidebar-widget.tags ul li a {
  border: 1px solid #eeeeee;
  padding: 8px 12px;
  display: inline-block;
  background-color: #ffffff;
}

.sidebar-widget.tags ul li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background-color: #020367;
  color: #ffffff;
  border-color: #020367;
}

.sidebar-widget.tags ul li:last-child {
  margin-bottom: 0;
}

.sidebar-widget.employer-widget .form-group {
  margin-bottom: 30px;
}

.sidebar-widget.employer-widget .default-btn {
  width: 100%;
}

.sidebar-widget.open-closed ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.sidebar-widget.open-closed ul li span {
  float: right;
  position: relative;
  top: 1px;
}

.sidebar-widget.open-closed ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 
News List Style
=====================================================*/
.news-list-area .single-news {
  padding: 0;
  text-align: left;
}

/* 
Sidebar Area Style
=====================================================*/
ul.sidebar-menu {
  margin: 13rem 0;
  padding: 0;
  left: 0;
  list-style-type: none;
  position: fixed;
  z-index: 99999;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  /* height: 50%; */
}
.sidebar-menu li a i {
color: #fff;
font-size: 30px;
color: var(--color-primary);
margin: auto;
}
.sidebar-menu li a  {
 background-color: var(--color-light);
padding: 15px 13px;
display: block;
text-decoration: none;
color: #fff;
border-bottom: 1px solid var(--color-lightest);
}
.sidebar-menu li a :hover  {
  text-decoration: none;
  color: var(--color-secondary);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
li.have-children ul {
padding: 0px;
} 
li.have-children ul li a {
background-color: #3c3636;
padding-left: 62px;
} 
li.have-children ul li a:hover {
color: #fff;
background-color: var(--color-primary);
padding-left: 62px;
} 

/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #000000;
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}

.preloader .loader-inner-1 {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(70deg);
          transform: rotate(70deg);
}

.preloader .loader-inner-1:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  -webkit-animation-name: loading-1;
          animation-name: loading-1;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  background: #06aed5;
}

.preloader .loader-inner-2 {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
}

.preloader .loader-inner-2:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  -webkit-animation-name: loading-1;
          animation-name: loading-1;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  background: #ec008c;
}

.preloader .loader-inner-3 {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(-110deg);
          transform: rotate(-110deg);
}

.preloader .loader-inner-3:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  -webkit-animation-name: loading-1;
          animation-name: loading-1;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  background: #ffbf00;
}

.preloader .loader-inner-4 {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.preloader .loader-inner-4:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  -webkit-animation-name: loading-1;
          animation-name: loading-1;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  background: #079c00;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

@-webkit-keyframes loading-1 {
  0% {
    width: 20px;
    right: 0;
  }
  30% {
    width: 120px;
    right: -100px;
  }
  60% {
    width: 20px;
    right: -100px;
  }
}

@keyframes loading-1 {
  0% {
    width: 20px;
    right: 0;
  }
  30% {
    width: 120px;
    right: -100px;
  }
  60% {
    width: 20px;
    right: -100px;
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background-color: var(--color-secondary);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #020367;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #020367;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 1%;
  top: 87%;
}



@keyframes video {
  0% {
    border-radius: 33.33% 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    border-radius: 50% 33.33%;
    -webkit-transform: translate(-50%, -50%) rotate(1800deg);
            transform: translate(-50%, -50%) rotate(1800deg);
  }
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
  border-radius: 0;
  height: 200px;
  overflow-y: scroll;
}

.nice-select .option:hover {
  background-color: #020367;
  color: #ffffff;
}

.nice-select .option.selected.focus {
  color: #020367;
}

.nice-select .current {
  font-size: 16px;
}

/*
carousel Area Style*/
.carousel-control-next, .carousel-control-prev{
  background: none;
}
.carousel-item img {
  height: 550px;
  width: 100%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transition: all 2s ease-in-out;
}
.carousel-caption {
  /* background: rgba(0, 0, 0, 0.40); */
  background-color: rgb(4 4 6 / 60%);
  color: var(--color-border);
  width: 100;
  left: 0%;
  right: 0%;
  bottom: -0.9rem;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  transition-delay: .3s;
  -webkit-transition-delay: .3s;
  font-weight: 400;
  font-size: 20px;
  text-align: right;
}
.carousel-caption-date{
  color: var(--color-secondary);
}
.carousel-title {
  position: absolute;
  background-color: var(--color-primary);
  bottom: 90%;
  z-index: 20;
  padding: 10px 30px;
  color: white;
}
/* .carousel-caption {
  position: absolute;
  left: 15%;
  bottom: 1.0rem;
  right: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  background-color: red;
} */
.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
  color: #fff;
  text-align: center;
  opacity: unset;
  transition: opacity .15s ease;
}
.carousel-control-next i, .carousel-control-prev i{
  font-size: 37px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  /* border: 1px solid #fff; */
  padding: 0px 6px;
  color: #fff;
  background-color: rgb(4 4 6 / 60%);
  border-radius: 50%;
}
/* .carousel-control-prev-icon i{
  font-size: 31px;
  width: 50px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 0px 6px;
}

.carousel-control-next-icon i{
  font-size: 31px;
    width: 50px;
    height: 47px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 0px 6px;
} */
/*
Events Slider Style*/


.blog-slider {
  /* width: 95%; */
  position: relative;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgb(34 35 58 / 20%);
  height: 430px;
  transition: all 0.3s;
}
.blog-slider__item {
  display: flex;
  align-items: center;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 430px;
  /* transform: translateX(-80px); */
  overflow: hidden;
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.blog-slider__img img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: all 0.3s;
}

.blog-slider__content {
  padding-right: 25px;
}


.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  /* left: 0; */
  width: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
  text-align: left;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 4PX 4px;
  padding: 8px;
  width: 20px;
  height: 20px;
  border-radius: 0
}