@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
:root{
    --main-color:#00ff1e;
}

*::selection{
background: rgb(0, 0, 0);
color:#fff;
}
section{
padding:0 6%;
}

body{
background:#ffffff;
text-decoration: none;
}
.fas{
    color: rgb(17, 34, 65);
    background: transparent;
    margin-right: 3px;
}
.fa-bars {
    color: #00ff1e;
    font-size: 1rem;
}
.button-apply {
    display: block;
    border-radius: 20px;
    background: #17f18483;
    border: 2px solid #fff;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 3px;
    width: 180px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 8px 0 0 rgb(0, 0, 0,0.4), 0 6px 0 0 rgba(31, 31, 31, 0.4);
    letter-spacing: 2px;
    text-decoration: none;
  
  }
  
  .colored .button-apply {
    background: #17f18483;
    color: #161616;
    box-shadow: 0 4px 0 0 rgb(177, 177, 177), 0 6px 0 0 rgb(172, 172, 172);
    font-weight: bold;
    font-size: 0.8rem;
  }

  .button-apply span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button-apply span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button-apply:hover span {
    padding-right: 25px;
    
  }
  
  .button-apply:hover span:after {
    opacity: 1;
    right: 0;
  }


.animated-pointer1{
    position: absolute;
    top:0; left:0;
    height:0.7rem; width:0.7rem;
    background: var(--main-color);
    pointer-events: none;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.animated-pointer1.active{
    height:5rem;
    width:5rem;
    opacity: .3;
}

.animated-pointer2{
    position: absolute;
    top:0; left:0;
    height:2rem; width:2rem;
    border:.2rem dashed #ffffff;
    pointer-events: none;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    z-index: 10000;
    transition: .3s linear;
    transform: translate(-50%, -50%);
}

.animated-pointer2.active{
    display: none;
}


.menu-section{
position: fixed;
top:0; left:0;
width:100%;
background:#01203A;
padding:1rem 9%;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
text-transform: capitalize;
transition: top 0.5s;
border-radius: 0 0 15px 15px;
}
.menu-section .logo{
font-size: 1rem;
color:#fff;
}

.menu-section .logo span{
color:green;
}
.menu-section .navbar a{
font-size: 1rem;
color:#fff;
text-decoration: none;
padding: .2em .8em;
position: relative;
}


.menu-section input{
display: none;
}
.menu-section label{
font-size: 3rem;
cursor: pointer;
visibility: hidden;
opacity: 0;
}

.menu-section .navbar a::before,
.menu-section .navbar a::after {
content: '';
height: 12px;
width: 12px;
position: absolute;
transition: all .55s ease-in-out;
opacity: 0;
}

.menu-section .navbar a::before {
content: '';
right: 0;
top: 0;
border-top: 2px groove #5eff00;
border-right: 2px groove #5eff00;
}

.menu-section .navbar a:after {
content: '';
left: 0;
bottom: 0;
border-bottom: 2px groove #5eff00;
border-left: 2px groove #5eff00;
}

.menu-section .navbar a:hover:before,
.menu-section .navbar a:hover:after{
opacity: 1;
}

.menu-section .navbar a:hover {
color: #5eff00;
border-radius: 5px;
background: #001b30;
}

.menu-section .navbar .active {
    color: #5eff00;
    border-radius: 5px;
    background: #0063af;
}
    
/* hero section */

.button{
display: inline-block;
margin-top: 1rem;
padding:.8rem 3rem;
border-radius: 5rem;
background: linear-gradient(#01203A,#001b30);
font-size: 1rem;
color:#fff;
cursor: pointer;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
transition: all .3s linear;
}
.button:hover{
transform: scale(1.1);
}
.hero-section{
display: flex;
justify-content: space-between;
align-items: center;
justify-content: center;
background:url(../images/hero-bg-image.png) no-repeat;
background-size: cover;
background-position: center;
min-height: 100vh;
}


.hero-section .hero-image img{
    width:25vw;
}

.hero-section .content h3{
font-size: 2.5rem;
color:rgb(255, 255, 255);
text-transform: uppercase;
line-height:1.2;
text-shadow: 1px 1px #000000;
width: 70%;

}
.hero-section .content p{
font-size: 1rem;
color:rgb(255, 255, 255);
padding:1rem 0;
text-align: justify;
text-justify: inter-word;
}
.hero-section .content a{
text-decoration:none;
}

@media only screen and (max-width: 717px) and (min-width: 417px) {
    .hero-section .hero-image img{
        width: 45vw;
    }
    .hero-section .hero-image{
        display: flex;
        justify-content: center;
        align-items: center;
        align-items: center;
    }
}
/* hero section */


/* whats new */
.whats-new-section{
background: url(img/tech-bg.webp) no-repeat;
background-size: contain;
background-attachment: fixed;
}
.whats-new-section .box-container{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.whats-new-section  .box-container .box-wrap{
flex:1 1 20rem;
background: linear-gradient(to top,#01203A 80%, #ffffff 20%);
border-radius: .5rem;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
margin:1rem;
border-radius: .5rem;
transition: .5s linear;
}

.box-container .box-wrap .elevate{
height: 25rem;
padding:1rem 1rem;
animation: float 3s linear infinite;
}
.box-container .box-wrap .img-size{
height: 25rem;

}
.box-container .box-wrap{
display: flex;
justify-content: center;
align-items: flex-end;
align-items: flex-end;
}

@keyframes float{
0%, 100%{
transform: translateY(0rem);
}
50%{
transform: translateY(-1rem);
}
}
.box-container .box-wrap h3{
font-size: 1rem;
color:rgb(255, 255, 255);
padding-top: 1rem;
}

.box-container .box-wrap p{
font-size: 1.3rem;
color:rgb(255, 255, 255);
padding: 1rem 0;
}
.content-wrap{
text-align: center;
}
.content-wrap h1{
font-size: 3.5rem;
padding:1rem;
}
.content-wrap p{
font-size: 1.5rem;
}

.box-container .box-wrap .content-text{
align-self:flex-start;
line-height: 1.1;
padding-top: 8rem;
margin: 0.7rem;
}
.box-container .box-wrap .content-text p{
    font-size: 1rem;
    }
.box-container .box-wrap .content-text h3 {
    font-size: 1.6rem;
text-align: center;
}
.box-container .box-wrap .content-text .btn-wrap {
text-align: right;
}
.box-container .box-wrap h3 {
text-transform: uppercase;
letter-spacing: 3px;
}
.box-container .box-wrap .comingsoon{
color: rgb(138, 138, 138);
font-weight: 700;
font-size: 20px;
letter-spacing: 3px;
}
.btn-wrap{
margin-top: 20px;
}
.btn-dl {
border-radius: 4px;
background-color: #ffffff;
border: none;
color: #000000;
text-align: center;
padding: 10px;
width: 150px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}

.btn-dl span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}

.btn-dl span::before {
position: absolute;
opacity: 0;
top: -5px;
left: -20px;
transition: 0.5s;
font-family: fontAwesome;
content: "\f0ab\00a0";
font-size: 25px;
color: royalblue;
}

.btn-dl:hover span {
padding-left: 25px;
}

.btn-dl:hover span::before {
opacity: 1;
left: -10px;
}
/* whats new */


/* services section */
.services_section{
margin-top: 8rem;
background: #ffffff;
position: relative;
margin-bottom: -10px;
}
.services_section:after{
position: absolute;
content: '';
background: inherit;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
transform-origin: top left;
transform: skewY(-4deg);
}

.services-heading{
margin-bottom: 2rem;
font-size: 2rem;
text-align: center;
padding:0 1rem;
padding-top: 2rem;
letter-spacing: .2rem;
font-weight: 700;
text-transform: uppercase;

}
.services-title{
text-align: center;
letter-spacing: .2rem;
font-weight: 700;
font-size: 1rem;
color: #01203A;
}
.services_section .services-main-box-container{
display: flex;
justify-content: center;
padding-top: 4rem;
flex-wrap: wrap;
}

.services_section .services-main-box-container .services-box-wrap{
width:20rem;
padding-bottom: 1rem;
text-align: center;
box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
margin:4rem 2rem;
border-radius: 10px;
transition: 0.2s ease-in-out;
background: url(../images/image001.png) no-repeat;
background-size: cover;
background-position: center;

}
.services_section .services-main-box-container .services-box-wrap:hover{
box-shadow: 4px 4px 2px 1px rgba(0, 0, 0, 0.5);
cursor: pointer;
border-radius: 10px;
}
.services_section .services-main-box-container .services-box-wrap img{
height:11.5rem;
width:11.5rem;
object-fit: cover;
border-radius: 50%;
margin-top: -5rem;
border-left:.6rem solid #01203A;
border-bottom:.6rem solid #01203A;
border-right:.6rem solid #01203A;
border-top:.6rem solid #40ff00;
transition: 0.5s ease-in-out;
}
.services_section .services-main-box-container .services-box-wrap:hover img{
cursor: pointer;
transform: scale(1.09);
}
.services_section .services-main-box-container .services-box-wrap h3{
font-size: 1rem;
padding:1rem 0 3rem 0;
text-transform: uppercase;
color: #01203A;
font-weight: 600;
letter-spacing: 1px;
}

.services_section .services-main-box-container .services-box-wrap p{
font-size: 0.8rem;
color:#01203A;
padding:0 1rem;
margin-bottom: 3rem;
letter-spacing: 1px;
text-align: jus;
}

/* services section */










/* our partners */
.section-padding{
padding:60px 0;
transition:.8s;
}
.brand-carousel {
background: transparent;
margin-top: 15%;
}
.owl-dots {
text-align: center;
margin-top: 4%;
}
.owl-dot {
display: inline-block;
height: 15px !important;
width: 15px !important;
background-color: #878787 !important;
opacity: 0.8;
border-radius: 50%;
margin: 0 5px;
}
.owl-dot.active {
background-color: #000 !important;
}

.our-partners-logo:hover img{
transform: scale(1.1);
cursor: pointer;
transition:1.1s;
z-index: 99999;
filter: grayscale(0%);
}
.our-partners-logo img{
    filter: grayscale(100%);
}
    
.partners{
margin-top: 5rem;
font-size: 4rem;
text-align: center;
padding:0 1rem;
padding-top: 2rem;
letter-spacing: .2rem;
font-weight: 700;
color: #fff;
text-shadow: 2px 2px rgb(0, 0, 0);
}

.partners-section .card-container{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin: 5rem;
}

.partners-section .card-container .card{
text-align: center;
width:7rem;
max-height: 50%;
border-radius: 2rem;
transition: 1s;
align-items: center;
justify-content: center;
background-image: linear-gradient(transparent, rgb(206, 206, 206));
margin: 0.5rem;
/* border: 1px solid rgb(130, 130, 130); */
box-shadow: 2px 3px #000000;

}

.partners-section .card-container .card img{
transition: .2s;
width:100%;
height: auto;
}

.partners-section .card-container .card:hover{
transform: scale(1.1);
}

.partners-section{

background:url(../images/bg-partners.png) no-repeat;
background-size: cover;
background-position: center;
/* background-position: 0 -110px;  */
}
/* our partners */



/* our products */
.prducts-section-container{
 margin-top: 12rem;
}
.products-section {
display: flex;
flex-wrap: wrap;
padding: 0 5%;
}

.products-column {
flex: 50%;
max-width: 50%;
margin-bottom: 2rem;
}

.products-container {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
/* background-color: aqua; */
}
.products-right-wrapper {
width: 48%;
height: 300px;
background-color: #034174;
border: 1px solid #949494;
}
.products-center-img{
position: absolute;
z-index: 999;
top: -30px;
}
.products-center-img img{
width: 120px;
height: 220px;
right: 50%;
object-fit: cover;
}
.products-img2{
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.products-img2 img{
position: absolute;
width: 100%;
max-width: 250px;
height: auto;
top: -30px;
}
.prod-text1 h5{
letter-spacing: 6px;
font-size: 0.8rem;
color: #7c7c7c;
text-align: center;
margin-bottom: 1rem;
}
.products-img3{
position: relative;
display: flex;
justify-content: center;
align-items: center;            
}
.products-img3 img{
position: absolute;
width: 100%;
max-width: 250px;
height: auto;
top: -30px;
}
.products-img4{
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.products-img4 img{
position: absolute;
width: 100%;
max-width: 300px;
height: auto;
top: -50px;
}
.products-left-wrapper {
width: 48%;
height: 300px;
background-color: #01203A;
align-items: center;
justify-content: center;
padding: 30px;
color: white;
border: 1px solid #949494;

}
.products-content h3{
font-size: 1rem;
margin-bottom: 1rem;
}
.products-progress4{
color: #fff;
}
.products-content p{
font-size: 0.7rem;
}
.products-msg h3{
text-align: center;
}
.products-msg p{
width: 84%;
text-align: justify;
margin-bottom: 1rem;
}
.products-sub-msg p{
margin-left: 2rem;
}
.products-rate{
display: flex;
padding: 2px;
align-content: center;
position: relative;
justify-content: space-evenly;
margin-bottom: 1rem;
}
.products-rate4{
padding: 2px;
position: relative;
margin-bottom: 1rem;
}
.products-001{
padding-top: 1rem;
margin-left: 55px;
}
.products-0014{
padding-top: 1rem;
margin-left: 55px;
}
.products-002 span, .products-003 span{
color: #fff;
font-size: 0.7rem;

}
.products-vertical-line{
border-right: 2px solid rgb(255, 255, 255);
height: 52px;
position: absolute;
left: 45%;
top: 0;

}
.products-reviews{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
padding-right: 1px;

}
.products-reviews textarea{
border-style: none; 
border-color: Transparent; 
overflow: hidden;
resize: none;
border-radius: 5px;
padding: 4px;
font-size: 0.8rem;
outline: none;
width: 80%;
}
.products-004{
margin-bottom: 10px;
}
.products-004 img{
border: 1px solid #ffffff;
border-radius: 50%;
}
.products-right-wrapper .products-001{
    position: relative;

}
.products-right-wrapper .products-001 .sproducts-download-btn{
    position: absolute;
}
.products-download-btn .products-009 .univers{
padding-top: 5px;
position: relative;

}
.products-download-btn{
    display: flex;
    margin-top: 20px;
    justify-content: space-evenly;
    z-index: 999;
}
.products-download-btn2{
display: flex;
margin-top: 5px;
justify-content: space-evenly;
padding-right: 1px;
position: relative;
}
.products-0092{
position: absolute;
top: 180px;
right: 20px;
}
.products-btn{
background:rgb(255, 255, 255);
color:rgb(0, 0, 0);
box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
font-size: 80%;
text-decoration: none;
border-radius: 10px 10px 0 0;
position: relative;
font-family: inherit;
border: 2px solid rgb(155, 155, 155);
transition: 1s;
padding: 3PX 10px 3PX 30px;
width: 200px;
}
.fb01{
position: absolute;
background-color: #0064b6;
border-radius: 50%;
font-size: 1.2rem;
padding: 4px 10px;
color: #fff;
border: 2px solid rgb(155, 155, 155);
text-align: right;
top: -3px;
left: -15px;
transition: 1s;

}
.products-009{
cursor: pointer;
margin-right: 15px;

}

.products-009 a:hover{
transform: scale(1.2);
transition: .5s;
}
.arrow-img{
position: absolute;
border-radius: 50%;
border: 2px solid rgb(255, 255, 255);
text-align: center;
top: -4px;
left: -20px;
transition: 1s;
width: 35px;
height: 30px;
background-color: #0dff00;
}
.lb001{
position: absolute;
background-color: #ff0000;
border-radius: 50%;
font-size: 1.2rem;
padding: 6px 12px;
color: #fff;
border: 2px solid rgb(155, 155, 155);
text-align: right;
top: -4px;
left: -20px;
transition: 1s;
}
.msg4 .env1{
position: absolute;
background-color: #ff0000;
border-radius: 50%;
font-size: 1.2rem;
padding: 6px 9px;
color: #fff;
border: 2px solid rgb(155, 155, 155);
text-align: right;
top: -4px;
left: -20px;
transition: 1s;
}
.msg4 .env2{
position: absolute;
background-color: #ff0000;
border-radius: 50%;
font-size: 1.2rem;
padding: 6px 9px;
color: #fff;
border: 2px solid rgb(155, 155, 155);
text-align: right;
top: -4px;
left: -20px;
transition: 1s;
}
.env001{
    color: #fff;
    transition: 1s;    
}
.prod-progress::before{
content: '';
border-radius: 10px;
display: inline-block;
padding: 8px;
}
.prog-days::before{
width: calc(52% - 1px);
background-color:springgreen;
}
.prog-hours::before{
width: calc(20% - 1px);
background-color:deepskyblue;
}
.prog-minutes::before{
width: calc(60% - 1px);
background-color:slateblue;
}

/* Responsive layout - makes a two column-layout instead of four columns */

@media only screen and (max-width: 568px) {
.products-container {
flex-direction: column;
margin-bottom: 6rem;
}
.products-left-wrapper {
width: 100%;
margin: 0;
margin-top: -100px;
}
.products-center-img {
position: absolute;
z-index: 999;
top: 136px;
right: 0;
}
.products-center-img img {
height: 120px;
width: 80px;
}  
.products-rate {
margin-bottom: 2rem;
}
.products-right-wrapper {
width: 100%;
height: 275px;
}
.products-001 {
padding-top: 1rem;
margin: 0;
}
.products-0014{
padding-top: 1rem;
margin: 10px;
}
.products-reviews textarea{
width: 100%;
}
.products-009{
margin: 0;
}
.products-msg p {
width: 100%;

}
.products-004{
display: flex;
margin-bottom: 10px;
width: 88%;
align-content: center;
justify-content: center;
}
.products-004 img {
margin-right: 5px;
margin-left: 5px;

}
.products-img2{
display: flex;
justify-content: center;
position: relative;
}
.products-img2 img{
position: absolute;
width: 100%;
max-width: 250px;
height: auto;
top: -50px;
}

.products-img3{
position: relative;
display: flex;
justify-content: center;
align-items: center;            
}
.products-img3 img{
position: absolute;
width: 100%;
max-width: 250px;
height: auto;
top: -40px;
}

}

@media (max-width: 900px) {
.products-column {
flex: 100%;
max-width: 100%;
}


}

/* our products */


/* about section */
.about-section {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
background:linear-gradient(rgba(143, 143, 143, 0.3),rgba(214, 214, 214,0.9)), url(../images/finasiatech-family.jpg) no-repeat;
background-size: cover;
background-position: center;
z-index: -99;
overflow:hidden;
position: relative;
}
.about-column {
flex: 100%;
max-width: 50%;

}
.about-container {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background-color: transparent;
border: 1px solid rgb(255, 0, 0);
height: 100vh;
z-index: -10;
}

.about-img-fintech-logo{
display: flex;
justify-content: center;
align-items: center;            
}
.about-img-fintech-logo img{
width: 100%;
max-width: 400px;
height: auto;
}

.about-content{
padding: 10px;

text-align: center;
font-weight: 300;
}
hr.about-style-hr {
border: 0;
height: 3px;
background: #333;
background-image: linear-gradient(to right, #ccc, #333, #ccc);
margin-bottom: 2rem;
}

@media only screen and (max-width: 568px) {
.about-column {
flex: 100%;
max-width: 100%;
}
.about-container {
flex-direction: column;
}
}
.about-profile-container{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
background: url(../images/modal-bg.png) no-repeat;
background-size: cover;
background-position: center;
}
.about-profile-container .about-wrap-container{
position: relative;
width: 290px;
height: 290px;
margin: 50px 4px -44px;

}

.about-profile-container-modal .about-wrap-container-modal{
position: relative;
width: 220px;
height: 220px;
margin: 50px 20px 70px;
}

.about-profile-container .about-wrap-container:hover::before{
opacity: 0.8;
transform: scale(0.8);
}
.about-profile-container .about-wrap-container .about-profile-contents{
position: absolute;
width: 100%;
height: 100%;
background: #ffffff;
clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
transition: 0.5s;
display: flex;
justify-content: center;
align-content: center;
border-right: 4px solid #01203A;
border-left: 4px solid #01203A;
}
.about-profile-container-modal .about-wrap-container-modal .about-profile-contents{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
transition: 0.5s;
border:5px solid rgb(211, 211, 211);

}
.about-profile-container .about-wrap-container:hover .about-profile-contents{
transform: translateY(-30px);
}
.about-profile-container .about-wrap-container .about-profile-contents img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.8s;
background-position: center;

}

.about-profile-container-modal .about-wrap-container-modal .about-profile-contents img{
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background-size: cover;

}

.about-profile-container .about-wrap-container .about-profile-contents p{
position: absolute;
top:74%;
color: rgb(0, 0, 0);
font-size: 0.7rem;
font-weight: 700;
background: rgba(255, 255, 255, 0.5);
padding: 2px 3px;
border-radius: 15px;
}
.about-profile-container .about-wrap-container .about-profile-contents:hover p{
color: rgb(0, 0, 0);
background:none;
border-radius: 0;
}         
.about-profile-container .about-wrap-container .about-profile-contents .text{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.about-profile-container .about-wrap-container .about-profile-contents .text h1{
position: absolute;
top: 68%;
color: rgb(0, 0, 0);
transition: 0.5s;
opacity: 0;
background-image: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(13, 255, 0));
width: 100%;
height: 50%;
border-top: 1px solid rgb(0, 0, 0);
font-size: 0.8rem;
}
.about-profile-container .about-wrap-container:hover .about-profile-contents{
cursor: pointer;
transition: 0.8s;
}

.about-profile-container .about-wrap-container:hover .about-profile-contents .text h1{
opacity: 1;
}
.about-modal-contents{
display: flex;
justify-content: center;
align-content: center;
padding: 2rem;
z-index: 99999999;
}
.about-001{
display: flex;
justify-content: center;
align-content: center;
}
.about-profile-001{
text-align: center;
}

.bg-wrapper{
background: url(../images/modal-bg.png) no-repeat;
background-size: cover;
background-position: center;
}
.about-profile-001-02 p{
text-align: justify;
text-justify: inter-word;
line-height: 25px;
}

@media (max-width: 550px) 
{
.about-profile-container .about-wrap-container{
position: relative;
width: 200px;
height: 200px;
}
.about-modal-contents{
flex-direction: column;
}
.about-profile-container .about-wrap-container .about-profile-contents .text h1{
position: absolute;
top: 60%;

}
.about-profile-contents p{
position: absolute;
top:68%;
color: #fff;
}
.about-profile-container .about-wrap-container{
margin: 48px 4px -44px;
}
}        







/* about section */




/* https://www.youtube.com/watch?v=CkZ3PVknLY4&list=PLSJxovi1IyDH-pPIe0OF0z_mW-WVdhmhx&index=32 */
/* footer */
.footer-section{
padding-top: 1rem;
background-size: cover;
background-position: center;
background: #01203A;
}

div .footer-section .footer-box-container{
display: flex;
}

.footer-section .footer-box-container .box-wrap-footer{
flex:1 1 1rem;
margin:2rem;
text-align: center;
}

.footer-section .footer-box-container .box-wrap-footer h3{

padding:1rem 0;
color:#ffffff;
text-decoration: underline;
}

.footer-section .footer-box-container .box-wrap-footer p{
padding:.5rem 0;
color:#ffffff;
}

.footer-section .footer-box-container .box-wrap-footer a{
display: block;
padding:.5rem 0;
color:#ffffff;
text-decoration: none;
}

.footer-section .footer-box-container .box-wrap-footer a:hover{
border: 1px solid #01203A;
cursor: pointer;
}

.footer-section .footer-box-container .box-wrap-footer .info{
display: flex;
align-items: center;
}

.footer-section .footer-box-container .box-wrap-footer .info i{
margin:.5rem 0;
margin-right: 1rem;
border-radius: 50%;
background:#fff;
color:#000000;
height:4.5rem;
width:4.5rem;
line-height: 4.5rem;
text-align: center;
}

.footer-section .credit{

letter-spacing: .1rem;
color:#ffffff;
border-top: .1rem solid #fff5;
padding:2.5rem 1rem;
text-align: center;
}
/* footer */



/* career page */
.career-hero-section{
    background-image: linear-gradient(rgba(1, 36, 65, 0.7), rgba(0, 50, 92, 0.8)),
    url(../images/career.jpg);
    background-position:center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-top: 8rem;
    position: relative;
}

.career-hero-section .career-content-box .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
}

.career-hero-section .career-content-box{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
}

.career-hero-section .career-content-box .left-col-img{
    width: 50%;
}
.career-hero-section .career-content-box .left-col-img img{
    object-fit:fill;
    width: 60%;
}
.career-hero-section .career-content-box .right-col-detail{
    width: 60%;
}
.career-hero-section .career-content-box .right-col-detail h1{
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 2px 2px #000000;
}
.career-hero-section .career-content-box .right-col-detail .row-box{
    position: relative;
    perspective: 2000px;
    transform-style: preserve-3d;
    text-align: center;

}
.career-hero-section .career-content-box .right-col-detail .row-box div{
    position: absolute;
}

.career-section{
    margin-top: 1rem;
}
.career-section .career-section-container{
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    /* border: 1px solid red; */
}
 .colored{
    background: #01203A;
}
.career-section .career-section-container .career-sectin-sub-container-left{
    width: 50%;
    padding: 1rem;
    position: relative;
}
.career-section .career-section-container .career-sectin-sub-container-left .werelooking{
    width: 35%;
    top: -10px;
    right: -10px;
    object-fit: cover;
    position: absolute;
    border: transparent;
}
.career-section .career-section-container .career-sectin-sub-container-right .werelooking{
    width: 35%;
    top: -10px;
    right: -10px;
    object-fit: cover;
    position: absolute;
    border: transparent;
}
.career-section .career-section-container .werelooking{
    animation: animated 10s infinite;
   
  }
  @keyframes animated {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.career-hero-section .career-content-box .right-col-detail .blink{
    animation: blink 2.5s infinite;
    padding: 5px;
    border-radius: 25px;
}
@keyframes blink{
    0%{opacity: 0;}
    50%{opacity: 0.5; background: rgba(0, 255, 179, 0.5);}
    100%{opacity: 1; background: rgb(0, 30, 85,0.5);}
}
.career-section .career-section-container .career-sectin-sub-container-right{
    width: 50%;
    padding: 1rem;
    position: relative;
}
.career-section .career-section-container .career-sectin-sub-container-left img{
    width: 100%;
    border-bottom: 2px inset rgb(114, 114, 114);
}
.career-section .career-section-container .career-sectin-sub-container-right img{
    width: 100%;
    border-bottom: 2px inset rgb(114, 114, 114);
}
.career-section .career-section-container .career-details {
    background: #01203A;
    padding: 1rem;
    margin-top: -1rem;
    color: #fff;
    font-size: 90%;
    font-weight: 200;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-content: center;
}
.career-section .career-section-container .separate{
    background: #ffffff;
    color: #000;
}
.career-section .career-section-container .career-details .apply-details{
    width: 70%;
    /* border: 1px solid red; */
}
.career-section .career-section-container .career-details .btn-apply{
    width: 50%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}
.career-modal-section .career_modal_container .career_modal__wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 88%;
    background-image:url(../images/bg-career.png);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left .career-det{
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 1rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left img{
    width: 100%;
    object-fit: cover;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left img{
    animation: animayte 20s infinite;
   
  }
  @keyframes animayte {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right{
    width: 50%;
    padding:10px 20px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right .career-btn-container{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid gray;
    margin-top: 10px;
    padding-top: 10px;
}.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right .career-btn-container span{
    background: rgba(228, 228, 228, 0.8);
    padding: 15px;
    -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right h1{
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: rgba(0, 50, 92);
    text-shadow: 2px 2px #c7c7c7;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right h1{
    display: inline-block;
    padding-bottom: 1px;
    
    position: relative;
  }
  .career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right h1:before{
      content: "";
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 1%;
      border-bottom: 1px dashed rgb(165, 165, 165);
  }

.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right .career-det{
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    padding-bottom: 10px;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right span{
 display: block;
 text-align: justify;
 font-size: 80%;
 letter-spacing: 1.2px;
padding: 3px;
}


/* media queries  */
@media (max-width:1200px){

}

@media (max-width:991px){

section{
padding:0 3%;
padding-top: 3.5rem;
padding-bottom: 2rem;
}
.career-section .career-section-container .career-details {
    display: flex;
    flex-direction: column;
}
.career-section .career-section-container .career-details .apply-details{
    width: 100%;
}
.career-section .career-section-container .career-details .btn-apply{
    width: 100%;
}
.career-modal-section .career_modal_container .career_modal__wrapper {
    display: flex;
    flex-direction: column;
    font-size: 80%;
}
}

@media (max-width:768px){
    .career-hero-section .career-content-box .wave{
        position: absolute;
        bottom: -0;
        left: 0;
        width: 100%;
        margin-bottom: -10px;
        height: 15vh;
        object-fit: cover;
    }
    
.menu-section label{
visibility: visible;
opacity: 1;
}
.menu-section .navbar{
position: absolute;
top:100%; left: 0;
width:100%;
background:rgb(85, 85, 85);
padding:1rem 2rem;
border-top: .1rem solid rgba(0,0,0,.2);
box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
transform-origin: top;
transform: scaleY(0);
opacity: 0;
transition: .2s linear;
}

.menu-section .navbar a{
display: block;
margin:2rem 0;
font-size: 2rem;
}

.menu-section input:checked ~ .navbar{
transform: scaleY(1);
opacity: 1;
}

.menu-section input:checked ~ label::before{
content:'\f00d';
}
.hero-section{
flex-direction: column-reverse;
}

.career-section .career-section-container .career-details {
    display: flex;
    flex-direction: column;
}
.career-section .career-section-container .career-details .apply-details{
    width: 100%;
}
.career-section .career-section-container .career-details .btn-apply{
    width: 100%;
}
.career-modal-section .career_modal_container .career_modal__wrapper {
    display: flex;
    flex-direction: column;
    font-size: 85%;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left{
    width: 100%;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right{
    width: 100%;
    
}

}




@media (max-width:450px){
.box-container .box-wrap img{
    height: 15rem;
}

.about .column .content .buttons a{
width:100%;
text-align: center;
}

.about .column .content .buttons a:last-child{
margin: 1rem 0;
}
.partners-section .card-container .card{
width:25rem;
}
.hero-section{
margin-top: 8rem;
}
.products-section .products-container .products-slide-wrapper .products-image .img-animate{
width: 90%;
animation:imgAnimate .5s linear .5s backwards;
}

.products-section .products-container .products-slide-wrapper .products-image .bg-image{
width: 100%;
top: 120px;
height: 35vh;
}

.career-hero-section .career-content-box{
    display: flex;
    flex-direction: column;
}

.career-hero-section .career-content-box .left-col-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}
.career-hero-section .career-content-box .right-col-detail{
    width: 100%;
    margin-top: 2rem;
}
.career-hero-section .career-content-box .right-col-detail .start{
    transform: translateY(100%);
}
.slider {
    background: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    leftfv: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
  }
.career-section .career-section-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.career-section .career-section-container .career-sectin-sub-container-left{
    width: 100%;
    padding: 1rem;
}
.career-section .career-section-container .career-sectin-sub-container-right{
    width: 100%;
    padding: 1rem;
}
.career-section .career-section-container .career-details {
    display: flex;
    flex-direction: column;
}
.career-section .career-section-container .career-details .apply-details{
    width: 100%;
}
.career-section .career-section-container .career-details .btn-apply{
    width: 100%;
}
.career_modal_container .career_modal__wrapper {
    width: 90%;
}
.career-modal-section .career_modal_container .career_modal__wrapper {
    display: flex;
    flex-direction: column;
    font-size: 70%;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left{
    width: 100%;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left img{
    width: 50%;
    object-fit: cover;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_left .career-det{
    text-align: center;
    width: 100%;
    padding-bottom: 5px;
    padding-top: 10px;
    margin-top: 10px;
}
.career-modal-section .career_modal_container .career_modal__wrapper .career_modal_right{
    width: 100%;
}

}
/* media queries  */



/* modal view */
/* The Modal (background) */

[id^=modal] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}
[id^=modal]:target {
    display: block;
}
input[type=checkbox] {
    position: absolute;
    clip: rect(0 0 0 0);
}
.career_modal_container {
    width: 100%;
    height: 100%;
    z-index: 99999;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}
.career_modal_overlay {
    position: fixed;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000b3;
}
.career_modal__wrapper {
    position: fixed;
    z-index: 9;
    width: 68%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: #fff;
    overflow-y: initial !important
}
.career_modal_container .career_modal__wrapper img{
    width: 50%;
    object-fit: contain;
}
.career_modal__close {
    position: absolute;
    top: 16px;
    right: 26px;
}



