@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
:root {
  --primary-color: #ed1b24;
  --secondary-color: #012443;
  --text-color: #8a8a8a;
  --light-bg-color: #f4f9fc;
  --primary-font-family: 'Montserrat', sans-serif;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: #222;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.container {
  max-width: 1400px;
  width: 100%;
}
.bg-light-section {
  background: var(--light-bg-color);
}
.bg-primary-color {
  background-color: var(--primary-color);
}
.bg-secondary-color {
  background-color: var(--secondary-color);
}
.padding-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}


.heading{
  padding: 30px 0px;
}
.heading h3 {
    font-size: 36px;
    font-family: "Cormorant", serif;
    letter-spacing: 0;
}
.heading p {
  color: #000;
  padding-bottom: 50px;
}

ul, ol {
  padding: 0;
  margin: 0;
}
ul li, ol li {
  list-style: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Cormorant", serif;
}
h1, .h1 {
  font-size: 42px;
font-family: "Cormorant", serif;
  font-weight: 800;
}
h2, .h2 {
  font-size: 40px;
font-family: "Cormorant", serif;
  font-weight: 600;
}
h3, .h3 {
  font-size: 50px;
font-family: "Cormorant", serif;
}
h4, .h4 {
  font-size: 21px;
font-family: "Cormorant", serif;
  font-weight: 600;
}
h5, .h5 {
  font-size: 18px;
font-family: "Cormorant", serif;
}
h6, .h6 {
  font-size: 16px;
font-family: "Cormorant", serif;
}
p {
  margin-bottom: 10px;
  line-height: 28px;
  font-size: 16px;
}
p:last-child {
  margin-bottom: 0;
}
p:empty{
    display:none;
    margin:0;
}

.global-btn {
    position: relative;
    padding: 12px 30px !important;
    background: #238cf9;
    color: #fff !important;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
        display: inline-block;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.global-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #078440;
  z-index: -1;
  transition: width 0.4s ease;
}

.global-btn:hover::before {
  width: 100%;
}

.site-header {
  padding: 5px 0;
  position: relative;
  width: 100%;
    background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
  -moz-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
  -ms-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
  box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
  /*  position: relative;*/
  z-index: 2;
}
.header-logo img{
  width: 70px;
  height: auto;
}

.site-header nav.navbar {
    padding: 10px 0px !important;
}

.site-header .navbar-nav>li {
  position: relative;
  margin-left: 30px;
}
.site-header .navbar-nav>li>a {
    padding-top: 0px;
    padding-bottom: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}
.site-header li a:hover, .site-header li.current-menu-item>a {
  color: #000;
}
.site-header li.menu-btn a {
  color: #fff;
  background: var(--primary-color);
  padding-left: 30px !important;
  padding-right: 30px !important;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  margin-left: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.site-header .enquiry_now a {
  background: -webkit-linear-gradient(right, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
  background: -o-linear-gradient(right, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
  background: linear-gradient( 270deg, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
  background-size: 1000% 1000%;
  -webkit-animation: gradient 10s infinite;
  animation: gradient 10s infinite;
  border-radius: 5px;
  padding: 12px 20px!important;
  color: #fff!important;
  transition: 0.6s;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gradient-button:hover {
  border-radius: 50px;
}
.site-header li.menu-btn a:hover {
  background: var(--secondary-color);
}
.site-header .navbar-nav .menu-item-has-children>a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 5px;
  vertical-align: text-bottom;
  font-size: 12px;
}
.site-header .navbar-nav>li .sub-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  -ms-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 5px solid #023b4a;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
}
.site-header .navbar-nav>li .sub-menu li {
  padding: 0;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding: 10px 15px;
    margin: 0;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    display: block;
}
.site-header .navbar-nav>li .sub-menu li:hover {
  background:#1a2744;
  color: #fff !important;
}

.site-header .navbar-nav>li>a i {
  font-size: 12px;
}
.site-header .navbar-nav>li .sub-menu li a:hover, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
  color: #fff;
}
.site-header ul li a.active {
  color: #023b4a;
}
.site-header ul li a.active:hover {
  color: #023b4a;
}
.site-header .navbar-nav>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.navbar-toggler {
  vertical-align: middle;
  position: absolute;
  right: 10px;
  padding: 0;
}
.header-logo a {
    display: block;
}
.site-header .navbar-nav>li .dropdown-icon {
  display: none;
}
.btn {
  border: none;
  line-height: initial;
  text-transform: uppercase;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-family: var(--primary-font-family);
  font-weight: 500;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  background: #023b4a;
  color: #fff;
}
a.navbar-brand.logo-2 {
  display: none;
}
header.site-header.sticky {
  background: #fff;
}
header.site-header.sticky .navbar-nav>li>a {
  color: #000;
}
header.site-header.sticky .top-bar-left {
  display: none;
}
header.site-header.sticky a.navbar-brand.logo-2 {
  display: block;
}
header.site-header.sticky a.navbar-brand.logo-1 {
  display: none;
}
/*------------------------Site-header------------------------*/

/*----------------------Home Slider------------------------------*/

.main-banner {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
 z-index: 0;
}

.main-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.main-banner .container {
    position: relative;
    z-index: 2;
}

.main-banner-content {
    max-width: 620px;
    color: #fff;
}

.main-banner-content h1 {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 25px;
}

.main-banner-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}




section.home-blogs-section {
    background: #fefbf6;
    padding-bottom: 30px;
}

.blog-grid-content {
    padding: 10px 0px;
    position: relative;
    top: 0px;
}
.blog-grid .image-box{
    position: relative;
    display: block;
    overflow: hidden;
        transition: .3s all;
}
.blog-grid .image-box img {
    width: 100%;
    height: 280px;
    vertical-align: middle;
    object-fit: cover;
    object-position: center center;
    transition: .3s all;
    border-radius: 20px;
}
.blog-grid:hover .image-box img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}
.blog-grid .image-box a {
    display: block;
}

.blog-grid-content h3 {
    line-height: 22px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
.blog-grid-content h3 a {
    font-size: 21px;
    color: #000;
    text-decoration: none;
}
.blog-grid-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.blog-grid-content .post-date h3 {
    display: block;
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
  color:#000;
}
.blog-post-date ul {
    display: flex;
    align-content: space-between;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 30px;
}

.blog-post-date ul li {
    color: #181818;
    font-size: 14px;
    position: relative;
        font-weight: 600;

}
.blog-post-date li.category {
    font-size: 12px !important;
    color: #000 !important;
    font-weight: 600;
    padding-left: 50px;
    text-transform: uppercase;
}
.blog-post-date li.category:after {
    content: "";
    height: 4px;
    width: 30px;
    position: absolute;
    left: 0;
    display: block;
    left: 0;
    top: 6px;
    background: #0070ad;
}
.single_blogs .entry-meta ul li {
    background: #e7f2ff;
    color: #000;
    padding: 7px 20px;
    display: inline-block;
    margin: 20px 0px !important;
    font-size: 12px;
    border-radius: 5px;
}


.single-blog img{
    width: 100%;
    border-radius: 20px;
    padding: 10px 0px;
}
.single-blog h3{
    font-size: 36px;
    margin-bottom: 10px;
}
.blog-grid-content span {
    padding: 10px 10px;
    font-size: 12px;
    background: #efefef;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 600;
    position: absolute;
    top: -60px;
    left: 10px;
}

.single-blog-img {
  overflow: hidden;
}
.single-blog-img a img {
  width: 100%;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.single-blog:hover .single-blog-img a img {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}
.single-blog-img img {
  width: 100%;
}
.blog-content-box {
  padding-left: 25px;
  padding-top: 27px;
  margin: 0 10px;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  background: #fff;
  padding-bottom: 30px;
}
.blog-content {
  display: table;
}
.blog-content h4 {
  color: #212121;
}
.blog-content h4 a {
  color: #212121;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
  text-transform: capitalize;
}
.blog-content h4 a:hover {
  color: #023b4a;
}
.blog-content a {
  color: #00071b;
  font-weight: 600;
}



@media (max-width: 1024px)
{

.breadcrumb-content h2 {
    font-size: 25px;
}

.single-service-content h2{
      font-size: 25px;
}

}