@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Black.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Bold.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Medium.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Medium.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Book.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --red: #E1000D;
     --black: #000000;
     --yellow: #f39110;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

h2 {
    color: #000000;
    font-size: 42px;
    line-height: 1.1;
    padding-bottom: 20px;
}
img{
    max-width: 100%;
}

p,
li {
    font-size: 15px;
    color: #212529;
    line-height: 1.5;
    margin-bottom: 5px;

}

p {
    margin-bottom: 10px;
}

a{
    text-decoration: none;
}

h2 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 30px;
    /* color: var(--black); */
    line-height: 1.1;
    margin-bottom: 15px;
}

h3 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -1px;
}

h4 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--black);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    padding-bottom: 15px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

header.scrl {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

header .serch {
    position: relative;
}

header .serch input {
    width: 90%;
    padding: 5px 15px;
    margin: auto;
    display: block;
    border-radius: 5px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

header .serch .serbtn {
    position: absolute;
    background-color: transparent;
    border: 0;
    right: 9%;
    top: 10px;
}

header .news {
    color: var(--red);
    text-decoration: none;
    border: 1px solid var(--red);
    width: 200px;
    font-size: 14px;
    background-color: #fff;
}

.sidebar {
    height: 100vh;
    width: 30vw;
    position: fixed;
    transition: 1s ease;
    right: -40px;
    transform: translateX(100%);
    top: 0;
    background-color: var(--red);
}

.hide {
    transform: translateX(0);
    right: 0;
}


.sidebar.hide::before {
    content: "";
    position: fixed;
    width: 110vw;
    height: 100vh;
    transform: translateX(-110vw);
    background-color: rgb(0 0 0 / 60%);
    left: 0;
}

.hamb,
.close {
    cursor: pointer;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.mi-menu ul {
    padding: 0 2rem;
}

.mi-menu ul li {
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    list-style: none;
}

.mi-menu ul li a {
    color: #fff;
    text-decoration: none;
}

.mi-menu.active {
    transform: translateX(0%);
}

.fix-top nav {
    padding-bottom: 1rem !important;
}

.header-fixed {
    position: relative;
}

.mi-sub-menu,
.mi-sub-sub-menu {
    display: none;
}

.mi-sub-menu li:last-child,
.mi-sub-sub-menu li:last-child {
    border-bottom: unset;
}

.mi-has-child,
.mi-has-grand-child {
    position: relative;

}

.mob-drop-down {
    position: absolute;
    right: 0;
    top: 8px;
    background-color: #212529;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.mob-drop-down::before,
.mob-drop-down::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.3s ease-in-out;
}

.mob-drop-down::after,
.mob-drop-down.acti::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.ope-ul {
    margin-top: 7px;
    border-top: 1px solid #ccc;
}


.mi-has-child.ope-li,
.mi-has-grand-child.ope-li {
    padding-bottom: 0;
}

.nav-ul {
    max-width: 1200px;
    margin: 0 auto;
}



.anno {
    position: relative;
    background: #000;
    color: #fff;
    padding: 12px 20px 12px 50px;
    /* extra left space */
    font-size: 14px;
    line-height: 1.4;
    clip-path: polygon(0px 0, 100% 0, 100% 100%, 40px 100%);
}

.ev-cta {
    background: linear-gradient(90deg, #E1000D 0%, #EA5912 100%);
    color: #fff;
    text-decoration: none;
    width: 190px;
    margin-left: auto;
    height: 48px;

}

.bnne-cont {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.bnne-cont a {
    transition: all 0.3s ease-in-out;
    display: block;
    width: 19%;
}

.bnne-cont a img {
    width: 100%;
}

.bnne-cont a:hover {
    transform: translateY(-8px);
}

.o_Swiper {
    padding-bottom: 50px;
}

.o_Swiper .swiper-pagination {
    bottom: 0px;
    top: unset;
}

.o_Swiper .swiper-pagination-bullet {
    background-color: #A2A2A2;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.o_Swiper .swiper-pagination-bullet-active {
    background-color: #870000;
}

.overv h3 {
    font-size: 22px;
    color: #870000;
}

.sec-title h2 {
    position: relative;
    padding-left: 20px;
}

.sec-title h2::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    border-radius: 50%;
    left: -15px;
    top: -30px;
}

.FFE8E8 h2::before {
    background-color: #FFE8E8;
}

.FFE4FC h2::before {
    background-color: #FFE4FC;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}


.at-a-glance .bg {
    background-color: var(--white);
    padding: 30px 12px;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(234, 89, 18, 1);
    border-radius: 1rem;
    min-height: 200px;
}

.at-a-glance .bg:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    box-shadow: 0px 10px 10px 0px #00000012;
    transition: all 0.3s ease-in-out;
}

.at-a-glance .bg .count {
    color: var(--red);
    font-size: 40px;
    line-height: 1;
    text-wrap: auto;
}

.at-a-glance .bg b,
.at-a-glance .bg strong {
    color: #000;
    font-size: 18px;

}

.at-a-glance .bg:hover .count,
.at-a-glance .bg:hover .title,
.at-a-glance .bg:hover b,
.at-a-glance .bg:hover strong {
    color: #fff;
}

.at-a-glance .bg .title {
    font-size: 13px;
    min-height: 50px;
    padding-top: 15px;
    position: relative;
}


.at-a-glance .bg p {
    font-size: 13px;
    color: var(--black);
}

.s_Swiper {
    padding-bottom: 100px;
}

.s_Swiper .swiper-button-next,
.s_Swiper .swiper-button-prev {
    top: 83%;
    color: var(--red);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid var(--red);
}

.s_Swiper .swiper-button-prev {
    left: 91%;
}

.accy{
    cursor: pointer;
    bottom: 250px;
    position: absolute;
    z-index: 1;
}
.anno a{
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
}
.serv{
    background-color: #F2F7FF;
}

.o_Swiper img{
border-radius: 25px;
}
.C3E8F1 h2::before{
    background-color:#C3E8F1 ;
    z-index: 0;
}
.sec-title h2 span{
    position:relative;
    z-index: 1;
}
.ser-box{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    min-height: 225px;
    transition: all 0.3s ease-in-out;
}
.ser-box:hover{
    transform: translateY(-8px);
}
.ser-box h3{
    font-size: 22px;
    color: #000000;
    margin: 10px 0px 5px 0;
    line-height: 1.4;
}
.ser-box p{
    margin-bottom: 3px;
}
.DDF6FD h2::before{
    background-color: #DDF6FD;
}
.about-news .line{
    position: relative;
}
.about-news .line::before{
    content: "";
    position: absolute;
    width: 2px;
    height: 120%;
    right: -30px;
    top: -30px;
    background-image: url(../images/Line.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.about-news .vol-box{
        color: #000;
        border-color: #000 !important;
        transition: all 0.3s ease-in-out;
        margin-bottom: 10px;
}
.about-news .vol-box:hover{
    border-color: #EA5912 !important;
}

.about-news .vol-box p{
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}
.FFE4FC h2::before{
    background-color:#FFE4FC;
}

.FFF3C3 h2::before{
    background-color:#FFF3C3;
}

.e-box{
   background: linear-gradient(180deg, #F2F2F2 0%, #FFF9F9 100%);
   display: block;
   border-bottom: 4px solid #EA5912;
}
.e-box .type{
    width: fit-content;
    background: linear-gradient(90deg, #E1000D 0%, #EA5912 100%);
    padding: 10px 20px 10px 30px;
    margin-left: auto;
color: #fff;
border-bottom-left-radius: 60px;

}
.e-box p{
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
    word-break: break-all;
}
.e-box-inner{
    min-height: 125px;
}

.e-book-box{
    border-radius: 30px;
    border: 1px solid #00000080;
    text-align: center;
    padding: 30px;
    min-height: 250px;
    transition: all 0.5s ease-in-out;
}
.e-book-box:hover{
    scale: 1.03;
}

.e-book-box p{
    margin-top: 12px;
    min-height: 65px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.e-book-box img{
    max-width: 85%;
}

.e-book-box.box-1{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(234, 89, 18, 0.4) 100%);
}

.e-book-box.box-2{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(18, 68, 234, 0.4) 100%);
}

.e-book-box.box-3{
background: linear-gradient(180deg, #FFFFFF 0%, rgba(182, 221, 245, 0.4) 100%);
}

.e-book-box.box-4{
background: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 181, 70, 0.4) 100%);
}


footer{
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: center center;
}
footer p, footer a,footer li{
    color: #fff;
    transition: all 0.3s ease-in-out;

}
footer li{
    margin-bottom: 15px;
}
footer a:hover{
    color: var(--yellow);
}

.bor-r{
    border-right: 1px solid #9f9f9f;
}

.bor-b{
    border-bottom: 1px solid #9f9f9f;
}

.f-line{
    background: linear-gradient(270deg, rgba(225, 0, 13, 0) 0%, #EA5912 49.52%, #E1000D 100%);
    width: 125px;
    height: 2px;
}
footer h3{
    color:#fff;
    font-size: 20px;
}
.pwte {
    padding-right: 13px !important;
}

.fo-gigw a{
border: 1px solid #fff;
padding: 15px 20px;
width: 127px;
text-align: center;
transition: all 0.3s ease-in-out;
}
.fo-gigw a:hover{
    background-color: #fff;
    color: #212529;
}

#bt {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  cursor: pointer;

}
#bt.show {
  opacity: 1;
  visibility: visible;
}
#bt img{
    background-color: var(--yellow);
      border-radius: 50%;
}
.social a{
    transition: all 0.3s ease-in-out;
}
.social a:hover{
    scale: 1.1;
}