@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 100%;
}
:root {
    --primary: #0D3A83;
    --secondary: #27aae1;
    --third: #5EAC1B;
    --text: #414042;
    --dark: #333;
    --white: #fff;
    --border-color: #ddd;
    --grey-color: #eee;
    --primary-font: 'Poppins',sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--primary-font);
    font-weight: 400;
}
:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}
a,
a:hover {
    text-decoration: none;
}
a,button,.btn {
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,h2,h3,h4,h5,h6 {
    color: var(--primary);
    font-weight: 500;
}
h1 {
    font-size: 3.25rem;
}
h2 {
    font-size: 2.375rem;
    margin-bottom: 1.875rem;
}
h3 {
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
}
h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
p {
    font-size: 1rem;
    line-height: 1.75rem;
}
p:last-child {
    margin-bottom: 0;
}
.spacing {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}
.btn-common {
    background: var(--primary);
    border: none;
    font-size: 15px;
    padding: 13px 30px;
    margin-top: 10px;
}
.btn-common:hover {
    background: var(--secondary);
}

/* Header */
.navbar-brand {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.navbar-brand img {
    width: 200px;
}
.navbar-nav .nav-item .nav-link {
    color: var(--text);
    font-size: 15px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 1rem;
    margin-right: 1rem;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--secondary);
}

/* Banner */
.carousel-caption {
    position: absolute;
    top: 70%;
    left: 16%;
    transform: translateY(-70%);
    width: 35%;
    text-align: left;
}
.carousel-caption h1 {
    color: var(--white);
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--white);
}

/* About Area */
.about-wrap h6 {
    text-transform: uppercase;
    color: var(--text);
}
.green-box {
    border-radius: 1em;
    background: var(--third);
    padding: 3.125em;
}
.green-box img {
    margin-bottom: 20px;
}
.green-box h5 {
    color: var(--white);
    line-height: 30px;
    margin-bottom: .875em;
}
.green-box p {
    color: var(--white);
}

/* IT Recruitment */
.it-rect-wrap {
    background: url(../images/it-recruitment-pic.jpg) no-repeat center center;
    background-size: cover;
}

/* Footer Top */
.footer-top {
    background: var(--third);
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}
.footer-top h2 {
    margin-bottom: 0;
    color: var(--white);
    line-height: 1.5em;
}
.btn-footer-top {
    padding: 15px 75px;
    border: 2px solid var(--white);
}
.btn-footer-top:hover {
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--primary);
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}
.footer-address p {
    color: var(--white);
}
.footer-address a {
    color: var(--white);
}
.copyright p {
    font-size: 14px;
    color: var(--white);
}

/* Inner Styles */
.inner-title {
    border-bottom: 1px solid var(--border-color);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.inner-title h1 {
    margin-bottom: 0;
}
.inner-cont h2 {
    color: var(--dark);
}
.inner-cont h5 {
    color: var(--secondary);
}

.mis-vis-wrap {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: url(../images/about-misison-bg.jpg) no-repeat top center fixed;
    background-size: cover;
}
.mis-vis-wrap h4, .mis-vis-wrap p {
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}
label {
    font-family: var(--primary-font);
    font-size: 14px !important;
}
textarea {
    resize: none;
}
.form-control::-webkit-input-placeholder {
    color: #ccc;
}
.form-control {
    font-family: var(--primary-font);
    border: 1px solid var(--border-color) !important;
    border-radius: 0;
    outline:none !important;
    box-shadow: none !important;
    padding: .875rem;
    font-size: 14px;
}
.help-block li {
    color: red;
    font-size: 14px;
}
.btn-send {
    border-radius: 0px;
    padding: 10px 15px 12px 15px;
    background: transparent;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color);
    font-size: 14px;
}
.btn-send:hover {
    background: transparent;
    color: var(--text-color);
}