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

body {	
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #101214;
	color: #FFFFFF;	
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
textarea,
select,
button {
    outline: none;
}

img {
    max-width: 100%;
}

/*scrollto-top*/
.scrollto-top {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: #0D20D6;   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    z-index: 99;
}

.scrollto-top:hover {   
    background: #0D20D6;  
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

/*===================== header-area start ======================*/
.header-area {
    width: 100%;
    display: block;
    position: sticky;
    top: 0;
    background: #101214;
    padding: 10px 0;
    z-index: 99;
    transition: 0.2s all ease;
}

.header-fixed {
    width: 100%;
    display: block;
    position: fixed;
    top: 0;
    background: #101214;
    padding: 0px;
    box-shadow: 0 0 8px #34382F;
    z-index: 99;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-brand img {
    max-width: 150px;
}

.navbar-nav li {
    padding-left: 40px;
}

.navbar-nav li a {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 5px;
    transition: 0.2s all ease;
    position: relative;
}

.navbar-nav li .nav_btn {
    font-weight: 600;
    background: linear-gradient(116deg, #00045C 0%, #0D2AD8 100%);
    padding: 14px 25px;
    border-radius: 0px 20px 0px 20px;
}

.navbar-nav li .nav_btn:hover {
    background: linear-gradient(180deg, #0D17D5 0%, #0D2AD8 100%);
}

.navbar-nav li a::after {
    content: "";
    width: 0%;
    height: 3px;
    display: block;
    background: #0D24D7;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.2s all ease;
}

.navbar-nav li a:hover::after,
.navbar-nav li #active::after {
    width: 100%;
}

.navbar-nav li .nav_btn::after {
    display: none;
}

.navbar-toggler {
    outline: none!important;
    box-shadow: none!important;
    padding: 2px;
    transition: 0.2s all ease;
}

.navbar-toggler:hover {
    opacity: 0.75;
}

/*hamburger*/
.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #FFF;
    border-radius: 4px;
    position: absolute;
}

.hamburger-inner::before, 
.hamburger-inner::after {
    content: "";
    display: block;
    outline: none; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

/*side-bar*/
.offcanvas-start {
    background: #2E2E2E;
    width: 330px;
}

.offcanvas-header {
    padding: 20px 16px;
}

.offcanvas-header img {
    max-width: 120px;
}

.offcanvas-body ul li {
    padding: 14px 10px;
}

.btn-close {
    opacity: 1;
    font-size: 22px;
    outline: none!important;
    box-shadow: none!important;
    transition: 0.2s all ease;
    filter: brightness(0) saturate(100%) invert(100%) sepia(13%) saturate(1%) hue-rotate(42deg) brightness(106%) contrast(101%);
}

.offcan_bottomcnt {
    padding-left: 10px;
    padding-top: 30px; 
}

.offcanvas-body p {
    font-size: 13.2px;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 5px;
}

.offcanvas-body p a {
    font-size: 21px;
    font-weight: 700;
    color: #FFF;
}

/*=================== hero-area start =====================*/
.hero-area {
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 45px;
}

.hero_cnt h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-align: center;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.hero_cnt h4 span {
    color: #007dff;
    font-weight: 700;
}

.hero_cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 40px 0 45px;
    text-align: center;
}

.hero_item {
    max-width: 775px;
    height: 458px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #0D17D5;
    border-radius: 20px;
    position: relative;
}

.hero_item a {
    display: block;
}

.hero_item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.hero_item iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}

/*================= contact-area start ==================*/
.contact_main {
    max-width: 775px;
    width: 100%;
    background: #171928;
    margin: 0 auto;
    border: 1px solid #5B5B5B;
    padding: 35px 30px 40px;
    border-radius: 20px;
}

.contact_main h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-align: center;
}

.contact_main h3 span {
    color: #007dff;
}

.contact-item {
    padding: 25px 25px 10px;
}

.contact-item label {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin-bottom: 12px;
}

.contact-item input {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    background: #171717;
    border: 1px solid #454545;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-item textarea {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    background: #171717;
    border: 1px solid #454545;
    padding: 8px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    min-height: 270px;
}

.contact-item button {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: #0D17D5;
    max-width: 386px;
    width: 100%;
    margin: 40px auto 0;
    display: block;
    text-align: center;
    border: 1px solid #0D17D5;
    padding: 14px 15px;
    border-radius: 0 20px 0 20px;
    transition: 0.2s all ease;
}

.contact-item button:hover {
    background: transparent;
}

/*===================== faq-area1 start ======================*/
.faq-area {
    padding: 115px 0;
}

.upper_cnt {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.upper_cnt h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-align: center;
}

.upper_cnt h3 span {
    color: #007dff;
}

.faq_box {
    border: 1px solid #5B5B5B;
    padding: 30px 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.accordian_item {
    padding: 15px 15px;
    border-bottom: 1px solid #D5D8DC;
}

.accordian_title {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.accordian_title i {
    font-size: 17px;
    display: inline-block;
    margin-right: 12px;
    margin-top: 1px;
}

.accordian_title h4 {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.accordian_inner {
    display: none;
    padding: 27px 0 12px;
}

.accordian_inner p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.accordian_title.active i {
    transform: rotate(270deg);
}

.accordian_title.active h4 {
    color: #0D2AD8;
}

.faq_bottom {
    padding-top: 32px;
    text-align: center;
}

.faq_bottom p {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.faq_bottom h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0D2AD8;
    text-align: center;
    margin: 15px 0 36px;
}

.faq_bottom a {
    max-width: 560px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    background: linear-gradient(116deg, #00045C 0%, #0D2AD8 100%);
    padding: 17px 20px;
    border-radius: 0px 20px 0px 20px;
    transition: 0.2s all ease;
}

.faq_bottom a:hover {
    background: linear-gradient(180deg, #0D17D5 0%, #0D2AD8 100%);
}

/*=================== slider-area1 start =====================*/
.upper_cnt2 {
    max-width: 100%;
}

.slider_main {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 0;
}

.owl-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button {
    font-size: 26px!important;
}

.slider_item {
    padding: 0 50px;
    text-align: center;
}

.slider_item img {
    max-width: 100%!important;
    width: initial!important;
    display: block;
    margin: 0 auto;
}

.slider_bottom p {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0px;
    margin-top: 20px;
}

.faq-area2 {
    padding-top: 50px;
}

.faq-area2 .upper_cnt {
    max-width: 100%;
}

.faq-area2 .upper_cnt h3 {
    text-align: left;
}

.faq-btn2 a {
    font-size: 17px;
    max-width: 430px;
}

.upper_cnt p {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: left;
    margin-top: 20px;
}

.faq-btn2 p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 35px;
}

/*======================= tools-area start =========================*/
.upper_cnt33 {
    max-width: 885px;
}

.tools_main {
    background: #191B1D;
    border: 1px solid #5B5B5B;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 25px 50px;
    border-radius: 20px;
    margin-top: 30px;
}

.tools_item {
    text-align: center;
}

.tools_item img {
    max-width: 96px;
    display: block;
    margin: 0 auto;
}

.tools_item p {
    font-size: 20px;
    font-weight: 600;
    color: #02B447;
    margin: 0;
    text-align: center;
    margin-top: 10px;
}

.tools2 img {
    max-width: 114px;
}

.tools3 img {
    max-width: 83px;
}

.tools4 img {
    max-width: 228px;
}

.tools5 img {
    max-width: 82px;
}

.tools2 p {
    color: #3C5CA4;
}

.tools3 p {
    color: #808080;
}

.tools4 p {
    color: #808080;
}

.tools5 p {
    color: #808080;
}

/*================== deposit-area start ====================*/
.deposit_box {
    background: #191B1D;
    border: 1px solid #5B5B5B;
    padding: 30px 30px;
    margin-top: 32px;
    border-radius: 20px;
}

.deposit_box p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 21px;
}

.deposit_box span {
    font-size: 16px;
    font-weight: 400;
    color: #0D2AD8;
    margin: 0;
    display: block;
}

.deposit_box h6 {
    font-size: 13.6px;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin: 0;
}

.slider-area2 {
    padding-top: 115px;
}

.slider_main22 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 16px 0;
}

/*================== warranty-area start =====================*/
.warranty-area {
    padding: 75px 0 115px;
}

.warranty_main {
    background: #191B1D;
    border: 1px solid #5B5B5B;
    padding: 40px 55px;
    border-radius: 20px;
}

.warranty_cnt h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.warranty_cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.warranty_item img {
    max-width: 172px;
    display: block;
    margin: 0 auto;
}

/*==================== about-area start ====================*/
.about-area {
    padding-bottom: 115px;
}

.about_main {
    background: #191B1D;
    border: 1px solid #5B5B5B;
    padding: 45px 55px;
    border-radius: 20px;
}

.about_item img {
    max-width: 100%;
}

.about_cnt h4 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.about_cnt h4 span {
    color: #007dff;
}

.about_cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

/*==================== question-area start =======================*/
.question-area {
    background: linear-gradient(to right, #00372F, #02453B);
    padding: 60px 0;
}

.question_item img {
    max-width: 276px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.question_cnt {
    max-width: 605px;
    width: 100%;
    margin: 0 auto;
}

.question_cnt h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 0;
}

.question_cnt p {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 12px 0 16px;
    text-transform: uppercase;
}

.question_cnt h4 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.question_cnt a {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(116deg, #00045C 0%, #0D2AD8 100%);
    max-width: 590px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 17px 10px;
    border-radius: 0px 15px 0px 15px;
    margin-top: 30px;
}

.question_cnt a:hover {
    background: linear-gradient(180deg, #0D17D5 0%, #0D2AD8 100%);
}

/*================= footer-area star =================*/
.footer-area {
    background: #101214;
    padding: 32px 0;
}

.footer_main {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

.footer_logo img {
    max-width: 228px;
}

.footer_cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}