
/**************************************
                General
**************************************/
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
a, button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
}
ol,ul{
padding: 0;
margin: 0;
}

body{
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Milliard Book';
  font-weight: 400;
  color: #000;
}

a,a:hover,a:focus{
  color: #ec5a13;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  text-decoration: none;
}

h1,h2,h3,h4 {
  transition: all .4s;
-webkit-transition: all .4s;
-moz-transition: all .4s;
-ms-transition: all .4s;
-o-transition: all .4s; 
}

p {
margin-top: 0;
margin-bottom: 1rem;
}

main{
  overflow: hidden;
}

img {
max-width: 100%;
height: auto;
transition: all .4s;
-webkit-transition: all .4s;
-moz-transition: all .4s;
-ms-transition: all .4s;
-o-transition: all .4s; 
}
/**************************************
      Menu
**************************************/
.flex{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.left,.right {
  display: flex;
  align-items: center;
}
.left,.right{
  gap: 20px;
}

.header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 200;
  margin: 0 auto;
  background-color: #ffffff;
  transition: ease .3s;
  -webkit-transition: ease .3s;
  -moz-transition: ease .3s;
  -ms-transition: ease .3s;
  -o-transition: ease .3s;
}

.wrapper {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ec5a13;
  border-bottom: 1px solid #ec5a13;
}

#navbar {
  display: flex;
  position: relative;
  justify-content: center;
  padding: 0;
  align-items: center;
  gap: 80px;
}
header{
position: relative;
transition: all .4s;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0px 6px 17px 0px #0000005e;
}

@media screen and (max-width: 992px) {
#navbar {
  position: fixed;
    top: 139px;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    display: block;
    background: #fff;
}
header.sticky #navbar{
  top: 107px;
}
.wrapper{
  border-color: #fff;
}
header form {
  width: 92%;
}
.left form input {
  width: 100%;
  height: 37px;
  border-radius: 4px 0 0 4px;
}
.get-btn {
  padding-left: 60px;
  padding-top: 50px;
}
#navbar.active {
  left: 0rem;
  opacity: 1;
  visibility: visible;
}
#navbar:before {
width: 0;
}
}
#navbar ul li {
position: relative;
display: inline-block;

}
#navbar ul li a {
display: flex;
justify-content: center;
align-items: center;
font-family: inherit;
cursor: pointer;
transition: all 0.3s ease-in-out;
padding: 8px 0px;
font-weight: 400;
color: #000000;
font-size: 16px;
letter-spacing: 0px;
line-height: 24px;
margin-right: 32px;
position: relative;
}
#navbar ul li:last-child a{
  margin-right: 0;
}
#navbar ul li a.current-menu-item{
color:  #ec5a13;

}

#navbar ul li a.current-menu-item:after,
#navbar ul li a:hover:after{
  width: 60%;
}
#navbar ul li a:hover {
outline: none;
color:  #ec5a13;
}

@media only screen and (min-width: 993px) {
#navbar .menu-dropdown:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
}
@media only screen and (max-width: 992px) {
#navbar ul {
  width: auto;
  height: auto;
  /* padding: 1rem 0; */
  margin: 20px !important;
}
#navbar ul li {
  display: block;
  margin: 0 auto;
margin-bottom: 0px;
border-radius: 4px;
}
#navbar ul li a {
  justify-content: space-between;
 
}
#navbar ul li a.current-menu-item:after, #navbar ul li a:hover:after {
  width: 100%;
}
}
#navbar ul li ul {
position: absolute;
top: 50px;
left: 0;
min-width: 160px;
height: auto;
padding: 0 0rem 1rem;
opacity: 0;
visibility: hidden;
transform: translateY(1rem);
border-radius: 0 0 0.25rem 0.25rem;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
background: #fff;
}
#navbar ul li ul li {
display: block;
margin-top: 0.75rem;
}
#navbar ul li ul li a {
font-family: inherit;
font-size: 14px;
font-weight: 400;
line-height: inherit;
cursor: pointer;
color:  #ec5a13;
transition: all 0.35s ease;
display: block;
text-align: left;
padding: 0;
}
#navbar ul li ul li a:hover {
outline: none;
color: #ffa007;
}

@media only screen and (max-width: 992px) {
#navbar ul li ul {
  position: relative;
top: -0.5rem;
left: 0;
width: 100%;
max-height: 0;
padding: 0px;
border: none;
outline: none;
opacity: 1;
overflow: hidden;
visibility: visible;
transform: translateY(0px);
box-shadow: none;
background: transparent;
padding-left: 15px;
/* padding-bottom: 10px; */
border-radius: 4px;
margin: 0 !important;
box-sizing: border-box;

	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: ease;
}
    #navbar ul li ul.active{
        max-height: 150px;
        box-sizing: border-box;
	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: ease;
    }
#navbar ul li ul li  a {
color: #fff;
font-size: 14px;
opacity: .8;
}
}
.burger {
position: relative;
display: none;
cursor: pointer;
user-select: none;
opacity: 0;
visibility: hidden;
background: transparent;
/* border: 1px solid #ffffff; */
color:  #ec5a13;
/* padding: 4px 7px; */
font-size: 20px;
border-radius: 0 4px 4px 0;
padding-bottom: 1px;
text-align: center;
}

.burger-line {
position: absolute;
display: block;
left: 0;
width: 100%;
height: 2px;
opacity: 1;
border: none;
outline: none;
background:  #ec5a13;
}
.burger-line:nth-child(1) {
top: 0px;
}
.burger-line:nth-child(2) {
top: 0.5rem;
}
.burger-line:nth-child(3) {
top: 1rem;
}
@media only screen and (max-width: 992px) {
  .hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 7.5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.burger {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative;
  background: #ec5a13;
  padding-inline: 7px;
  border-radius: 4px;
}
.login-search {
position: absolute;
right: 12px;
display: flex;
}
.wrapper{
justify-content: center;
}
}
.overlay {
position: fixed;
top: 76px;
left: 0;
height: 100%;
width: 100%;
z-index: 9;
opacity: 0;
visibility: hidden;
transition: all 0.35s ease-in-out;
background-color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 992px) {
.overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
}

.hamburger .line{
  width: 35px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 7.5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

#hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}


/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 50px 0;
}
p{
    font-size: 16px;
    line-height: 1.6;
}
.primary-btn{
  border: 1px solid #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #ec5a13;
  font-size: 16px;
  color: #ffffff;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}
.primary-btn::after{
  content: '';
    background-color: #000;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0);
}
.primary-btn:hover::after{
    transform: scale(1);
}
.primary-btn:hover{
    color: #fff;
}
.container {
  max-width: 1500px;
  position: relative;
}

/*************************************
                Home Page
**************************************/
.news-box{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 0px 17px 4px #00000017;
  margin-bottom: 10px;
  transition: all .5s;
  width: 80%;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid #ddd;
&:hover{
  transform: translateY(-5px);
}

}
.blog-listing{
  .container{
    a:nth-child(2n){
      .news-box{
        background-color: #00000017;
        box-shadow: 0px 0px 17px 0px #00000025;
    }
    }
  }
}
.news-box img{
  width: 100%;
  transition: all 1s;
}
.news-box:hover img{
  transform: scale(1.1);
}
.author{
  display: flex;
    gap: 10px;
    align-items: center;
    color: #ec5a13;
}
.author img{
  width: auto;
  height: auto;
  filter: brightness(0) saturate(100%) invert(39%) sepia(96%) saturate(937%) hue-rotate(352deg) brightness(95%) contrast(94%);
}
.news-box:hover .author img{
  transform: scale(1);
}
.news-contemt {
color: #000;
p{
  margin: 0;
}
&:hover{
  h1{
    color: #ec5a13;
  }
}
}

#pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.page-btn, .page-numbers {
  border: none;
  background-color: #f4f4f4;
  height: 40px;
  width: 45px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: all .4s;
  padding: 6px 17px;
  &:hover{
    background-color: #ec5a13;
    color: white;
  }
  
}

.page-btn.active, .page-numbers.current {
  background-color: #ec5a13;
  color: white;
}

.dots {
  display: flex;
  align-items: center;
  padding: 10px;
}
.box{
  padding: 10px;
box-shadow: 0px 0px 17px 0px #00000025;
margin-bottom: 15px;
width: 80%;
margin-inline: auto;
border-radius: 10px;
}
.blog-details{
  .author{
    p{
      margin-bottom: 0;
    }
  }
  h1{
    margin-bottom: 20px;
  }
  .blog-img{
    margin-bottom: 5px;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  h2,h3{
    margin-bottom: 5px;
  }
  ul{
    list-style-type: disc;
    font-weight: 500;
    margin-bottom: 15px;
    background: #dddddd7e;
    padding: 20px;
    border-radius: 10px;
    padding-left: 40px;
    ::marker{
      color: #ec5a13;
    }
  }
  ol{
    margin-bottom: 15px;
    background: #dddddd7e;
    padding: 20px;
    border-radius: 10px;
    padding-left: 44px;
    ::marker{
      color: #ec5a13;
    }
  }
  hr{
    margin-bottom: 20px;
  }
  iframe{
    width: 100%;
    border-radius: 10px;
    height: 400px;
    border: 0;
  }
}
/************************************
    Footer
************************************/
footer {
background-color: rgb(0, 0, 0);
width: 100%;
padding-block: 40px;
position: relative;
text-align: center;
}
.footer-logo {
    margin-bottom: 20px;
}
footer p{
  color: #fff;
  margin: 0;
}
.footer-logo{
  filter: brightness(0) saturate(100%) invert(93%) sepia(7%) saturate(26%) hue-rotate(267deg) brightness(105%) contrast(107%);
}
/*******************************
  Responsive
********************************/

.mobile{
  display: none;
}
@media (max-width: 1920px) { 
  
}
@media (max-width: 1440px) and (min-width: 1366px){
   .container{
    width: 1230px;
   }
}
@media (max-width: 1366px) {
   
}
@media (max-width: 1199.98px) { 

}

@media (max-width: 991.98px) { 
  .mobile{
    display: block;
  }
  .desktop{
    display: none;
  }
  .flex {
    padding: 10px 0;
    justify-content: space-between;
}
.wrapper {
  padding-bottom: 7px;
  border-bottom-color: #ddd;
}

}
@media (max-width: 575.98px) { 
 
.primary-btn{
  font-size: 14px;
}
.hamburger .line {
  width: 25px;
}
.burger {
  padding-inline: 8px;
}

header.sticky #navbar {
  top: 103px;
}

.news-box h4 {
  font-size: 18px;
  line-height: 26px;
}
.news-box p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 6px;
}
.author p {
  font-size: 12px;
  margin-bottom: 0;
}

}

 /**************************************
             About
**************************************/
@media (max-width: 1920px) { 
   
}
 @media (max-width: 1399.98px) {
   
 }
 @media (max-width: 1199.98px) { 
    
}
@media (max-width: 991.98px) { 
  .hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 7.5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.burger {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative;
  background: #ec5a13;
  padding-inline: 7px;
  border-radius: 4px;
}
header.sticky #navbar {
  top: 66px;
}
header #navbar {
  top: 66px;
}
.sec-gap {
  padding: 25px 0;
}
 }
 @media (max-width: 575.98px) { 
  .page-btn {
    height: 35px;
    margin: 0 2px;
}
h1 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 2px;
}
.box,.news-box {
  width: 100%;
}
p {
  font-size: 14px;
  line-height: 1.6;
}
h2 {
  font-size: 18px;
  line-height: 24px;
}
h3 {
  font-size: 16px;
  line-height: 22px;
}
body{
  font-size: 14px;
}
.blog-details {
  iframe {
      height: 240px;
  }
}
.blog-details {
  ol {
      padding: 15px;
      padding-left: 35px;
  }
  ul {
    padding: 15px;
    padding-left: 30px;
}
}
 }
