/* Default Css */
@font-face {
  font-family: "Brasley";
  src: url("../fonts/Brasley-SemiBold.woff2") format("woff2"), url("../fonts/Brasley-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #0D2854;
}

body {
  color: #000000;
  font-size: 16px;
  font-family: "Brasley";
  font-weight: 400;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #333333;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Brasley";
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #0D2854;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #0D2854;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #0D2854;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #000000;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #000000;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #0D2854;
  background: #0D2854;
}
.btn-theme:hover {
  background: #0D2854;
  color: #fff;
  border-color: #0D2854;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #0D2854;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #0D2854;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

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

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

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

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #0D2854;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1230px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

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

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -330px;
  width: 300px;
  padding: 25px 20px;
  height: 100%;
  display: block;
  background-color: #ffffff;
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.slide-bar.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}
.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
  border-radius: 50px;
}
.open-mobile-menu a:hover {
  background: #0D2854;
}
.open-mobile-menu a.active {
  background: #0D2854;
}

.close-mobile-menu a {
  color: #212121;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}
.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #101a23;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.side-mobile-menu ul li a:hover {
  color: #0D2854;
  padding-left: 5px;
}
.side-mobile-menu ul li a[aria-expanded=true] {
  color: #0D2854;
}
.side-mobile-menu ul li a[aria-expanded=true]:before {
  background: #0D2854;
  border-color: #0D2854;
}
.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}
.side-mobile-menu ul li ul li {
  padding-left: 15px;
}
.side-mobile-menu ul li ul li:hover > a {
  color: #0D2854;
  padding-left: 20px;
}
.side-mobile-menu ul li ul li:hover > a:before {
  background: #0D2854;
  border-color: #0D2854;
}
.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}
.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #101a23;
  border-radius: 50%;
}
.side-mobile-menu ul li ul li a[aria-expanded=true] {
  padding-left: 20px;
}
.side-mobile-menu ul li.has-children > a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: all 0.3s ease-out;
}
.side-mobile-menu ul li.has-children a[aria-expanded=true]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.header-top {
  position: relative;
  z-index: 1;
  background-color: #012957;
}
.header-top .header-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-width: 407px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-top .header-bg {
    max-width: 290px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-bg {
    max-width: 238px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-top .header-bg {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-top .header-bg {
    display: none;
  }
}
.header-top .header-bg img {
  height: 100%;
  object-fit: cover;
}
.header-top .header-top-layout {
  /*max-width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  margin-left: auto;
  margin-right: auto;*/
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-top .header-top-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .header-top .header-top-layout {
    grid-template-columns: 1fr;
  }
}
.header-top .header-top-layout .left {
  text-align: right;
  padding: 22px 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .left {
    padding: 15px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-top .header-top-layout .left {
    padding: 15px 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header-top .header-top-layout .left {
    padding: 15px 20px;
    text-align: center;
  }
}
.header-top .header-top-layout .left a {
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .left a {
    font-size: 14px;
    line-height: 16px;
  }
}
.header-top .header-top-layout .left a i {
  margin-left: 10px;
}
.header-top .header-top-layout .left a span {
  color: #789CEB;
}
.header-top .header-top-layout .right {
  background: #BF3E3E;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .right {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .header-top .header-top-layout .right {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-top .header-top-layout .right {
    padding: 15px 20px;
    justify-content: center;
  }
}
.header-top .header-top-layout .right .contact-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .right .contact-list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .header-top .header-top-layout .right .contact-list {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.header-top .header-top-layout .right .contact-list li a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.header-top .header-top-layout .right .contact-list li.nav-cart a { font-size: 24px; position: relative; }
.header-top .header-top-layout .right .contact-list li.nav-cart a i {  }
.header-top .header-top-layout .right .contact-list li.nav-cart a .cart-total { position: absolute; top: -10px; right: -10px; font-size: 10px; border: 1px solid #ffffff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .right .contact-list li a {
    font-size: 14px;
    line-height: 16px;
  }
}
.header-top .header-top-layout .right .contact-list li a i {
  margin-right: 8px;
}
.header-top .header-top-layout .right .social {
  margin-left: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-top .header-top-layout .right .social {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .header-top .header-top-layout .right .social {
    margin-top: 10px;
    margin-left: 0;
  }
}
.header-top .header-top-layout .right .social a {
  display: inline-block;
}

.header-area {
  padding-top: 33px;
  padding-bottom: 32px;
box-shadow: 0 0 10px 5px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 10px 5px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,.2);
    border: 1px solid rgba(128,128,128,.1);
}

.header-logo a {
  display: inline-block;
}
.header-logo a img {
  max-width: 287px;
  width: 100%;
}

.header-btn {
  display: flex;
  justify-content: center;
}
.header-btn a {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 12px 38px 16px;
  background: #BF3E3E;
  border-radius: 26.0741px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-btn a {
    font-size: 16px;
  }
}
.header-btn a:hover {
  background: #0D2854;
}

.main-menu {
  display: flex;
  justify-content: flex-end;
}
.main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu > ul > li {
  display: inline-block;
  margin-right: 45px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu > ul > li {
    margin-right: 30px;
  }
}
.main-menu > ul > li:last-child {
  margin-right: 0;
}
.main-menu > ul > li > a {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #789CEB;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu > ul > li > a {
    font-size: 16px;
  }
}
.main-menu > ul > li > a:hover {
  color: #BF3E3E;
}

.hero-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 110px;
    padding-bottom: 160px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    padding-top: 110px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .hero-area {
    padding-top: 110px;
    padding-bottom: 160px;
  }
}
.hero-area .hero-thumb {
  position: absolute;
  z-index: -2;
  width: 50%;
  height: 100%;
  background: #789CEB;
  left: 0;
  top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-thumb {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-thumb {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero-area .hero-thumb {
    width: 100%;
  }
}
.hero-area .hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-area .hero-thumb-2 {
  position: absolute;
  z-index: -2;
  width: 50%;
  height: 100%;
  background: #789CEB;
  right: 0;
  top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-thumb-2 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-thumb-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-area .hero-thumb-2 {
    display: none;
  }
}
.hero-area .hero-thumb-2:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(238.77deg, rgba(120, 156, 235, 0.6) 2.31%, rgba(191, 62, 62, 0) 92.13%);
}
.hero-area .hero-thumb-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-area .hero-shape {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.hero-area .hero-shape img {
  max-width: 1233px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-shape img {
    max-width: 820px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-shape img {
    max-width: 580px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-shape img {
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .hero-area .hero-shape img {
    max-width: 320px;
  }
}

.hero-content h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 65px;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 38px;
    line-height: 38px;
  }
}
.hero-content p {
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content p {
    font-size: 26px;
    line-height: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content p {
    font-size: 26px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hero-content p {
    font-size: 22px;
    line-height: 22px;
  }
}
.hero-content .hero-btn a {
  display: inline-block;
  font-weight: 600;
  font-size: 28.7896px;
  line-height: 29px;
  color: #FFFFFF;
  padding: 12px 38px 18px;
  border: 2px solid #FFFFFF;
  border-radius: 32px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content .hero-btn a {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-btn a {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .hero-content .hero-btn a {
    font-size: 18px;
    line-height: 18px;
  }
}

.service-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-area .service-shape {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -5px;
  width: 70%;
  text-align: right;
}

@media (min-width: 1200px) {
  .service-row {
    --bs-gutter-x: 36px;
  }
}

.service-card {
  margin-bottom: 50px;
}
.service-card .card-thumb { position: relative;
  margin-bottom: 30px;
}
.service-card .card-thumb a {
  display: block;
}
.service-card .card-thumb a img {
  width: 100%;
}
.service-card .card-thumb .photo-credit { font-size: 10px; right: 35px; position: absolute; color: #fff; top: 0; }
.service-card h2 {
  margin-bottom: 16px;
  font-size: 64px;
  line-height: 65px;
}
.service-card.cross-out-image { overflow: hidden; position: relative; }
.service-card.cross-out-image:before { content: ''; clear: both; display: block; width: 300px;
    height: 300px;
    position: absolute;
    border-radius: 50%;
    border: 2px solid red;
    color: red;
    z-index: 2;
    top: 30px;
    left: 30px;
    font-size: 100px; }
.service-card.cross-out-image:after { content: ''; clear: both; display: block; width: 600px;
    height: 2px;
    background-color: red;
    position: absolute;
    top: 200px;
    left: -100px;
    transform: rotate(45deg); }
.service-card.cross-out-image .card-thumb:after { content: ''; clear: both; display: block; }
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-card h2 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .service-card h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
.service-card h2 a {
  display: inline-block;
  color: #012957;
}
.service-card h2 a:hover {
  color: #BF3E3E;
}
.service-card .text {
  margin-bottom: 17px;
  max-width: 365px;
}
.service-card .text p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.service-card .text a {
  display: inline-block;
  color: #868cd3;
  text-decoration-line: underline;
}
.service-card .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.service-card .btn-wrap .read-more {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  padding: 10px 27px 14px;
  background: #FFFFFF;
  border: 1.38889px solid #BF3E3E;
  border-radius: 22.2222px;
}
.service-card .btn-wrap .read-more:hover {
  color: #FFFFFF;
  background: #BF3E3E;
}
.service-card .btn-wrap .read-link {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #789CEB;
}

.news-area {
  background: #F5F6F8;
  overflow: hidden;
}

.news-title h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 65px;
  color: #BF3E3E;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .news-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

.news-slider-wrapper {
  margin-right: -600px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-slider-wrapper {
    margin-right: -300px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-slider-wrapper {
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-slider-wrapper {
    margin-right: -300px;
  }
}
@media (max-width: 767px) {
  .news-slider-wrapper {
    margin-right: 0;
  }
}

.news-slider-active {
  position: relative;
  z-index: 1;
}
.news-slider-active .slick-prev {
  position: absolute;
  z-index: 2;
  top: -80px;
  right: 600px;
  height: 26px;
  width: 26px;
  font-size: 14px;
  color: #7d97e2;
  background: #FFFFFF;
  border: 0;
  border-radius: 50%;
  line-height: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-slider-active .slick-prev {
    right: 350px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-slider-active .slick-prev {
    right: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-slider-active .slick-prev {
    right: 350px;
  }
}
@media (max-width: 767px) {
  .news-slider-active .slick-prev {
    right: 40px;
  }
}
.news-slider-active .slick-prev:hover {
  color: #FFFFFF;
  background: #7d97e2;
}
.news-slider-active .slick-next {
  position: absolute;
  z-index: 2;
  top: -80px;
  right: 550px;
  height: 26px;
  width: 26px;
  font-size: 14px;
  color: #7d97e2;
  background: #FFFFFF;
  border: 0;
  border-radius: 50%;
  line-height: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-slider-active .slick-next {
    right: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-slider-active .slick-next {
    right: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-slider-active .slick-next {
    right: 300px;
  }
}
@media (max-width: 767px) {
  .news-slider-active .slick-next {
    right: 0;
  }
}
.news-slider-active .slick-next:hover {
  color: #FFFFFF;
  background: #7d97e2;
}
.news-slider-active .news-slide {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .news-slider-active .news-slide {
    padding-right: 0;
  }
}

.news-card .card-thumb {
  margin-bottom: 20px;
}
.news-card .card-thumb a {
  display: block;
}
.news-card .card-thumb a img {
  width: 100%;
  max-height: 475px;
  object-fit: cover;
  border-radius: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-card .card-thumb a img {
    max-height: 375px;
  }
}
.news-card h2 {
  min-height: 60px;
  font-size: 29px;
  line-height: 29px;
  margin-bottom: 13px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-card h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-card h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-card h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.news-card h2 a {
  color: #012957;
}
.news-card .text {
  margin-bottom: 21px;
  max-width: 502px;
}
.news-card .text p {
  font-size: 14.5527px;
  line-height: 22px;
  color: #000000;
}
.news-card .date {
  margin-bottom: 25px;
}
.news-card .date p {
  font-size: 14px;
  line-height: 15px;
  color: #BF3E3E;
}
.news-card .read-more {
  margin-bottom: 5px;
}
.news-card .read-more a {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  border-bottom: 2px solid #789CEB;
  padding-bottom: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-card .read-more a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-card .read-more a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-card .read-more a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .news-card .read-more a {
    font-size: 16px;
    line-height: 16px;
  }
}
.news-card .read-more a i {
  margin-left: 8px;
  color: #789CEB;
}

.extras-title h2 {
  font-size: 64px;
  line-height: 65px;
  color: #BF3E3E;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .extras-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .extras-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .extras-title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

.extras-content {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
.extras-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.extras-content .read-more {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 46px;
}
.extras-content .read-more a {
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  color: #FFFFFF;
  padding-bottom: 5px;
  border-bottom: 1px solid #FFFFFF;
}
.extras-content .read-more span {
  color: #789CEB;
}
.extras-content .read-more i {
  margin-left: 15px;
}

.monitor-area {
  background: rgba(13, 40, 84, 0.6);
}

.monitor-title h1 {
  font-size: 48px;
  line-height: 48px;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .monitor-title h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .monitor-title h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .monitor-title h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

.weather-area {
  background: #BF3E3E;
  max-width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .weather-area {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .weather-area {
    grid-template-columns: 1fr;
  }
}
.weather-area .left {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 53px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .weather-area .left {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .weather-area .left {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .weather-area .left {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.weather-area .left .shape {
  /*position: absolute;*/
  z-index: -1;
  bottom: -10px;
  left: -6px;
  font-size: 254px;
  line-height: 256px;
  color: rgba(255, 255, 255, 0.13);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .weather-area .left .shape {
    font-size: 165px;
    line-height: 165px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .weather-area .left .shape {
    font-size: 165px;
    line-height: 165px;
  }
}
@media (max-width: 767px) {
  .weather-area .left .shape {
    font-size: 100px;
    line-height: 100px;
  }
}
.weather-area .left .thumb {
  text-align: center;
  margin-bottom: 72px;
}
.weather-area .left .thumb img {
  max-width: 680px;
  width: 100%;
}
.weather-area .left .read-more {
  padding-left: 20%;
}
@media (max-width: 767px) {
  .weather-area .left .read-more {
    padding-left: 0;
  }
}
.weather-area .left .read-more a {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  padding: 8px 45px 14px;
  background: #FFFFFF;
  border-radius: 22px;
}
@media (max-width: 767px) {
  .weather-area .left .read-more a {
    font-size: 16px;
  }
}
.weather-area .right {
  background: #0D2854;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 53px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .weather-area .right {
    padding-top: 60px;
  }
}
.weather-area .right .shape {
  position: absolute;
  z-index: -1;
  font-size: 140.986px;
  bottom: 39%;
  right: 50%;
  line-height: 142px;
  color: rgba(255, 255, 255, 0.13);
  transform: rotate(90deg);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .weather-area .right .shape {
    font-size: 75px;
    line-height: 75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .weather-area .right .shape {
    font-size: 110px;
    line-height: 110px;
    right: 61%;
  }
}
@media (max-width: 767px) {
  .weather-area .right .shape {
    font-size: 110px;
    line-height: 110px;
    right: 61%;
  }
}
.weather-area .right .thumb-wrap {
  margin-bottom: 118px;
}
@media (max-width: 767px) {
  .weather-area .right .thumb-wrap {
    margin-bottom: 40px;
  }
}
.weather-area .right .thumb-wrap .text {
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.weather-area .right .thumb-wrap .thumb {
  margin-bottom: 20px;
}
.weather-area .right .thumb-wrap .thumb img {
  max-width: 174px;
  width: 100%;
}
.weather-area .right .thumb-wrap .link {
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
}
.weather-area .right .thumb-wrap .link a {
  color: #FFFFFF;
  display: inline-block;
  text-decoration: underline;
}
.weather-area .right .read-more a {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  padding: 8px 45px 14px;
  background: #FFFFFF;
  border-radius: 22px;
}
@media (max-width: 767px) {
  .weather-area .right .read-more a {
    font-size: 16px;
  }
}

.widget-title h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 36px;
}

.footer-info p {
  max-width: 335px;
  font-size: 16px;
  line-height: 32px;
  color: #FFFFFF;
}
.footer-info p a {
  color: #FFFFFF;
}

.footer-logo {
  margin-top: 38px;
}
.footer-logo a img {
  max-width: 164px;
  width: 100%;
}

.copyright-area {
  background: #0D2854;
}

.copyright-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  color: #BF3E3E;
}
.copyright-text a {
  color: #BF3E3E;
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */

.homepage-hero { display: none; }
