@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');

* {
   box-sizing: border-box;
   font-family: 'Maven Pro', sans-serif;
}

:root {
   --clr-dark: #000;
   --clr-white: #fff;
   --clr-primary: #CC0000;
   --clr-primary-gradient: linear-gradient(180deg, #CC0000 0%, #910000 100%);
   ;
}

body {
   overflow-x: hidden;
   font-size: 14px;
   line-height: 1.5;
   color: var(--clr-dark);
}

a {
   transition: 0.3s ease-in-out;
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

img {
   max-width: 100%;
}

@media (min-width: 1200px) {
   .container {
      max-width: 1175px
   }
}

@media (min-width: 1400px) {
   .container {
      max-width: 1320px;
   }
}

/* Header css */

header .navbar {
   padding: 30px 0;
}

.navbar-brand {
   padding: 0;
   display: flex;
   margin: 0;
}

.topNav {
   display: flex;
   align-items: center;
   gap: 30px;
}

.TopIcons {
   display: flex;
   align-items: center;
   gap: 20px;
}

.TopIcons li a {
   display: flex;
   width: 32px;
   height: 32px;
   align-items: center;
   justify-content: center;
   background: rgba(255, 255, 255, 0.5);
   box-shadow: 0px 1px 20px rgba(14, 14, 14, 0.15);
   border-radius: 100%;
}

.TopIcons li a img {
   width: 14px;
}

.ToggleBtn-menu {
   display: flex;
   align-items: center;
   gap: 10px;
}

.ToggleBtn-menu h6 {
   margin: 0;
   font-size: 18px;
   font-weight: 500;
   text-transform: uppercase;
}

.ToggleBtn {
   border: 0;
   background: transparent;
   display: inline-flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 4px;
   min-width: 34px;
}

.ToggleBtn span {
   display: block;
   width: 22px;
   background: var(--clr-dark);
   height: 2px;
   transition: 0.3s ease-in-out;
}

.ToggleBtn span:nth-child(2) {
   width: 16px;
}

.ToggleBtn:hover span:nth-child(2) {
   width: 22px;
}

.ToggleBtn:hover span:first-child,
.ToggleBtn:hover span:last-child {
   width: 16px;
}

/* side nav */

.sidenav {
   background: #ffeded;
   position: fixed;
   top: 0;
   right: var(--sidenav_right, -18em);
   width: 18em;
   height: 100vh;
   transition: all 0.2s ease-in-out;
   padding: 20px;
   box-shadow: 0 0 15px rgb(0 0 0 / 15%);
   display: flex;
   flex-direction: column;
   gap: 20px;
   z-index: 99;
}

.sidenav.active {
   --sidenav_right: 0;
}

.sidenav__btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   aspect-ratio: 1;
   border: 1px solid var(--clr-dark);
   cursor: pointer;
   background: transparent;
}

.sidenav__list {
   flex: 1;
   overflow: auto;
}

.sidenav__list .sidenav__link {
   padding: 10px 0;
   display: flex;
   color: var(--clr-dark);
   text-transform: uppercase;
   font-weight: 500;
}

.sidenav__list .sidenav__link:hover,
.sidenav__list .sidenav__link.active {
   color: var(--clr-primary);
}

.sidenav__list .TopIcons {
   justify-content: left !important;
   margin-top: 5px;
   margin-bottom: 0;
}

/* side nav end */

/* Header css end */

.form-group {
   margin: 0 0 15px;
}

.form-control,
.form-select {
   border-radius: 0;
   transition: all 0.3s ease-in-out;
   min-height: 50px;
}

.form-control:focus,
.form-select:focus {
   box-shadow: none;
   outline: none;
   border-color: var(--clr-primary);
}

.form-group>label {
   margin: 0 0 5px;
   font-size: 14px;
   font-weight: 600;
}

.form-group>label span {
   color: #ff0000;
}

/* Button */

.ThemeBtn {
   padding: 5px 25px;
   text-transform: uppercase;
   font-size: 16px;
   border-radius: 0;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 5px;
   min-height: 50px;
   line-height: normal;
   font-weight: 600;
   min-width: fit-content;
   border: 0;
   background: var(--clr-primary-gradient);
   color: var(--clr-white);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.ThemeBtn img {
   width: 16px;
}

.IconBtn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   min-width: 32px;
   height: 32px;
   background: var(--clr-blue);
   border-radius: 100%;
}

.IconBtn i {
   font-size: 18px;
   color: var(--clr-white);
}

.IconBtn img {
   width: 18px;
}

.IconBtn:hover i {
   color: var(--clr-white);
}

/* Button end */

/* scroll bar */

.scrollbar-gradient::-webkit-scrollbar-track {
   background-color: #f5f5f5;
}

.scrollbar-gradient::-webkit-scrollbar {
   width: 5px;
   height: 5px;
   background-color: #F5F5F5;
}

.scrollbar-gradient::-webkit-scrollbar-thumb {
   background-color: var(--clr-white);
   background-image: -webkit-linear-gradient(90deg,
         rgb(157 157 157) 0%,
         rgb(157 157 157) 0%, transparent 100%,
         rgb(157 157 157) 0%, transparent);
}

/* scroll bar end */


.varification-wraper {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
   overflow: hidden;
}

.varification-wraper .content-container {
   flex: 1;
   display: grid;
   padding-top: 30px;
   padding-bottom: 30px;
}

.varification-wraper .content-container .row {
   height: 100%;
}

.varification-details {
   margin-bottom: 50px;
}

.TagLine {
   display: inline-flex;
   padding: 10px 0;
   margin: 0 0 50px;
   position: relative;
}

.TagLine:after {
   content: '';
   position: absolute;
   top: 0;
   left: -120px;
   width: calc(100% + 120px);
   height: 100%;
   background: linear-gradient(90deg, #CC0000 0%, transparent 100%);
}

.TagLine h6 {
   margin: 0;
   font-size: 18px;
   color: var(--clr-white);
   position: relative;
   z-index: 1;
}

.TagLine h6 span {
   color: var(--clr-dark);
}

.varification-details .title {
   font-size: 40px;
   font-weight: bold;
   margin: 0 0 10px;
}

.varification-details p {
   font-size: 28px;
   margin: 0 0 30px;
}

.InputBox {
   display: flex;
   width: 100%;
}

.varification-details .InputBox {
   max-width: 470px;
}

.InputBox input {
   border: 1px solid var(--clr-primary);
}

.varification-thumbInfo {
   background: #eee;
   border-radius: 10px;
   display: flex;
   align-items: flex-start;
   padding: 50px;
   position: relative;
}
/* 
.varification-thumbInfo:after {
   content: '';
   position: absolute;
   background: url(../images/dashed.png);
   width: 200px;
   height: 156px;
   bottom: -40px;
   right: 50px;
} */


.varification-thumbInfo .v-imgbox1 {
   margin-left: -100px;
   position: relative;
}

.varification-thumbInfo .v-imgbox1 img {
   width: 100%;
   border-radius: 10px;
}

.varification-details .title span {
   display: block;
}

.varification-thumbInfo .p-imgbox {
   padding: 20px;
   background: #fff;
   border-radius: 10px;
   position: relative;
   top: -100px;
   box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
   margin-left: -50px;
   text-align: center;
}

.varification-thumbInfo .p-imgbox:after {
   content: '';
   position: absolute;
   width: 100px;
   background: #000;
   bottom: 0;
   left: 50%;
   height: 10px;
   border-radius: 15px 15px 0px 0px;
   transform: translateX(-50%);
}

.varification-thumbInfo .p-imgbox:before,
.varification-thumbInfo .v-imgbox1:before {
   content: '';
   position: absolute;
   width: 80%;
   bottom: -10px;
   left: 50%;
   height: 10px;
   transform: translateX(-50%);
   background: #FFFFFF;
   box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
   border-radius: 0px 0px 10px 10px;
}

.varification-thumbInfo .p-imgbox img {
   width: 100%;
   aspect-ratio: 1;
}

.varification-thumbInfo .p-imgbox h6 {
   font-size: 18px;
}

/* verify Modal  */

.modal-content {
   border: 0;
   border-radius: 10px;
   overflow: hidden;
   margin: 0 3px;
}

.verifyInfo {
   padding: 40px;
   text-align: center;
   position: relative;
}

.verifyInfo .wave-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   pointer-events: none;
}

.verifyInfo .detailsInfo {
   position: relative;
   z-index: 1;
}

.verifyInfo .IconBox {
   width: 100px;
   height: 100px;
   margin: 0 auto 20px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}

.verifyInfo .IconBox img {
   position: absolute;
   width: 70px;
}

.verifyInfo .IconBox .verify-circle {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: unset;
}

.verifyInfo .ImgBox {
   width: 200px;
   height: 170px;
   margin: auto;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}

.verifyInfo .ImgBox img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.verifyInfo h2 {
   font-weight: 700;
   font-size: 28px;
   color: var(--clr-primary);
   text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
   margin: 0 0 10px;
}

.verifyInfo h5 {
   font-weight: 600;
   font-size: 24px;
   color: var(--clr-dark);
   margin: 0 0 25px;
}

.modal-content .btn-close {
   width: 30px;
   height: 30px;
   opacity: 1 !important;
   border-radius: 100%;
   position: absolute;
   z-index: 2;
   top: 10px;
   right: 10px;
   background: var(--clr-primary-gradient);
   box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0;
}

.modal-content .btn-close i {
   color: var(--clr-white);
   font-size: 18px;
}

.footer-nav {
   float: left;
   position: relative;
   padding-left: 10px;
   margin-left: 0;
   margin-bottom: 0;
   list-style: none;
   font-family: inherit;
}
.footer-nav li {
   font-size: 12px;
   position: relative;
   line-height: 18px;
   float: left;
   text-transform: uppercase;
   margin: 0 33px;
}
.footer-bottom {
   background: #f6f6f6;
}
.footer {
   position: relative;
   width: 100%;
   border-top: 1px solid #e5e5e5;
   padding: 30px 0 40px;
   display: inline-block;
}
.footer-nav li a {
   color: rgba(0,0,0,.53);
}
.copyright {
   position: relative;
   float: right;
   font-size: 12px;
   text-transform: uppercase;
   color:#5c5c5c;
}
p.ab {
   display: none;
}




/* verify Modal end */