*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vbox-title{
    display: none !important;
}

.vbox-container{
    overflow-x: hidden;
}

.vbox-close{
    top: 30px;
    right: 30px;
    background-color: rgba(255,255,255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 4px;
    padding: 10px;
    transition: var(--animate-all);
}

.vbox-close:active{
    transform: scale(1);
}



.banner-text a {
    color: #fff;
}

.vbox-close:hover{
    transform: scale(1.2);
}
.btn{
    background: linear-gradient(45deg, var(--clr-primary), var(--clr-aux));
    box-shadow: 0 5px 7px 0 rgb(73 72 46 / 54%);
}
.btn_primary{
    display: inline-block;
    margin-top: 15px;
    background-size: 300% 40%;
    padding: var(--space-2);
    color: var(--clr-white) !important;
    font-weight: 700;
    border-radius: 25px;
    transition: var(--animate-all);
    font-size:1.2rem;
    border:0;
}

.btn_primary:hover{
    background-position: 100% 0;
    transition: var(--animate-all);
    color: var(--clr-white);
}

.btn_primary:active{
    background-position: 100% 0;
    transition: var(--animate-all);
    color: var(--clr-white);
}

:root{
    --clr-primary: #006188;
    --clr-aux: #0979a7;
    --clr-white: #fff;
    --clr-black: #201e1f;
    --fw-1: 300;
    --fw-2: 400;
    --fw-3: 500;
    --fw-4: 600;
    --fw-5: 700;
    --fw-6: 800;
    --fw-7: 900;
    --fs-1: 0.55rem;
    --fs-2: 0.75rem;
    --fs-3: 1rem;
    --space-1: 8px 10px;
    --space-y: 10px 0;
    --space-x4: 10px;
    --space-2: 12px 25px;
    --space-2x4: 50px;
    --move-1: 0 10px;
    --move-x4: 10px;
    --move-2: 0 15px;
    --animate-all: all .4s ease-in-out;
    --animate-t: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 2);
    --animate-inset: inset 0.4s cubic-bezier(0.075, 0.82, 0.165, 2);
    --animate-v: visibility 0.4s cubic-bezier(0.075, 0.82, 0.165, 2);
    --animate-o: opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 2);
    --animate-c: color 0.4s cubic-bezier(0.075, 0.82, 0.165, 2);
    --ease: all 0.2s ease-in-out;
    --ease-slow: all 0.4s ease-in-out;
    --ease-slower: all 0.7s ease-in-out;
}

body,
html{
    font-family: 'Poppins', serif;
    font-size: 14px;
    width: 100%;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Roboto', serif;
    letter-spacing: 0.5px;
}
.h2, h2 {
    font-size: 2.5rem;
    font-weight: var(--fw-5);
}

.h3, h3 {
    font-size: 2.2rem;
    font-weight: var(--fw-5);
}
h4 {
    color: var(--clr-primary);
}
a,
a:hover{
    font-family: 'Montserrat', serif;
    text-decoration: none;
}

.container-fluid {
    width: 90%;
}
.p-relative{
    position:relative;
}
.p-top-70{
    padding-top:70px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    /* display: none; */
    right: -50px;
    bottom: 25px;
    z-index: 9999999999;
    transition: all 0.4s cubic-bezier(0.275, -1, 0.265, 2);
}


.back-to-top.active {
    right: 25px;
}
  
.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 40px;
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--clr-primary), var(--clr-aux));
    color: #fff;
    transition: var(--animate-all);
    transform: rotate(-90deg);
    box-shadow: 0 0 rgba(0,0,0,0.2);
}
  
.back-to-top i:hover {
    filter: brightness(1.5);
    color: #fff;
}

.back-to-top.active i{
    transform: rotate(0deg);
}

.back-to-top:hover i {
    transform: scale(1.2);
    box-shadow: 3px 3px rgba(0,0,0,0.2);
}

.back-to-top:active i {
    transform: scale(1);
    box-shadow: 0 0 rgba(0,0,0,0.2);
}


@media screen and (max-width: 969px){

    main{
        top: 16vh !important;
    }
    
    .about_img{
        margin-top: 30px;
    }

    .why_us_item{
        margin-bottom: 30px;
    }

    #contact_us textarea{
        margin-top: 15px;
    }

    .footer_info{
        margin-bottom: 30px;
        padding-top: 35px;
    }


}


/* ------------------------------------
Header
------------------------------------ */

header{
    padding: 15px 0;
    background-color: var(--clr-white);
    box-shadow: 0 0 25px rgba(0,0,0,0.2) ;
}

header .container{
    min-width: 90% !important;
}
 /*custom */
 header .logo img{
     height:80px;
     width:auto;
 }


/* Mobile Navigation */

.mobile-nav-toggle i {
  color: #000;
  font-size: 45px;
}


.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 50px;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--clr-black);
  padding: 10px 20px;
  font-weight: 500;
  font-size: 25px;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--clr-primary);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

/* ------------------------------------
Nav_menu
------------------------------------ */

.fixed-top {
   
z-index: 999999999;
}

main {
	z-index: 999999;
}


.nav_menu ul li a{
    color: var(--clr-black);
    text-shadow: 0px 0px 2px var(--clr-white);
    font-weight: 900;
    margin: 0 4px;
    display: inline-block;
    transition: var(--animate-all);
}

.nav_menu ul li a:hover,
.nav_menu ul li:hover > a{
    color: var(--clr-primary);
    transform: scale(1.15);
    text-shadow: none;
}

.nav_menu ul li > a i{
    transition: var(--animate-all);
    display: inline-block;
}

.nav_menu ul li:hover > a i{
    transform: rotate(-180deg);
}

.nav_menu ul li.dropdown ul{
    position: absolute;
    width: max-content;
    background-color: transparent;
    backdrop-filter: blur(1em);
    -webkit-backdrop-filter: blur(1em);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
    padding: 25px;
    border-radius: 10px;
    top: calc(100% + 40px);
    transition: var(--animate-all);
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
}

.nav_menu ul li.dropdown:hover ul{
    top: 100%;
    opacity: 1;
    visibility: visible;
}

li#ptelogin {
    background-color: #0979a7;
    color: #fff !important;
    display: inline-block;
    margin: 0 0px 0 10px;
    background-size: 300% 40%;
    color: var(--clr-white) !important;
    font-weight: 500;
    border-radius: 4px;
    font-size: 1.2rem;
    border: 0;
}

#ptelogin .nav-link:hover {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

li#ptelogin a.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 10px 10px 10px;
}
.icofont-close:before {
    color: #000;
}

li#ptesubs {
    background-color: #0979a7;
    color: #fff !important;
    display: inline-block;
    margin: 0 0px 0 10px;
    background-size: 300% 40%;
    color: var(--clr-white) !important;
    font-weight: 500;
    border-radius: 4px;
    font-size: 1.2rem;
    border: 0;
}
#ptesubs .nav-link:hover {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

li#ptesubs a.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}




/* ------------------------------------
Banner


.banner{
    background: no-repeat url("../img/banner-img.jpg");
    position: relative;
    background-size: cover;
   /* background-position-y: 84px;
    height: 100vh;
}
------------------------------------ */

#hero.parallax-window {
    height: 95vh;
    position: relative;
    background: top center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

#hero.parallax-window .row{
    margin-top: 5em;
}
#main{
    background: var(--white);
}


/* ------------------------------------
#hero
--------------------------------------- */

#hero h1{
    color:var(--primary-clr);
    font-size:39px;
    font-weight: 700;
    line-height: 1.5em;
}

#hero h1 span{
    color:var(--secondary-clr);
}

#hero.parallax-window::before {
    content: '';
    position: absolute;
    background: rgba(255,255,255, 0.6);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.Banner-tittle{
    font-size: 4rem;
    font-weight:700;
}

#hero h1 {
	color: #e77817;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2em;
}
.index-front {
	color: #000;
}

.index-font {
	color: #000 !important;
}

#hero p {
	color: #000;
	font-weight: 500;
	font-size: 27px;
}
#hero .pte-btn-ptactice{
	background-color: #0979a7;
	color: var(--white);
	padding: 10px 30px;
	display: inline-block;
	margin-top: 20px;
	font-size: 20px;
	border-radius: 4px;
}
#particles-js {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}


/* ------------------------------------
Section / Main
------------------------------------ */

main{
    background-color: var(--clr-white);
    position: relative;
   }
section{
    padding: 40px 0;
}
.container [class] {
	position: relative;
	z-index: 99999;
}

.section-title{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    color: var(--clr-primary);
    margin: 0;
    position: relative;
}

.section-title h2::before{
    content: "";
    position: absolute;
    background: linear-gradient(45deg, var(--clr-primary), var(--clr-aux));
    width: 40%;
    inset: 0;
    margin: auto auto 0 auto;
    height: 4px;
    bottom: -15px;
    border-radius: 4px;
}


/* ------------------------------------
Section / Main
------------------------------------ */

.service-img{
    border-radius: 20px 0 20px 0;
    z-index: 1;
    -webkit-box-shadow: 0px 50px 100px 0px rgb(15 3 49 / 25%);
    -moz-box-shadow: 0px 50px 100px 0px rgba(15, 3, 49, 0.25);
    box-shadow: 0px 50px 100px 0px rgb(15 3 49 / 25%);
}
.shape1 {
    position: absolute;
    top: -80px;
    right: 60px;
    z-index: -1;
}

.shape2{
position: absolute;
z-index: -1;
top: -80px;
right: -10px;
}

.services-icon {
    background: var(--clr-primary);
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 25px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0px 3px 4px var(--clr-black);
}
.services-icon i {
    font-size: 2.7rem;
    line-height: 1;
    color: var(--clr-white);
}

section#services a {
    color: #000;
}

p.sub_ser {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 3px;
}
/* ------------------------------------
About
------------------------------------ */

#about_us{
    background: #f6f6f6;
}

#about_us:hover h3::before{
    width: 150px;
}

.about_img img{
    width: 100%;
    animation: pulsing 10s ease-in-out infinite alternate;
}

.about_img{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

#about_us h3{
    position: relative;
}


section#about_us {
    margin-top: 30px;
    margin-bottom: 30px;
}
a#whatsapp {
    color: #000;
    letter-spacing: .4px;
}


/* ------------------------------------
Why Us
------------------------------------ */
div#choose_sub {
    width: 100%;
    text-align: center;
    padding: 0px;
    margin: 0px;
}
div#choose_sub p {
    margin-bottom: 0px;
}
section#why_us .row.text-center {
    margin-top: 40px;
}
p.chooosetext {
    color: #0979a7;
}

#why_us .why_us_item h3{
    font-size: 25px;
    position: relative;
    z-index: 1;
}

.education {
    --bg-color: #ffd861;
    --bg-color-light: #ffeeba;
    --text-color-hover: #4C5656;
    --text-color:#ffbf00;
    --box-shadow-color: rgba(255, 215, 97, 0.48);
  }
  
  .credentialing {
    --bg-color: #B8F9D3;
    --bg-color-light: #e2fced;
    --text-color:#00ff6a;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(184, 249, 211, 0.48);
  }
  
  .wallet {
    --bg-color: #CEB2FC;
    --bg-color-light: #F0E7FF;
    --text-color:#6000fc;
    --text-color-hover: #fff;
    --box-shadow-color: rgba(206, 178, 252, 0.48);
  }
  
  .human-resources {
    --bg-color: #DCE9FF;
    --bg-color-light: #f1f7ff;
    --text-color:#005cfc;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(220, 233, 255, 0.48);
  }
  
  
  .cardd {
    width: 100%;
    height: 321px;
    background: #fff;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgb(0 0 0 / 4%);
    transition: all 0.3s ease-out;
    text-decoration: none;
    border:none;
  }
  
  .cardd:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0,0,0,0.11),
      0 24px 46px var(--box-shadow-color);
  }
  
  .cardd:hover .overlay1 {
    transform: scale(4.5) translateZ(0);
    background: var(--bg-color);
  }
  
  .cardd:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
  }
  
  .cardd:hover .circle:after {
    background: var(--bg-color-light);
  }
  
  .cardd:hover .why_us_item {
    color: var(--text-color-hover);
  }
  
  .cardd:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0,0,0,0.11),
      0 15px 24px var(--box-shadow-color);
  }
  
  .cardd .why_us_item {
    color: #4C5656;
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
    padding: 0 5px 5px;
  }
  
  .circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px  solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
  }
  
  .circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 5px;
    left: 5px;
    transition: opacity 0.3s ease-out;
  }
  
  .circle i {
    z-index: 10000;
    transform: translateZ(0);
    font-size: 50px;
    color: var(--text-color);
    line-height:1.1;
  }
  
  .overlay1 {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: #fff;
    top: 44px;
    left: 86px;
    z-index: 0;
    transition: transform 0.3s ease-out;
  }



/* ------------------------------------
Testimonials
------------------------------------ */

#testimonials {
	background: #f6f6f6;
}

.carousel_container{
    padding: 50px 0;
}

.carousel-item{
    text-align: center;
}


.carousel-item i{
    font-size: 30px;
}



.carousel-indicators li {
    box-sizing: unset;
    width: 12px;
    height: 12px;
    margin-right: 3px;
    margin-left: 3px;
    border-radius: 30px;
    background-clip: unset;
    border: 0 !important;
    opacity: .5;
    background: #00000050;
    transition: var(--animate-all) !important;
}

.carousel-indicators li.active {
    width: 30px;
    background:  var(--clr-white)!important;
}


/*custom */
.carousel_container{
    background: var(--clr-primary);
    border-radius: 50px 0;
    color: var(--clr-white);
    position: relative;
}
.carousel_container i {
    font-size: 70px;
    opacity: .4;
    position: absolute;
    left: 10%;
    top: 0px;
}
.carousel-item p {
    font-size: 1.2rem;
}



/* ------------------------------------
Contact_Us
------------------------------------ */
.contact_details p {
    margin-bottom: 0px;
}
#contact_us .contact_info{
    padding: var(--space-2x4);
}

#contact_us .contact_info ul li{
    margin-bottom: 25px;   
}

#contact_us .contact_info ul li{
    display: flex;
    align-items: center;
    gap: 20px;
}

#contact_us .contact_info ul li i{
    font-size: 2rem;
    color: var(--clr-primary);
    transition: var(--animate-all);
}

#contact_us .contact_info ul li:hover i{
    font-size: 4rem;
    color: var(--clr-aux);
}

#contact_us .mapouter{
    width: 100% !important;
}

#form{
    width: 60%;
    margin: 0 auto;
}
textarea {
	resize: none;
}
.form-label {
	font-size: 12px;
	color: #5e9bfc;
	margin: 0;
	display: block;
	opacity: 1;
	-webkit-transition: .333s ease top, .333s ease opacity;
	transition: .333s ease top, .333s ease opacity;
}
.form-control {
	border-radius: 0;
	border-color: #ccc;
   	border-width: 0 0 2px 0;
   	border-style: none none solid none;
   	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
	border-color: #5e9bfc;
}
.js-hide-label {
	opacity: 0; 	
}
.js-unhighlight-label {
	color: #999 
}



/* ------------------------------------
Footer
------------------------------------ */

#footer{
    padding-top: 50px;
    background: var(--clr-black);
    color: var(--clr-white);
}

#footer .footer_info h3{
    margin-bottom: 25px;
}

#footer .footer_info ul li{
    margin-bottom: 12px;
}

#footer .footer_info ul li a{
    font-weight: 600;
    color: var(--clr-white);
    display: inline-block;
    transition: var(--animate-all);
}

#footer .footer_info ul li i{
    margin-right: 8px;
}

#footer .footer_info ul li a:hover{
    transform: scale(1.1) translateX(5px);
    color: var(--clr-primary);
}
.footer-bottom{
    background: var(--clr-primary);
    color:var(--clr-black);
}
.copyright {
    font-weight: var(--fw-5);
}

@media screen and (max-width: 991px){
    .banner{
        height: auto;
    }
    .Banner-tittle {
        font-size: 2em;
        padding-top: 20px;
    }
    .p-top-70 {
         padding-top: 0px;
    }
    
}

@media screen and (max-width: 767px){
    .card{
        margin-bottom: 20px;
    }
    .card:hover .overlay{
        transform: scale(7.7) translateZ(0);
    }
    #footer{
        text-align:center;
        padding-top: 95px !important;
    }
    .fixed-top {
        z-index: 10000;
    }
    .mobile-nav-toggle i {
        color: #000;
        font-size: 45px;
    }
    .mobile-nav {
        z-index: 999999999;
     }
     main {
        z-index: 999999;
    }
  
}

@media screen and (min-width: 640px) and (max-width: 640px){
    .banner-text {
        width: 70%;
    }
    .mobile-nav-toggle i {
        color: #000;
        font-size: 45px;
    }
    .fixed-top {
        z-index: 1000000;
        /* display: inline; */
    }
   
    
}


@media screen and (max-width: 420px){
    .contact_info p {
        font-size: 14px;
    }
    #contact_us .contact_info {
        padding: var(--space-2x2);
    }   
    #footer .footer_info ul li a {
        font-weight: 500;
    }
    .fixed-top {
        z-index: 1000000;
        /* display: inline; */
    }
    .mobile-nav-toggle i {
        color: #000;
        font-size: 45px;
    }
    
  
}




/* ---------------------------------------------
Tabs
--------------------------------------------- */

.tabs .nav-tabs{
    display: flex;
    justify-content: center;
}

.tabs .nav-tabs li a{
    border: 0;
    padding: 10px !important;
    background-color: #f6f6f6;
    border-radius: 0;
    outline: 1px dotted #00000050;
    position: relative;
    transition: var(--animate-all);
    color: #00000080;
}

.tabs .nav-tabs li a:hover{
    outline: 1px dashed #00000050;
    color: var(--clr-black);
    z-index: 1;
}

.tabs .nav-tabs li a.active{
    outline: 1px solid #00000050;
    color: #000;
    z-index: 1;
}

.tab-content{
    margin-top: 20px;
    padding: 0 10px;
}

.tab-pane h2{
    margin-bottom: 25px;
}

.pane_list li{
    margin-bottom: 15px;
}

.tab-pane h3{
    margin-bottom: 25px;
}

.tab-pane h2,
.tab-pane h3{
    background: linear-gradient(45deg, var(--clr-primary), var(--clr-aux));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.progress {
    background: linear-gradient(to right ,var(--clr-primary), var(--clr-aux), var(--scroll), transparent 0);
    background-repeat: no-repeat;
    position: fixed;
    width: 100%;
    height: 4px;
    border-radius: 30px !important;
    z-index: 9999;
}


