
/* headings */
	.post-content {
		font-family: "Nunito";
	}
	.post-content h1 {
	  font-size: 2.8rem;
	  font-weight: 800;
	  letter-spacing: -0.02em;
	  line-height: 1.2;
	  margin-bottom: 16px;
	  color: #0a2b3c;
	}

    .post-content h2 {
      font-size: 1.9rem;
      font-weight: 700;
      margin-top: 48px;
      margin-bottom: 20px;
      padding-bottom: 8px;
      border-bottom: 3px solid #e6f0f7;
      color: #144d66;
	  scroll-margin-top: 110px;
    }

    .post-content h3 {
	  border-left: 5px solid #2c7da0;
	  padding-left: 1rem;
	  margin-bottom: 1.5rem;
	  margin-top: 1.5rem;
	  scroll-margin-top: 110px;
	  font-size: 1.5rem; 
	  border-radius: 6px;
	}

    .post-content h4 {
      font-size: 1.2rem;
      font-weight: 600;
	  margin: 22px 0 10px 0;
      color: #2c6e8f;
    }
	
	.post-content h5 {
      font-size: 1.01rem;
      font-weight: 600;
      margin-top: 0;
      color: #2c6e8f;
    }

    .post-content p {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      color: #2c3f4f;
	  line-height: 1.6;
    } 
	
	.post-content img {
		margin-bottom: 2rem;
		max-width: 100%;
		height: auto;
    }

    /* lists */
    .post-content ul, .post-content ol {
		/*margin: 0;
		padding: 0px 0 0 16px;
		*/
		padding-left: 2rem;
		margin-bottom: 1.5rem;
		font-size: 1.1rem;
    }

    .post-content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .post-content ul ul, .post-content ol ul {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }
	
	.blog_img{
		margin-bottom: 20px;
		border-radius: 15px;
	}
/* standard tables */
    .post-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 1rem;
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	   border: 1px solid #e2eaf1;
    }

    .post-content th {
      background: #1e1d1a;
      padding: 12px 16px;
      text-align: left;
      font-weight: 700;
      color: #f7f6f2;
    }

    .post-content td {
      border-bottom: 1px solid #e2eaf1;
      padding: 12px 16px;
      background: white;
    }

    /* comparison table (special style) */
    .compare-table {
      width: 100%;
      border-radius: 24px;
      background: white;
      border: 1px solid #e2edf5;
      margin: 30px 0;
    }

    .compare-table th {
      background: #144d66;
      color: white;
      font-weight: 600;
    }

    .compare-table td {
      background: #ffffff;
    }

    .compare-table tr:hover td {
      background: #fafdff;
    }
	
	/* blockquote */
    .post-content blockquote {
		margin: 30px 0;
		padding: 10px 20px;
		background: #f1f8fe;
		border-left: 5px solid #2c7da0;
		font-style: normal;
		border-radius: 10px;
		font-weight: 400;
		color: #093e65;
		font-size: 1.3rem;
		font-family: "Tinos";
    }
/* sidebar */
    .sidebar {
      position: sticky;
      top: 110px;
      align-self: start;
    }

    .toc-widget {
      background: white;
	  border-radius: 20px;
	  padding: 25px;
	  border: 1px solid #c3cbd7;
	  margin-bottom: 30px;
    }

    .toc-widget h4 {
      margin-top: 0;
      font-size: 1.2rem;
	  margin-bottom: 15px;
    }

    .toc-list {
      list-style: none;
      margin-left: 0;
	  padding-left: 0 !important;
    }

    .toc-list li {
      margin-bottom: 10px;
    }

    .toc-list a {
      text-decoration: none;
	  color: #2c5a77;
	  font-size: 1rem;
	  letter-spacing: -.5px;
    }

    .toc-list a:hover {
      color: #2c7da0;
      text-decoration: underline;
    }

    .share-box {
      background: #ffffff;
      border-radius: 28px;
      padding: 24px;
      text-align: center;
      border: 1px solid #eef2f8;
    }
	.share-sticky {
      background: white;
      border-radius: 28px;
      text-align: center;
      padding: 1.4rem;
    }
	.scroll-class {
	  scroll-margin-top: 120px;
	}

/* FAQs */	
.faq-minimal {

  margin: 40px auto;

}
.faq-minimal .faq-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #144d66;
}
.faq-minimal .faq-header p {
  color: #5f7f9c;
  margin-bottom: 28px;
}
.faq-minimal .faq-item {
  border-bottom: 1px solid #e9edf2;
  margin-bottom: 8px;
}
.faq-minimal .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-weight: 600;
  font-size: 1.13rem;
  cursor: pointer;
  color: #1f3b4c;
  transition: 0.2s;
}
.faq-minimal .faq-question:hover {
  color: #2c7da0;
}
.faq-minimal .faq-question i {
  transition: transform 0.25s;
  color: #8aaec2;
}
.faq-minimal .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-minimal .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-right: 16px;
}
.faq-minimal .faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-minimal .faq-answer p {
  color: #3a5a78;
  line-height: 1.55;
  margin: 0;
}

/* ========= META ROW (core responsive component) ========= */


:root{
    --primary:#0d6efd;
    --dark:#111827;
    --light:#f8fafc;
    --border:#e5e7eb;
}

body{
    font-family: "Nunito","Roboto", "Tinos", sans-serif;
}

/* HEADER */
.modern-header{
    background:#ffffff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,0.04);
	height:80px;
	padding-top:10px;
}

/* LOGO */
.site-logo{
    font-size:28px;
    font-weight:700;
    color:var(--dark);
    text-decoration:none;
}

/* MENU */
.main-menu{
    gap:5px;
	font-family: "Roboto","Nunito", "Tinos", sans-serif;
}

.main-menu .nav-link{
	color:var(--dark);
	font-size: 14px;
	font-weight: 600;
	padding: 11px 16px !important;
	border-radius: 8px;
	transition: all .3s ease;
	text-transform: uppercase;
	letter-spacing:letter-spacing: .5px;;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active{
    background:rgba(13,110,253,0.08);
    color:var(--primary);
}

/* DROPDOWN */
.dropdown-menu{
    border:none;
    border-radius:16px;
    padding:18px;
    min-width:280px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    animation:fadeIn .25s ease;
}

.dropdown-item{
    padding:12px 14px;
    border-radius:10px;
    font-size:15px;
    font-weight:500;
    color:var(--dark);
    transition:all .25s ease;
}

.dropdown-item:hover{
    background:#f1f5f9;
    color:var(--primary);
    transform:translateX(4px);
}

/* MEGA MENU */
.mega-menu{
    width:520px;
    padding:25px;
}

.mega-menu-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--dark);
}

.mega-menu a{
    display:block;
    color:#4b5563;
    text-decoration:none;
    padding:8px 0;
    transition:.25s;
    font-size:15px;
}

.mega-menu a:hover{
    color:var(--primary);
    padding-left:5px;
}

/* MOBILE */
@media(max-width:991px){

    .navbar-collapse{
        padding-top:20px;
		background:#FFF;
    }

    .dropdown-menu{
        border-radius:10px;
        box-shadow:none;
        border:1px solid var(--border);
        padding:10px;
    }

    .mega-menu{
        width:100%;
    }

    .main-menu .nav-link{
        padding:12px 15px !important;
    }
}

.dropdown-menu{
    display:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .25s ease;
    margin-top:0;
    pointer-events:none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* REMOVE GAP BELOW HEADER */
.modern-blog-banner{
    position:relative;
    overflow:hidden;
    padding:127px 0 30px;
    background:
        linear-gradient(135deg, rgba(17, 40, 96, 0.94), rgba(0, 84, 172, 0.92)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1920&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    color:#ffffff;
}

/* OPTIONAL GLOW EFFECT */
.modern-blog-banner::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    right:-120px;
    top:-120px;
    background:rgba(13,110,253,0.15);
    border-radius:50%;
    filter:blur(100px);
}

/* CONTENT */
.banner-content{
    position:relative;
    z-index:2;
}

/* BREADCRUMB */
.banner-breadcrumb{
    margin-bottom:25px;
}

.banner-breadcrumb ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
}

.banner-breadcrumb li{
    font-size:14px;
    color:rgba(255,255,255,0.7);
}

.banner-breadcrumb li a{
    color:#ffffff;
    text-decoration:none;
    transition:.25s ease;
}

.banner-breadcrumb li a:hover{
    color:#60a5fa;
}

.banner-breadcrumb li::after{
    content:'/';
    margin-left:10px;
    color:rgba(255,255,255,0.4);
}

.banner-breadcrumb li:last-child::after{
    display:none;
}

/* CATEGORY */
.banner-category{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.12);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:24px;
    backdrop-filter:blur(10px);
    font-size:14px;
}

.banner-category i{
    color:#60a5fa;
}

/* TITLE */
.blog-banner-title{
    font-size:2.5rem;
    line-height:1.12;
    font-weight:600;
    max-width:100%;
    margin-bottom:28px;
}

/* META */
.meta-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.meta-item{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 14px;
	backdrop-filter: blur(8px);
}

.meta-item i{
    color:#8bb8e6;
}

/* RESPONSIVE */
@media(max-width:767px){

    .modern-blog-banner{
        padding:65px 0 50px;
    }

    .blog-banner-title{
        line-height:1.18;
    }

    .meta-row{
        gap:10px;
    }

    .meta-item{
        font-size:13px;
        padding:9px 14px;
    }

}

.clean-related-section{
	padding: 60px 0;
	background: #f6f6f6;
	border-top: 1px solid #97a8b9;
}

/* SECTION TITLE */
.clean-related-header{
    margin-bottom:35px;
    text-align:center;
}

.clean-related-header h2{
	font-size: 2.5rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
}

.clean-related-header p{
    color:#6b7280;
    font-size: 1.2rem;
    margin:0;
}

/* ARTICLE LIST */
.related-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* ITEM */
.related-item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    transition:all .25s ease;
    overflow:hidden;
}

.related-item:hover{
    border-color:#dbeafe;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transform:translateY(-2px);
}

/* LINK */
.related-link{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 22px;
    text-decoration:none;
}

/* SMALL ICON */
.related-arrow{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:#eff6ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    transition:.25s;
}

.related-item:hover .related-arrow{
    background:#0d6efd;
    color:#ffffff;
}

/* CONTENT */
.related-content{
    flex:1;
}

.related-content h3{
    font-size:17px;
    line-height:1.6;
    color:#111827;
    margin:0 0 6px;
    font-weight:700;
    transition:.25s;
}

.related-item:hover .related-content h3{
    color:#0d6efd;
}

/* OPTIONAL META */
.related-meta{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:13px;
    color:#6b7280;
}

.related-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

/* RIGHT ARROW */
.related-right{
    color:#9ca3af;
    font-size:15px;
    transition:.25s;
}

.related-item:hover .related-right{
    color:#0d6efd;
    transform:translateX(3px);
}

/* MOBILE */
@media(max-width:767px){

    .related-link{
        padding:18px;
        gap:14px;
    }

    .related-content h3{
        font-size:15px;
        line-height:1.5;
    }

    .related-meta{
        flex-wrap:wrap;
        gap:10px;
    }

}
.progress-fill { height: 6px; background: #0F59B1; 
border-radius: 2px; width: 0%; transition: width .2s; 
}


/* =========================
MODERN PRE CODE STYLE
========================= */

pre{
    position:relative;
    background:#0f172a;
    color:#e2e8f0;
    padding:55px 24px 24px;
    margin:30px 0;
    border-radius:18px;
    overflow:auto;
    border:1px solid #1e293b;
    font-size:15px;
    line-height:1.9;
    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

/* TOP HEADER BAR */
pre::before{
    content:attr(data-title);
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:42px;
    background:#111827;
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:#94a3b8;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    display:flex;
    align-items:center;
    padding-left:20px;
}

/* COPY BUTTON */
.copy-pre-btn{
    position:absolute;
    top:8px;
    right:10px;
    border:none;
    background:#1e293b;
    color:#cbd5e1;
    width:34px;
    height:34px;
    border-radius:10px;
    cursor:pointer;
    transition:.25s ease;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.copy-pre-btn:hover{
    background:#2563eb;
    color:#ffffff;
}

/* SCROLLBAR */
pre::-webkit-scrollbar{
    height:8px;
    width:8px;
}

pre::-webkit-scrollbar-track{
    background:#111827;
}

pre::-webkit-scrollbar-thumb{
    background:#334155;
    border-radius:20px;
}

/* MOBILE */
@media(max-width:767px){

    pre{
        padding:52px 18px 18px;
        font-size:14px;
    }

}
i,
span,
a {
  display: inline-block;
  text-decoration: none;
}
.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
}
i,
span,
a {
  display: inline-block;
  text-decoration: none;
}
.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  transition: all 0.3s ease-out 0s;
  color: #3763EB;
}

a:focus,
a:hover {
  text-decoration: none;
}

/*===== NAVBAR =====*/
.navbar-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  padding: 0;
  background: #fafafa;
  border-bottom: 1px solid #eee5e5;
}

.navbar-area.header-3 {
  background: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background: #3763EB;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  background: #fff;
  padding: 0px 0;
}

.sticky .navbar {
  padding: 10px 0;
}

.navbar {
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-toggler {
  padding: 0px;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(5, 20, 65, 0.1);
    padding: 5px 12px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

.navbar-nav .nav-item {
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item:hover a {
  color: #3763EB;
}

.navbar-nav .nav-item a {
  font-size: 17px;
  color: #051441;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 20px;
  display: inline-flex;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a {
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    color: #051441;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
  }
}

.navbar-nav .nav-item a.active {
  color: #3763EB;
}

.navbar-nav .nav-item a.dd-menu {
  padding-right: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu {
    padding-right: 30px;
  }
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  position: absolute;
  right: 18px;
  font-size: 12px;
  top: 27px;
  margin-left: 5px;
  margin-top: 0px;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 16px;
    right: 0;
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu::after {
  content: '';
  position: absolute;
  background: #fff;
  width: 20px;
  height: 20px;
  top: -10px;
  left: 20%;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }
  .navbar-nav .nav-item .sub-menu::after {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu > li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu > li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu > li.active > a, .navbar-nav .nav-item .sub-menu > li:hover > a {
  color: #3763EB;
}

.navbar-nav .nav-item .sub-menu > li > a {
  font-weight: 400;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #222;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-nav .nav-item .sub-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search-form {
  position: relative;
  width: 236px;
  height: 56px;
  border-radius: 50px;
  margin-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .search-form {
    width: 220px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-form {
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .search-form {
    width: 100%;
    margin: 10px 0;
  }
}

.search-form input {
  width: 100%;
  height: 100%;
  padding: 0 25px;
  border: 1px solid #F4EEFB;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-out 0s;
}

.search-form input:focus {
  box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
}

.search-form button {
  background: none;
  border: none;
  position: absolute;
  right: 25px;
  top: 17px;
}


/*===========================
    13. Footer CSS 
===========================*/
.footer {
  position: relative;
  z-index: 2;
  background: #EFF2F9;
}

.footer .footer-widget .footer-desc {
  line-height: 30px;
}

.footer .footer-widget h4 {
  margin-bottom: 35px;
  font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer .footer-widget h4 {
    font-size: 22px;
  }
}

.footer .footer-widget ul.footer-links li a {
  color: #6A7C92;
  display: block;
  line-height: 35px;
  transition: all .3s;
}

.footer .footer-widget ul.footer-links li a:hover {
  color: #3763EB;
}

.footer .footer-widget ul {
  padding-left: 20px;
}

.footer .footer-widget ul li {
  list-style: disc;
}

.footer .footer-widget .footer-contact li p {
  line-height: 35px;
}

.footer .copyright-area {
  border-top: 2px solid rgba(106, 124, 146, 0.44);
  padding: 25px 0;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.footer .copyright-area p {
  text-align: right;
}

@media (max-width: 767px) {
  .footer .copyright-area p {
    font-size: 14px;
    text-align: center;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .footer .copyright-area p {
    font-size: 15px;
  }
}

.footer .copyright-area p a {
  color: #6A7C92;
}

.footer .copyright-area p a:hover {
  color: #3763EB;
}

@media (max-width: 767px) {
  .footer-social-links {
    margin-bottom: 15px;
  }
}

.footer-social-links ul {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .footer-social-links ul {
    justify-content: center;
  }
}

.footer-social-links ul li {
  display: inline-block;
}

.footer-social-links ul li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  background: rgba(106, 124, 146, 0.1);
  display: block;
  font-size: 18px;
  color: #6A7C92;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .footer-social-links ul li a {
    padding: 0 7px;
    margin-right: 10px;
  }
}

.footer-social-links ul li a:hover {
  background: linear-gradient(#3763eb 0%, #6f58e8 100%);
  color: #fff;
}


.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}