@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --yellow: #ffd200;
    --blue: #006bb3;
    --green: #00ad55;
    --bg: #e2e2e2;
    --bg2:#fff5f5;
    --bg3: #edf3ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

/********* Back To Top Button Start *********/

.h-font{
    font-family: "Montserrat", sans-serif;
}
section{
    padding: 100px 0;
}

#float-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #20b657;
    color: var(--white);
    width: 65px;
    height: 65px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 35px;
    border-radius: 50px;
    transition: background-color .4s;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
}
#float-icon:hover{
    background-color: #075e54;
}

#top{
    display: inline-block;
    background-color: var(--blue);
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    transition: background-color .4s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    line-height: 50px;
    color: var(--white);
    transition: .4s ease-in-out;
  }
  #top:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--green);
  }
  #top:hover::after {
    color: var(--white);
  }
  #top:active {
    background-color: var(--green);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

.all-btn a {
    text-decoration: none;
    color: var(--white);
    padding: 15px 34px;
    font-size: 18px;
    min-width: 200px;
    text-align: center;
    font-weight: 500;
    background-color: var(--green);
    border: 1px solid var(--green);
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease-in-out;
}
.all-btn a.btn-con{
    background-color: transparent;
    border-color: var(--white);
}
.all-btn a:hover{
    border-color: var(--blue);
    background-color: var(--blue);
}




.heading span{
    display: inline-block;
    background-color: transparent;
    padding: 6px 13px 6px 15px;
    background-image: linear-gradient(115deg, var(--green) 33%, var(--blue) 100%);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    border-radius: 10px 0px 10px 0px;
}
.heading h1{
    font-size: 40px;
    color: var(--black);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
}
.a-text p{
    margin-bottom: 30px;
}
.heading p{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}
.heading .top-head{
    color: var(--red);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.service .heading h1{
    color: #fff;
}
.service .heading .top-head{
    color: #fff;
}
.service .heading p{
    color: #fff;
}

/********* Banner Section Start *********/

#banner{
    height: 851px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#banner .all-btn{
    margin-top: 30px;
}
#banner video{
    width: 100%;
}
#banner img{
    width: 100%;
    height: auto;
    animation: zoomLoop 20s linear infinite both;
}
@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}
#banner .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 42, 75, 0.7);
    z-index: 1;
}
#banner .ban-text{
    position: absolute;
    top: 52%;
    left: 0;
    width: 1000px;
    transform: translateY(-50%);
    padding-left: 200px;
    z-index: 2;
}
#banner .ban-text h1{
    font-weight: 450;
    color: var(--white);
    font-size: 75px;
    line-height: 1.2;
    margin-bottom: 45px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
#banner .ban-text h6{
    font-size: 16px;
    letter-spacing: 7px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 25px;
    text-shadow: rgb(0, 0, 0) 2px 2px 20px;
}
#banner .ban-text h1 span{
    color: var(--yellow);
    font-style: italic;
}
#banner .ban-text p{
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    line-height: 1.7;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 50px;
}
#banner img{
    position: relative;
    object-fit: cover;
    vertical-align: top;
    height: 953px;
    overflow: hidden;
}
.carousel-caption{
    z-index: 2 !important;
    width: 40%;
    text-align: left;
    position: absolute;
    left: 950px;
    top: 55%;
    transform: translateY(-50%);
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}
#banner .b-btn{
    margin-top: 40px;
}
#banner .b-btn a{
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: .4s ease-in-out;
}
.slick-active img{
    transform: scale(1);
}
.slide-wrap2 .slick-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
}
.slide-wrap2 .slick-active img {
  animation: zoomIn 12s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1) translateX(0);
  }
  to {
    transform: scale(1.2) translateX(-30px);
  }
}


/********* Banner Section End *********/

/********* About Section Start *********/

#about{
    /* background-color: #F2F5F5; */
    background-color: #eff7ff;
}
#about .count-wrap h3{
    font-size: 55px;
    margin-bottom: 0;
    font-weight: 550;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -2px;
    color: var(--green);
}
#about .count-wrap .count-sub{
    display: inline-block;
    font-size: 15px !important;
    margin-bottom: 0;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}
#about .count-wrap{
    padding: 0 10px;
    border-right: 1px solid #e2e2e2;
}
#about .counter-section .col-lg-3:last-of-type .count-wrap{
    border: none;
}
#about .counter-section .col-lg-4{
    padding: 0;
}
#about .counter-section{
    margin-top: 50px;
}
#about .a-img{
    width: 100%;
    height: 570px;
    border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0px 0px 60px 0px;
    overflow: hidden;
}
#about .all-btn a{
    font-size: 15px;
}
#about .all-btn a i{
    width: 20px;
}
#about .a-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#about p{
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

#footer{
    background-color: #002f4e;
}

#footer .f-wrap img{
    width: 120px;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(302deg) brightness(105%) contrast(100%); */
}
#footer .f-wrap p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}
#footer ul{
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}
#footer ul li{
    list-style: none;
}
#footer ul li a{
    display: inline-block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 450;
    transition: .4s ease-in-out;
}
#footer ul li a i{
    color: var(--green);
    margin-right: 8px;
}
#footer ul li a:hover{
    color: rgba(255, 255, 255, 1);
}
#footer .social ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
#footer .social ul li a i{
    color: rgba(0, 0, 0, 0.4);
    font-size: 22px;
    transition: .4s ease-in-out;
}
#footer .social ul li a:hover i{
    color: var(--blue);
}
#footer h5{
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0;
}
#footer p{
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
}
#footer .pad-bot{
    padding-bottom: 20px;
}
#footer .pad-top{
    padding-top: 20px;
}
#footer span{
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    font-size: 14px;
}
#footer .f-row{
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#footer span a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    transition: .4s ease-in-out;
}
#footer{
    padding-top: 90px;
    padding-bottom: 20px;
}
#footer span a:hover{
    color: rgba(255, 255, 255, 1);
}
#para{
    background-image: url(./img/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    /* padding: 120px 0; */
}
#para::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 173, 85, 0.8);
    /* background-color: rgba(0, 107, 179, 0.8); */
}
#para .para-text{
    position: relative;
    z-index: 2;
}
#para .para-text h1{
    font-size: 45px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
     text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
     line-height: 1.3;
}
#para .para-text h1 span{
    color: var(--white);
    font-weight: 700;
}

#why .why-wrap{
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background-color: var(--white);
    border: 1px solid #d2d2d2;
}
#why .why-wrap .why-icon{
    color: var(--green);
    font-size: 40px;
    margin-bottom: 15px;
}
#why .why-wrap .why-text h4{
    color: var(--black);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}
#why .why-wrap .why-text p{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
}
#why .w-col{
    background-color: var(--blue);
}
#why .w-col i{
    color: var(--white);
}
#why .w-col h4{
    color: var(--white) !important;
}
#why .w-col p{
    color: rgba(255, 255, 255, 0.7) !important;
}

#why .w-col2{
    background-color: var(--green);
}
#why .w-col2 i{
    color: var(--white);
}
#why .w-col2 h4{
    color: var(--white) !important;
}
#why .w-col2 p{
    color: rgba(255, 255, 255, 0.7) !important;
}

/********* Investors Section Start *********/

#investors{
    background-color: #eff7ff;
}
#investors .i-wrap{
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 10px 20px;
    border-radius: 15px;
    background-color: var(--white);
    border: 1px dotted var(--blue);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    transition: .4s ease-in-out;
}
#investors .i-wrap:hover{
    background-color: var(--green);
    border-color: var(--green);
}
#investors a{
    text-decoration: none;
}
#investors .i-wrap h5{
    color: rgba(0, 0, 0, 0.7);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    transition: .4s ease-in-out;
}
#investors .i-wrap i{
    color: var(--blue);
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 20px;
    transition: .4s ease-in-out;
}
#investors .i-wrap:hover h5{
   color: var(--white);
}
#investors .i-wrap:hover i{
   color: var(--white);
}
#investors h3{
    font-weight: 600;
    color: var(--blue);
    font-size: 60px;
}
#investors h3 span{
    color: var(--green);
    font-size: 40px;
}
#investors h6{
    color: #b2b2b2 !important;
}
#investors h4{
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 15px;
}
.nav-tabs .nav-link h5{
    padding: 0 5px;
    font-weight: 600;
    margin-bottom: 0;
}
.nav-tabs .nav-link{
    border: none;
    color: var(--black) !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: var(--blue) !important;
    border-bottom: 5px solid var(--blue);
    background-color: transparent;
}
/********* Investors Section End *********/

#cta{
    background-color: var(--green);
}
.cta-wrap{
    
    padding: 60px 0;
    border-radius: 25px;
}
#cta{
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}
#cta h2{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}
#cta p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}
.social a{
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: .6s ease-in-out;
}
.social a:hover{
    color: rgba(255, 255, 255, 1);
}
.social a.menu-color{
    color: rgba(0, 0, 0, 0.8);
}
.social a.menu-color:hover{
    color: var(--blue);
}
.info{
    margin-right: 45px;
}
.info sup{
    display: inline-block;
    font-size: 25px;
    transform: translateY(-8px);
}
.info h4{
    font-size: 55px;
    color: var(--blue);
    font-weight: 700;
}
.info p{
    font-size: 20px !important;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px !important;
}
.grp-wrap{
    border: 1px solid #D9D9D9;
    background-color: transparent;
    border-radius: 15px;
    margin: 0 5px;
    overflow: hidden;
    transition: .4s ease-in-out;
}
.grp-wrap .grp-img{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.grp-wrap .grp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}
.grp-wrap .grp-text{
    padding: 24px 20px;
}
#group a{
    text-decoration: none;
}
.grp-wrap .grp-text h3{
    font-size: 19.3px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
    transition: .4s ease-in-out;
}
.grp-wrap .grp-text p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
}
#group a:hover .grp-wrap{
    /* background-color: #F2F5F5; */
    background-color: #eff7ff;
}
#group a:hover h3{
    color: var(--blue);
}
#group a:hover img{
    transform: scale(1.1);
}

.inv-img{
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 60px 0;
}
.inv-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

#inner-banner{
    margin-top: 0;
    padding: 0;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}
#inner-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}
#inner-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    animation: zoomLoop 15s linear infinite both;
}
#inner-banner .inner-ban-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
}
#inner-banner .inner-ban-text h1{
    font-size: 45px;
    color: var(--white);
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}
#inner-banner .bread{
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 500;
}
#inner-banner .bread a{
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#inner-banner .bread a:hover{
    color: var(--green);
}
#inner-banner .inner-ban-text span {
    color: rgba(255, 255, 255, 0.7);
}
#inner-banner .inner-ban-text i {
    font-size: 14px;
}
.f-item-wrap{
    border-radius: 15px;
    background-color: var(--white);
    border: 1px solid #efefef;
    box-shadow: 0px 5px 10px 0px rgba(114, 114, 255, 0.2);
    color:  #ff0033;
    text-align: center;
}



.file h2{
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.file .file-item-wrap{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #d2d2d2;
    transition: .4s ease-in-out;
}
.file .file-wrap > div:last-child .file-item-wrap {
    border-color: transparent;
}
.file .file-wrap{
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    overflow: hidden;
}
.file .file-item-wrap img{
    width: 20px;
}
.file .file-item-wrap h3{
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px;
    transition: .4s ease-in-out;
}
.file a{
    text-decoration: none;
}
.file a:hover .file-item-wrap{
    background-color: #eff7ff;
}
.file a:hover h3{
    color: var(--blue);
}
#files .file{
    margin-bottom: 40px;
}
#files .file:last-of-type{
    margin-bottom: 0;
}


#in-group .serv-wrap{
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    transition: .4s ease-in-out;
}
#in-group .serv-icon-wrap{
    width: 250px;
    height: 100%;
    overflow: hidden;
}
#in-group .serv-icon-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}
#in-group .serv-text{
    padding: 28px 0;
    padding-right: 25px;
}
#in-group .serv-wrap h4{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 15px;
    transition: .4s ease-in-out;
}
#in-group .serv-wrap p{
    font-size: 15px;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}
#in-group a{
    text-decoration: none;
}
#in-group a:hover .serv-wrap{
    /* background-color: #F2F5F5; */
    background-color: #eff7ff;
}
#in-group a:hover h4{
    color: var(--green);
}
#in-group a:hover img{
    transform: scale(1.1);
}




#in-team .team-wrap{
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--green);
    box-shadow: 0px 10px 15px 0 rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    margin-bottom: 35px;
    padding: 15px;
    overflow: hidden;
}
#in-team .team-icon-wrap{
    width: 185px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #d2d2d2;
}
#in-team .team-icon-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#in-team .team-wrap h4{
    font-size: 25px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 6px;
}
#in-team .team-wrap h6{
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}
#in-team .team-wrap p{
    font-size: 17px;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}
#in-team .team-wrap:last-of-type{
    margin-bottom: 0;
}
.cin{
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    padding-right: 25px;
    margin-right: 25px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}


#in-vis .vis-wrap{
    display: flex;
    box-shadow: 0px 10px 15px 0 rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    background-color: var(--white);
    border: 1px solid #e2e2e2;
    margin-bottom: 35px;
    overflow: hidden;
}
#in-vis .vis-wrap .col-lg-6{
    padding: auto;
}
#in-vis .vis-icon-wrap{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border: 1px solid #d2d2d2;
}
#in-vis .vis-icon-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#in-vis .vis-wrap h4{
    font-size: 30px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}
#in-vis .vis-wrap p{
    font-size: 16px;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}
#in-vis .vis-text{
    height: 100%;
    padding: 20px 25px;
}
#in-vis .vis-wrap:last-of-type{
    margin-bottom: 0;
}

#in-about h2{
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
}
#in-about .ab-img{
    width: 100%;
    height: 400px;
    border: 1px solid #d2d2d2;
    border-radius: 0 0 60px 0;
    overflow: hidden;
}
#in-about .ab-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#in-about p{
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 0.8);
}


#in-con .side-con-wrap{
	padding: 30px;
	background-color: #f6f6f6;
    height: 100%;
}
#in-con .con-text h4{
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 20px;
	color: var(--green);
}
#in-con .side-con p{
	text-align: center;
	font-size: 14px;
	margin-bottom: 5px;
}
.con-form-wrap{
    padding: 35px;
    border: 1px solid #f2f2f2;
    box-shadow: -5px 10px 20px 0 rgba(0, 0, 0, 0.15);
}
.con-form-wrap .form-control{
    border-radius: 0;
    border: 1px solid #bfbfbf;
    padding: 8px;
}
.con-form-wrap .form-control:focus{
    box-shadow: none;
    border-color: var(--green);
}
.con-form-wrap .form-select{
    border-radius: 0;
    border: 1px solid #bfbfbf;
}
.con-form-wrap .form-select:focus{
    box-shadow: none;
    border-color: var(--blue);
}
.con-form-wrap h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
}


#ic .ic-wrap{
    background-color: #f8f8f8;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    overflow: hidden;
}
#ic .ic-header{
    background-color: var(--blue);
    padding: 10px 20px;
}
#ic .ic-header h2{
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
#ic .ic-items{
    padding: 25px;
}
#ic .ic-title{
    background-color: var(--white);
    padding: 10px 20px;
    border: 1px solid #9B9B9B;
    cursor:pointer;
    position: relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition: .4s ease-in-out;
}
#ic .ic-title:hover h3{
    color: var(--blue);
}
.ic-title::after{
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    transition: .4s ease-in-out;
}

.ic-item.active .ic-title::after{
    transform: rotate(180deg);
}
.ic-item.active .ic-title{
    background-color: #eff7ff !important;
    color: var(--blue) !important;
    border-color: var(--blue) !important;
}
.ic-item.active .ic-title::after{
    color: var(--blue) !important;
}
.ic-item.active .ic-title h3{
    color: var(--blue) !important;
}
#ic .ic-title h3{
    color: rgba(0, 0, 0, 0.8);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .4s ease-in-out;
}
#ic .ic-content{
    display:none;
    padding:25px;
    background:#fff;
    border: 1px solid #eee;
}
#ic .ic-content-header{
    background-color: var(--green);
    padding: 8px 15px;
    border: 1px solid transparent;
}

#ic .ic-content-header h4{
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
}
#ic .ic-content-text{
    background-color: var(--white);
    padding: 8px 15px;
    border-style: solid;
    border-width: 0px 1px 1px 1px;
    border-color: #9B9B9B;
}
#ic .ic-content-text h4{
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
#ic .ic-content-text h4 strong{
    color: rgba(0, 0, 0, 1);
    margin-right: 10px;
}
#ic .ic-items .ic-item{
    margin-bottom: 20px;
}
#ic .ic-items .ic-item:last-of-type{
    margin-bottom: 0;
}

.qr-item{
    background-color: #f8f8f8;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    overflow: hidden;
}
.qr-list{
    padding: 25px;
}
.qr-header {
    background-color: var(--blue);
    padding: 14px 20px;
}
.qr-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.file .file-item-wrap{
    background-color: var(--white);
}
.qr-items .qr-item{
    margin-bottom: 20px;
}
.qr-items .qr-item:last-of-type{
    margin-bottom: 0;
}
.qr-header{
    cursor:pointer;
    position: relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition: .4s ease-in-out;
}
.qr-header:hover{
    background-color: #005a95 !important;
}
.qr-header::after{
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    transition: .4s ease-in-out;
}

.qr-item.active .qr-header::after{
    transform: rotate(180deg);
}
.qr-item.active .qr-header{
    background-color: var(--green) !important;
}