You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
740 lines
14 KiB
740 lines
14 KiB
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
overflow-x: hidden;
|
|
}
|
|
p{
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
line-height: 1.8rem;
|
|
letter-spacing: 0.001em;
|
|
color: #221415;
|
|
}
|
|
a, button{
|
|
transition: all 300ms ease-out;
|
|
}
|
|
h1{
|
|
font-weight: 800;
|
|
font-size: 38px;
|
|
line-height: 2.8rem;
|
|
letter-spacing: 0.001em;
|
|
color: #221415;
|
|
}
|
|
h2{
|
|
font-weight: 700;
|
|
font-weight: 800;
|
|
font-size: 28px;
|
|
line-height: 34px;
|
|
color: #202023;
|
|
}
|
|
h5{
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
line-height: 2rem;
|
|
color: #202023;
|
|
}
|
|
h4{
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
line-height: 2rem;
|
|
color: #221415;
|
|
}
|
|
|
|
/* new nav*/
|
|
.header {
|
|
padding: 0 6rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 999;
|
|
width: 100%;
|
|
box-shadow: 0 0.5px 1px rgba(246, 246, 246, 0.96);
|
|
transition: padding 500ms, box-shadow 500ms;
|
|
transition-delay: 200ms;
|
|
}
|
|
.header-scroll{
|
|
padding: 0 6rem;
|
|
background: #0E2B52;
|
|
position: sticky;
|
|
box-shadow: 0 2px 4px rgba(99, 99, 99, 0.25);
|
|
}
|
|
.header .logo{
|
|
height: 5rem;
|
|
}
|
|
.header-scroll .logo{
|
|
height: 3.8rem;
|
|
}
|
|
.navbar-list {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
gap: 0.6rem;
|
|
text-decoration: none;
|
|
padding: 0 0.8rem !important;
|
|
list-style: none;
|
|
}
|
|
.nav-link{
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
color: #FFFFFF !important;
|
|
}
|
|
.nav-socials{
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
.nav-socials a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav-link:hover,
|
|
.nav-link:active {
|
|
color: #F54C5F !important;
|
|
}
|
|
|
|
.mobile-navbar-btn {
|
|
display: none;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mobile-nav-icon {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.mobile-nav-icon[name="close-outline"] {
|
|
display: none;
|
|
}
|
|
.dropdown-menu a{
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.dropdown-item:focus, .dropdown-item:hover {
|
|
color: #fff !important;
|
|
background-color: #F54C5F !important;
|
|
transition: all 300ms ease-in-out;
|
|
}
|
|
|
|
|
|
.section-hero,
|
|
.section-services {
|
|
padding: 9.6rem 0;
|
|
background-color: #a5d8ff;
|
|
height: 60vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.section-services {
|
|
background: #f3f0ff;
|
|
}
|
|
|
|
.section-hero p,
|
|
.section-services p {
|
|
font-size: 3.2rem;
|
|
}
|
|
|
|
/* ===========================================
|
|
Responsive Codes
|
|
======================================= */
|
|
|
|
/* 980px */
|
|
@media (max-width: 62em) {
|
|
html {
|
|
overflow-x: hidden;
|
|
}
|
|
.mobile-navbar-btn {
|
|
display: block;
|
|
z-index: 999;
|
|
}
|
|
|
|
.navbar-list {
|
|
/* display: none; */
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #FFFFFF;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
gap: 4rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transform: translateX(100%);
|
|
transition: all 0.5s linear;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
}
|
|
.nav-inner{
|
|
background: #071C39;
|
|
}
|
|
|
|
.navbar-list {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.active .navbar-list {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
|
|
display: block;
|
|
}
|
|
|
|
.active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Below 560px */
|
|
@media (max-width: 35em) {
|
|
.header {
|
|
padding: 0 0.8rem;
|
|
position: sticky;
|
|
background: #071C39;
|
|
}
|
|
|
|
.header .logo {
|
|
width: 55%;
|
|
}
|
|
}
|
|
|
|
/* new nav */
|
|
/* banner section */
|
|
.banner-section{
|
|
position: relative;
|
|
}
|
|
.banner-section .banner-description{
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 10%;
|
|
visibility: hidden;
|
|
animation: 4s anim-lineUp ease-out;
|
|
}
|
|
.banner-section .banner-description-two{
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 10%;
|
|
visibility: hidden;
|
|
animation: 3s anim-lineUp ease-out;
|
|
animation-delay: 6s;
|
|
}
|
|
.banner-section .banner-description-three{
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 10%;
|
|
visibility: hidden;
|
|
animation: 4s anim-lineUp ease-out;
|
|
animation-delay: 8s;
|
|
}
|
|
.banner-description h2, .banner-description-two h2, .banner-description-three h2{
|
|
font-weight: 800;
|
|
font-size: 46px;
|
|
line-height: 69px;
|
|
color: #FFFFFF;
|
|
}
|
|
@keyframes anim-lineUp {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateX(-50%);
|
|
visibility: visible;
|
|
}
|
|
20% {
|
|
opacity: 0;
|
|
visibility: visible;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateX(0%);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
visibility: visible;
|
|
transform: translateX(0%);
|
|
}
|
|
}
|
|
.banner-description h3, .banner-description-two h3, .banner-description-three h3{
|
|
font-weight: 700;
|
|
font-size: 42px;
|
|
line-height: 63px;
|
|
letter-spacing: 0.01em;
|
|
color: #F54C5F;
|
|
}
|
|
.banner-description p, .banner-description-two p, .banner-description-three p{
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 1.6rem;
|
|
color: #FFFFFF;
|
|
}
|
|
/* achievement section css */
|
|
.achievement-section{
|
|
padding: 3rem 6rem;
|
|
background: #F4F4F4;
|
|
}
|
|
.achievement-items{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 6rem;
|
|
}
|
|
.achivement-sec{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
/* about us section css */
|
|
.about-us-section{
|
|
padding: 3rem 6rem;
|
|
}
|
|
.about-us-section .row{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.about-us-sec h2{
|
|
color: #071C39;
|
|
}
|
|
.about-us-sec h4{
|
|
color: #F54C5F;
|
|
font-size: 16px;
|
|
}
|
|
.about-us-sec h5{
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
color: #01070F;
|
|
}
|
|
.about-us-sec ul {
|
|
margin-bottom: 2rem;
|
|
}
|
|
.about-us-sec ul li {
|
|
list-style: none;
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
line-height: 33px;
|
|
letter-spacing: 0.001em;
|
|
color: #01070F;
|
|
}
|
|
.about-us-sec ul li::before {
|
|
content: "\f058";
|
|
color: #071C39;
|
|
font-family: FontAwesome;
|
|
display: inline-block;
|
|
margin-right: 0.6em;
|
|
margin-left: -1.3em;
|
|
width: 1.3em;
|
|
}
|
|
.about-us-sec a{
|
|
background: #071C39;
|
|
border-radius: 25px;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
color: #FFFFFF;
|
|
margin-top: 15px;
|
|
}
|
|
/* about us section css */
|
|
/* our services section css */
|
|
.our-serivces-section{
|
|
padding: 3rem 6rem;
|
|
background: #071C39;
|
|
}
|
|
.our-services-header h2{
|
|
color: #FFFFFF;
|
|
}
|
|
.our-services-header p{
|
|
color: #FFFFFF;
|
|
padding: 0 30%;
|
|
margin-bottom: 45px;
|
|
}
|
|
.services-cards{
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
gap: 25px;
|
|
}
|
|
.services-card{
|
|
background: #0E2B52;
|
|
box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.07);
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
align-items: center;
|
|
}
|
|
.services-icon{
|
|
padding: 20px;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0 auto;
|
|
border-radius: 50%;
|
|
background: #1B3D69;
|
|
}
|
|
.services-card-content{
|
|
align-items: center;
|
|
margin: 20px auto;
|
|
}
|
|
.services-card-content h3{
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
line-height: 33px;
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
}
|
|
.services-card-content p{
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
}
|
|
/* our services section css */
|
|
/* our recruitment section css */
|
|
.our-recruitment-section{
|
|
padding: 3rem 6rem;
|
|
background: #E7E7E7;
|
|
}
|
|
.our-recruitment-header h2{
|
|
color: #071C39;
|
|
text-align: center;
|
|
}
|
|
.our-recruitment-header p{
|
|
font-weight: 700;
|
|
font-size: 17px;
|
|
line-height: 26px;
|
|
text-align: center;
|
|
color: #071C39;
|
|
}
|
|
/* our recruitment section css */
|
|
.slider-partners .slick-track{
|
|
padding: 0 3rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.slider-partners .slick-next::before{
|
|
content: "\f054";
|
|
color: #01070F;
|
|
font-family: FontAwesome;
|
|
}
|
|
.slider-partners .slick-prev::before{
|
|
content: "\f053";
|
|
color: #01070F;
|
|
font-family: FontAwesome;
|
|
}
|
|
/* our recruitment section css */
|
|
/* news and update section css */
|
|
.news-and-update-section{
|
|
padding: 3rem 6rem;
|
|
background: #F6F6F6;
|
|
}
|
|
.news-and-update-section .row{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.featured-news{
|
|
position: relative;
|
|
}
|
|
.featured-content{
|
|
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #020C1B 86.98%);
|
|
width: 100%;
|
|
position: absolute;
|
|
padding: 20px;
|
|
bottom: 0;
|
|
}
|
|
.featured-content p{
|
|
color: #FFFFFF;
|
|
}
|
|
.featured-content h2{
|
|
color: #FFFFFF;
|
|
}
|
|
.news-title h2{
|
|
display: inline-block;
|
|
}
|
|
.news-title h2::after {
|
|
content: '';
|
|
margin-top: 8px;
|
|
margin-bottom: 10px;
|
|
border-bottom: 5px solid #F54C5F;
|
|
width: 40%;
|
|
display: block;
|
|
}
|
|
.featured-news img{
|
|
border-radius: 8px;
|
|
}
|
|
.more-news{
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 15px;
|
|
}
|
|
.more-news-box{
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05);
|
|
border-radius: 12px;
|
|
}
|
|
.news-box-img img{
|
|
border-radius: 8px 8px 0 0;
|
|
}
|
|
.news-box-desc{
|
|
padding: 10px;
|
|
}
|
|
.featured-btn{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.featured-btn a{
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
.featured-btn .fa-solid{
|
|
color: #F54C5F;
|
|
}
|
|
/* news and update section css */
|
|
.clients-section{
|
|
padding: 3rem 6rem;
|
|
}
|
|
.review-card{
|
|
margin: 0 20px;
|
|
padding: 20px;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 4px 27px rgba(100, 98, 98, 0.1);
|
|
border-radius: 26px;
|
|
}
|
|
.review-card-section{
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
.profile-content{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 30px;
|
|
}
|
|
.desc-section p{
|
|
margin-top: 10px;
|
|
}
|
|
.profile-section{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.profile-img{
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
.profile-img img{
|
|
border-radius: 50%;
|
|
}
|
|
.review-card-section .slick-dots li button::before {
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
border: 2px solid #01070F;
|
|
border-radius: 50%;
|
|
line-height: 18px;
|
|
opacity: 1;
|
|
}
|
|
.review-card-section .slick-dots li.slick-active button::before {
|
|
color: #F54C5F;
|
|
opacity: 1;
|
|
}
|
|
/* news and update section css */
|
|
.quick-enquiry-setion{
|
|
background: url('../images/quick-enquiry.png') repeat fixed 100%;
|
|
padding: 6rem;
|
|
background-repeat: no-repeat;
|
|
height: auto;
|
|
width: 100%;
|
|
box-shadow: inset 0 1700px rgb(0 0 0 / 60%);
|
|
background-size: cover!important;
|
|
}
|
|
.quick-enquiry-setion .row{
|
|
display: flex;
|
|
align-items: center;
|
|
position: sticky;
|
|
top: 20px;
|
|
}
|
|
.contact-phone{
|
|
display: flex;
|
|
text-decoration: none;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.contact-phone h5{
|
|
margin-bottom: 0;
|
|
color: #FFFFFF;
|
|
}
|
|
.contact-desc{
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
.enquiry-header h2{
|
|
font-weight: 500;
|
|
font-size: 46px;
|
|
text-align: center;
|
|
letter-spacing: 0.001em;
|
|
color: #F54C5F;
|
|
display: inline-block;
|
|
}
|
|
.enquiry-header h2::after{
|
|
content: '';
|
|
margin: 20px 30%;
|
|
border-bottom: 5px solid #F54C5F;
|
|
width: 50%;
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
.enquiry-header p{
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
}
|
|
.enquiry-form .input-group{
|
|
padding: 0.5rem;
|
|
border: 1px solid #E0DEDE;
|
|
background: rgba(255, 255, 255, 0.55);
|
|
border-radius: 2px;
|
|
}
|
|
.enquiry-form .input-group-text{
|
|
border: none;
|
|
border-radius: 0;
|
|
color: #01070F;
|
|
background: none;
|
|
}
|
|
.enquiry-form input::-webkit-input-placeholder{
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 1.6rem;
|
|
color: #071C39;
|
|
}
|
|
.enquiry-form textarea::-webkit-input-placeholder{
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 1.6rem;
|
|
color: #071C39;
|
|
}
|
|
.enquiry-form input:-moz-placeholder{
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 1.6rem;
|
|
color: #071C39;
|
|
}
|
|
.enquiry-form .form-control{
|
|
background: none;
|
|
border: none;
|
|
margin-left: 0 !important;
|
|
border-radius: 0;
|
|
}
|
|
.enquiry-form .form-select{
|
|
background-color: rgb(0 0 0 / 0%);
|
|
margin-left: 0 !important;
|
|
border: none;
|
|
}
|
|
.enquiry-contacts{
|
|
padding-right: 20%;
|
|
}
|
|
.enquiry-contacts h2{
|
|
font-weight: 700;
|
|
font-size: 38px;
|
|
line-height: 2.6rem;
|
|
letter-spacing: 0.001em;
|
|
color: #FFFFFF;
|
|
margin-bottom: 30px;
|
|
}
|
|
.enquiry-contacts p{
|
|
font-weight: 400;
|
|
font-size: 22px;
|
|
margin-bottom: 40px;
|
|
line-height: 2rem;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-submit{
|
|
background: #F54C5F;
|
|
border: 2px solid #F54C5F;
|
|
border-radius: 4px;;
|
|
border-radius: 4px;
|
|
padding: 10px 40px;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
}
|
|
/* footer css */
|
|
.footer{
|
|
padding: 3rem 6rem 0 6rem;
|
|
background: #071C39;
|
|
}
|
|
.footer-desc p{
|
|
margin-top: 20px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.8rem;
|
|
letter-spacing: 0.001em;
|
|
color: #FFFFFF;
|
|
}
|
|
.visa-services, .recruitment, .quick-links{
|
|
float: right;
|
|
}
|
|
.visa-services h2, .recruitment h2, .quick-links h2{
|
|
display: inline-block;
|
|
color: #FFFFFF;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
}
|
|
.visa-services h2::after, .recruitment h2::after, .quick-links h2::after{
|
|
content: '';
|
|
border-bottom: 2px solid #F54C5F;
|
|
width: 50%;
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
.visa-services ul, .recruitment ul, .quick-links ul{
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
.visa-services ul li a, .recruitment ul li a, .quick-links ul li a{
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #FFFFFF;
|
|
line-height: 2rem;
|
|
text-decoration: none;
|
|
}
|
|
.footer-top::after{
|
|
content: '';
|
|
border-bottom: 1px solid #53676E;
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
.footer-bottom{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.footer-bottom p{
|
|
font-weight: 400;
|
|
font-size: 13px;
|
|
line-height: 1.8rem;
|
|
color: #53676E;
|
|
}
|
|
.developed-by a{
|
|
text-decoration: none;
|
|
color: #53676E;
|
|
}
|
|
|