@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');


:root {
    --primary:  #e31c25;
    --secondary:  #646464;
    --primary-hover:  #e31c25;
    --dark: #01060f;
    --white: #ffffff;
    --rgba-primary-1: rgba(227, 28, 37, 0.1);
    --rgba-primary-2: rgba(227, 28, 37, 0.2);
    --rgba-primary-3: rgba(227, 28, 37, 0.3);
    --rgba-primary-4: rgba(227, 28, 37, 0.4);
    --rgba-primary-5: rgba(227, 28, 37, 0.5);
    --rgba-primary-6: rgba(227, 28, 37, 0.6);
    --rgba-primary-7: rgba(227, 28, 37, 0.7);
    --rgba-primary-8: rgba(227, 28, 37, 0.8);
    --rgba-primary-9: rgba(227, 28, 37, 0.9);
    --font-family-base: 'Poppins', sans-serif;
    --font-family-title: "Josefin Sans", serif;
    --body-font-size: 16px;
    --body-font: #212529;
  }
 
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
:focus,
button:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

a,
button,
input[type=submit] {
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

a {
    color: var(--secondary);
    text-transform: inherit;
    text-decoration: none;
}

a:hover,
a :focus {
    color: var(--primary);
    text-decoration: none;
    box-shadow: none;
}

a:focus {
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:  var(--font-family-title);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .5px;
    color: var(--body-font);
}

body {
    color: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--font-family-base);
    overflow-x: hidden !important; 
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    user-select: none;
  }
  
    


ul {
    padding: 0;
    margin: 0
}

ul,
li {
    list-style: none;
}

p {
    font-size: 16px;
    line-height: 26px;
}

a {
    transition: all .3s ease
}

.page-wrapper {
    overflow-x: hidden !important
}
.mb-10 {
    margin-bottom: 10px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-70 {
    margin-bottom: 70px !important
}

.mb-80 {
    margin-bottom: 80px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-30 {
    margin-top: 30px !important
}

.mt-40 {
    margin-top: 40px !important
}

.mt-50 {
    margin-top: 50px !important
}

.mt-60 {
    margin-top: 60px !important
}

.mt-70 {
    margin-top: 70px !important
}
.mt-100 {
    margin-top: 100px !important
}

.pt-100 {
    padding-top: 100px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.pb-75 {
    padding-bottom: 75px !important
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important
}
.text-black {
    color: #000 !important
}

.text-red {
    color:  var(--primary) !important;
}

.bg-transparent {
    background-color: transparent
}


.btn {
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    border-radius: 0;
    padding: 7px 10px;
    text-align: center;
    transition: all .4s ease;
    background-color:  var(--primary);
    border: 1px solid transparent;
    color: var(--white);
    
}

.btn:hover {
    background: 0 0;
    border-color:  var(--primary);
    color:  var(--primary);
}

.link {
    font-size: 16px;
    line-height: 26px;
    text-decoration: underline;
}
.title {
    font-size: 40px
}

.section-padding {
    padding: 100px 0
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.overlay.bg-black {
    background-color: #000
}

.overlay.bg-red {
    background-color:  var(--primary);
}

.op-1 {
    opacity: .1
}

.op-2 {
    opacity: .2
}

.op-3 {
    opacity: .3
}

.op-4 {
    opacity: .4
}

.op-5 {
    opacity: .5
}

.op-6 {
    opacity: .6
}

.op-7 {
    opacity: .7
}

.op-8 {
    opacity: .8
}

.op-9 {
    opacity: .9
}

.op-10 {
    opacity: 1
}

.bg-f {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd
}
.header-wrap {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background: 0 0;
    padding: 25px 20px 20px;
    transition: .3s
}

.header-wrap .container {
    border: 1px solid rgba(255, 255, 255, .2)
}

.header-wrap.sticky {
    background: #01060f;
    z-index: 20;
    padding: 0 20px
}


.header-wrap .header-top{
    padding: 10px 0
}

.header-wrap .header-bottom {
    padding: 5px 0;
    transition: all .3s ease
}


.header-wrap .header-bottom .header-btn {
    margin-left: 20px
}

.header-wrap .header-bottom .header-btn .btn{
    height: 48px;
    line-height: 27px
}

.header-wrap .container {
    border: none
}
.section-title h2 {
    position: relative;
    padding-left: 13px;
    font-size: 40px;
    line-height: 48px;
    margin: 0
}

.section-title h2:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 3px;
    height: 100%
}

.section-title h2:before {
    background-color: var(--primary);
}
.content-title {
    position: relative;
    padding-left: 13px
}

.content-title:before {
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
    width: 3px;
    height: calc(100% - 5px);
    background-color:  var(--primary);
}

.content-title h2 {
    font-size: 40px;
    line-height: 50px
}
.login-form{
    background-color: #f8f8f8;
    padding: 45px 60px 50px
}

.login-form .form-group{
    margin-bottom: 20px
}

.login-form .form-group label{
    font-weight: 500;
    color: #000;
    display: block;
    margin: 0 0 10px
}

.login-form .form-group input,
.login-form .form-group textarea{
    width: 100%;
    background-color:  var(--white);
    border: 1px solid #dfedee;
    padding: 10px 20px
}

.login-form .form-group input {
    height: 56px
}

.login-form .form-group textarea {
    height: 120px
}
.footer-wrap {
    background: var(--dark);
    border-top:solid 3px var(--primary);
    color: var(--white);
    text-align:center;
    padding:20px 0 10px 0;
}
.copyright-text{font-size:13px;}
.cat-post-wrap .container {
    position: relative
}

.cat-item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px
}

.cat-item-wrap .cat-img {
    position: relative;
    overflow: hidden
}

.cat-item-wrap .cat-img img {
    transition: all .8s ease
}

.cat-item-wrap .cat-img .news-date {
    position: absolute;
    top: 25px;
    right: 25px
}

.cat-item-wrap .cat-content {
    position: relative;
    margin: 22px 0 0
}

.cat-item-wrap .cat-content .news-date {
    position: absolute;
    top: 25px;
    right: 25px
}

.cat-item-wrap.v1 .cat-item:hover .cat-info {
    transform: translateY(0)
}

.cat-item-wrap.v1 .cat-item:hover .cat-info p,
.cat-item-wrap.v1 .cat-item:hover .cat-info a.btn {
    visibility: visible;
    opacity: 1
}

.cat-item-wrap .cat-item:hover .cat-card-title {
    color: var(--primary); 
}

.cat-item-wrap .cat-item .cat-img img {
    transition: .8s
}

.cat-item-wrap .cat-item:hover .cat-img img {
    transform: scale(1.05)
}
.news-date {
    position: absolute;
    background: #fff;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10
}

.news-date h4 {
    font-size: 30px;
    color: var(--primary);;
    font-weight: 700;
    margin: 0
}

.news-date h4 span {
    font-size: 16px;
    display: block;
    font-weight: 600;
    color: #000;
    font-family: ubuntu, sans-serif
}




.blog-item {
    margin-bottom: 25px;
    border:solid 1px var(--primary);
    padding:15px;
}


.blog-item .blog-img {
    position: relative;
    overflow: hidden
}


.blog-item .blog-img img {
    transition: .4s
}


.blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 30px;
    color: #fff;
    padding: 7px 15px 8px;
    line-height: 1.2;
    z-index: 1;
    display: inline-block
}


.blog-item .blog-img .blog-category:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--primary);;
    transform: skew(-20deg);
    z-index: -1
}


.blog-item .blog-info {
    margin: 20px 0 0
}


.blog-item .blog-info .blog-metainfo {
    margin: 0 0 15px
}


.blog-item .blog-info .blog-metainfo li {
    display: inline-block;
    margin-right: 15px
}


.blog-item .blog-info .blog-metainfo li:last-child {
    margin-right: 0
}


.blog-item .blog-info .blog-metainfo li a:hover {
    color: var(--primary);
}


.blog-item .blog-info .blog-metainfo li i {
    position: relative;
    margin-right: 8px
}


.blog-item .blog-info h3 {
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 10px
}


.blog-item:hover .blog-img img {
    transform: scale(1.05)
}


.blog-item:hover .blog-info h3 a {
    color: var(--primary);
}



.blog-item .blog-info .blog-metainfo li {
    color: #646464
}

.blog-item .blog-info .blog-metainfo li a {
    color: #646464
}

.blog-item .blog-info .blog-metainfo li a:hover {
    color: var(--primary);
}

.blog-item .blog-info .blog-metainfo li i {
    color: var(--primary);
}

.popular-post-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px
}

.popular-post-item .post-img {
    width: 90px;
    margin-right: 10px
}

.popular-post-item .post-info {
    width: calc(100% - 100px)
}

.popular-post-item .post-info h5 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 700
}

.popular-post-item .post-info span {
    font-size: 14px;
    color: var(--primary);;
    line-height: 19px;
    display: block;
    margin: 0 0 5px
}
.sidebar .sidebar-widget {
    margin: 0 0 35px
}

.sidebar .sidebar-widget .sidebar-widget-title {
    margin: 0 0 25px;
    font-weight: 400
}
.sidebar .sidebar-widget {
    margin: 0 0 35px
}

.sidebar .sidebar-widget .sidebar-widget-title {
    margin: 0 0 25px;
    font-weight: 400
}

.sidebar .sidebar-widget.search-box {
    position: relative
}

.sidebar .sidebar-widget.search-box input {
    width: 100%;
    height: 48px;
    background: 0 0;
    color: #000;
    font-size: 14px;
    line-height: 21px;
    padding: 10px 60px 10px 10px;
    border: 1px solid rgba(0, 0, 0, .2)
}

.sidebar .sidebar-widget.search-box button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    border: none;
    background: 0 0
}

.sidebar .sidebar-widget.search-box button i {
    color: var(--primary);;
    font-size: 20px
}

.sidebar .category-box ul li {
    display: block
}

.sidebar .category-box ul li a {
    position: relative;
    padding-left: 22px;
    font-weight: 500
}

.sidebar .category-box ul li a::before {
    position: absolute;
    top: 13px;
    left: 0;
    content: "";
    background: var(--primary);;
    width: 5px;
    height: 1px
}

.sidebar .category-box ul li a:hover {
    color: var(--primary);
}

.sidebar .category-box ul li a:hover:before {
    background: var(--primary);
}

.sidebar .sidebar-widget .tag-list ul li {
    display: inline-block;
    margin: 0 8px 12px 0
}

.sidebar .sidebar-widget .tag-list ul li a {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    padding: 10px 15px;
    border: 1px solid #646464;
    color: #646464;
    transition: .4s
}

.sidebar .sidebar-widget .tag-list ul li a:hover {
    background-color: var(--primary);;
    color: #fff;
    border-color: transparent
}

@media only screen and (max-width:767px) {
    .sm-none {
        display: none !important
    }

    .pt-100 {
        padding-top: 50px !important
    }

    .pb-75 {
        padding-bottom: 25px !important
    }

    .pb-100 {
        padding-bottom: 50px !important
    }

    .ptb-100 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }

   

    p {
        font-size: 14px !important
    }


    .cat-item-wrap {
        grid-template-columns: 1fr;
        grid-gap: 30px
    }

}

  
  /**/
  .main {
    display: flex;
    flex-direction: column;
     width: 90%;
    min-width: 300px; 
    height: auto;
    padding: 10px;
    border-radius: 30px;
    margin:20px;
    box-shadow: 0 0 40px 5px rgba(123, 73, 221, 0.25);
  }
/*   @media (max-width: 900px) {
    .main {
      transform: scale(0.7);
    }
  }
  @media (max-width: 800px) {
    .main {
      transform: scale(0.6);
    }
  }
  @media (max-width: 600px) {
    .main {
      transform: scale(0.5);
    }
  } */
  
  .bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 33%;
    height: 50px;
    padding: 10px 0px;
    margin-bottom: 10px;
  }
  .bar__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    padding: 10px;
    background: var(--primary);
    border-radius: 50%;
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 420px;
    position: relative;
  }
  .menu__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 140px;
    height: 140px;
    cursor: pointer;
    background: transparent;
    z-index: 100;
    transition: 150ms;
  }
  .menu__item:hover .menu__icon {
    animation: icon 0.1s 4;
  }
  .menu__item:hover .menu__span {
    transform: translateY(-32px);
    transition: 300ms;
  }
  .menu__icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin: 2px;
  }
  .menu__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: 18px;
    overflow: hidden;
  }
  
  /**/
  .is-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: var(--primary);
    transition: 200ms;
    border-radius: 20px;
    color: #ffffff;
  }
  
  @keyframes icon {
    0% {
      transform: rotateZ(-10deg);
    }
    100% {
      transform: rotateZ(10deg);
    }
  }
  @media (max-width: 767px) {
    .main {
      transform: scale(0.7);
    }
  }

.embed-container {
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  padding:10% 0 50% 0;
  margin-bottom:20px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}