@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    /* color: var(--sub-title); */
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

:root {
    --sub-title: #134a66cb;
    --primary-color: #134b66;
    --second-color: #f4941a;
    --third-color: red;
    --dummy-color: #828499;
    --rounded-10: 10px;
    --rounded-15: 15px;
    --rounded-20: 20px;
}
.text_swen{
    color: var(--second-color);
    text-transform: uppercase;
}

.text_italic {
    font-style: italic;
}

a {
    text-decoration: none;
}

.mt-100 {
    margin-top: 100px;
}

.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.logo {
    max-width: 250px;
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-item {
    padding-right: 1.5rem;
}

.nav-link {
    color: var(--primary-color);
    padding: 5px 0 !important;
    transition: all .5s ease-in-out;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}



.nav-link::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--second-color);
    transition: all .5s ease-in-out;
}

.active_menu {
    position: relative;
    overflow: hidden;
    color: var(--second-color);
    font-weight: 500;
}

.active_menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 50%;
    background: var(--second-color);
    transition: all .5s ease-in-out;
}

.nav-link:hover::before {
    bottom: 0;
    width: 50%;
    /* background: var(--primary-color); */
    border-radius: 100%;
}

.nav-link:hover {
    color: var(--second-color);
}

.btn_header {
    border: 1px solid var(--second-color);
    border-radius: 50px;
    color: #fff;
    padding: 8px 20px;
    transition: all .5s ease-in-out;
    background: var(--second-color);
}

.btn_header:hover {
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: #fff !important;
}

.top_banner {
    background: linear-gradient(to right, #134a668c, #134a6600), url(../img/banner.jpg);
    background-position: center right;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.top_heading h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.top_heading p {
    font-size: 1.225rem;
    font-style: italic;
    margin: 2rem 0;
}

.link {
    font-style: italic;
    color: var(--second-color);
    transition: all .5s ease;
}


.link:hover {
    color: var(--primary-color);
}

.btn_primary {
    color: #fff;
    border: 1px solid #fff !important;
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all .5s ease;
    position: relative;
    background: transparent;
}



.btn_primary:hover {
    color: var(--primary-color) !important;
    background: #fff !important;
    animation: btn_primary .5s infinite linear;
}



.btn_primary_fill {
    color: #fff !important;
    border: 1px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all .5s ease;
    position: relative;
    background: transparent;
}



.btn_primary_fill:hover {
    animation: btn_primary_fill .5s infinite linear;
}


.card_btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 0;
    padding: 8px 25px;
    transition: all .5s ease-in-out;
}

.card_btn:hover {
    animation: card_btn .5s infinite linear;
}





.sub_title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--sub-title);
}

.title {
    font-size: 2.225rem;
    font-weight: bold;
    color: var(--primary-color);
}

.title span {
    color: var(--second-color);
}
.title_02 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.title_02 span {
    color: var(--second-color);
}

.icon_box {
    border: 1px solid var(--primary-color);
    padding: 1rem;
    height: 100%;
    border-radius: var(--rounded-15);
    display: flex;
    align-items: center;
    transition: all .5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.icon_bg {
    position: absolute;
    width: 100px;
    right: -100px;
    bottom: -100px;
    transition: all .5s ease-out;
    opacity: 0;
    z-index: -1;
}

.icon_box:hover .icon_bg {
    opacity: 0.5;
    right: 15px;
    bottom: -15px;
}

.icon_box:hover .icon {
    display: none;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.icon_info {
    align-self: center;
}

.icon_box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.icon_box h4 span {
    color: var(--second-color);
    font-weight: 400;
}

.icon_box .icon {
    max-width: 40px;
    margin-right: 15px;
    transition: all .5s ease-in-out;
}

.hire_card {
    padding: 5rem 4rem;
    border-radius: var(--rounded-20);
    background: linear-gradient(to bottom, #134a668c, #134a668e), url(../img/card_bg.png);
    background-size: cover;
}

.hire_card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.hire_card h3 {
    font-size: 3rem;
    margin: 25px 0;
    color: #fff;
    font-weight: 400;
}

.card_02 {
    border: 1px solid var(--primary-color);
    border-radius: var(--rounded-15);
    padding: 2.5rem 2rem;
    height: 100%;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    position: relative;
    transition: all .5s ease-in-out;
    overflow: hidden;
    
}

.card_02::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--sub-title);
    border-radius: var(--rounded-15);
    transition: all .5s ease-in-out;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(90deg);
}

.card_02:hover::before {
    transform: perspective(1000px) rotateX(0);
    top: 0;
    z-index: -1;
}

.card_02 img {
    max-width: 80px;
    margin-bottom: 30px;
}

.card_02 h4 {
    color: var(--primary-color);
    font-weight: 600;
    transition: all .5s ease-in-out;
}

.card_02 h4,
.card_02 p,
.card_02 .link {
    transition: all .5s ease-in-out;
}

.card_02:hover h4,
.card_02:hover p,
.card_02:hover .link {
    color: #fff;
}

.resume_area {
    text-align: center;
    background: linear-gradient(to bottom, #134a668c, #134a668e), url(../img/resume_area_bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 200px 0;
}

.resume_area h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
}

.resume_area h2 span {
    font-weight: 400;
}

.card_03 {
    border: 1px solid var(--primary-color);
    padding: 2.5rem 2rem;
    border-radius: var(--rounded-15);
    transition: all .5s ease-in-out;
}

.card_03:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 10px 1px #0000004f;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
}

.card_03 h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.card_03 p {
    line-height: 1rem;
    color: var(--primary-color);
}

.card_03 p span {
    color: var(--second-color);
}

.card_03 h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    border: 2px solid var(--second-color);
}

.card_03 h4 span {
    font-weight: 400;
    color: var(--sub-title);
}

footer {
    background: var(--sub-title);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer_menu {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer_menus li {
    list-style: none;
    /* line-height: 2.2rem; */
    display: inline-block;
    padding: 2px 1.5rem;
}

.footer_link {
    color: #fff;
    transition: all .5s ease-in-out;
}

.footer_link:hover {
    color: var(--second-color);
}

.copyrights {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 0;
}

.copy {
    display: flex;
    justify-content: space-between;
}

.copyrights a,
.copyrights p {
    margin-bottom: 0;
    color: #fff;
}

.call_to_top {
    background: var(--second-color);
    color: #fff !important;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: call_to_top .8s infinite linear;
}
.wp_icom_01 {
    background: #57bf4e;
    color: #fff !important;
    height: 45px;
    width: 45px;
    font-size: 1.5rem;
    border-radius: 100%;
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: wp_icom_01 1.5s infinite linear;
    box-shadow:-3px -3px 5px 1px #0000006b inset;
}


.wp_icom_01::before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00000057;
    border-radius: 100%;
    box-shadow: 0 0px 5px 2px #0000006b;
    animation: wp_icom_01_shadow 1.5s infinite linear;
}

.social_media .icon01 {
    margin-right: 10px;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    
}

.linkedin_bg {
    background: #0a5d89;
    box-shadow:-3px -3px 5px 1px #0000006b inset;
    animation: linkedin_bg 1.5s infinite linear;
}

.fb_bg {
    background: #375d93;
    box-shadow:-3px -3px 5px 1px #0000006b inset;
    animation: fb_bg 1.5s infinite linear;
}
.insta_bg {
    background: linear-gradient(to bottom  right , #5b54c5 , #cd327a , #f3be66);
    box-shadow:-3px -3px 5px 1px #0000006b inset;
    animation: insta_bg 1.5s infinite linear;
}

.twit_bg {
    background: #26c4f1;
    box-shadow:-3px -3px 5px 1px #0000006b inset;
    animation: twit_bg 1.5s infinite linear;
}





.icon01 a {
    font-size: 12px;
}



.second_heding {
    background: linear-gradient(to right, #134a661f, #134a6691), url(../img/second_banner.jpg);
    background-position: center right;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
}

.second_heding h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.back {
    color: var(--second-color);
}

.back a {
    color: #fff;
}

.join_form{
    border-radius: var(--rounded-15);
    overflow: hidden;
    box-shadow: 0 0 10px 1px #0000003f;
}


.contact_form {
    padding: 2rem;
    background: #fff;
}

.contact_box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_box i {
    font-size: 2rem;
    margin-right: 15px;
}

.contact_box p,
.contact_box a {
    margin-bottom: 0;
    font-size: 1.2em;
    color: #fff;
}

.contact_info {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
    height: 100%;
}

.form-control {
    padding: 8px 8px 8px 2.1rem;
}

.input_icon {
    position: absolute;
    top: 10px;
    left: 20px;
}

.input_icon02 {
    position: absolute;
    top: 16px;
    left: 20px;
}

.search_box input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    padding: 15px 15px 15px 2.5rem;
}

.search_box {
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: var(--rounded-15);
    background: var(--primary-color);
}

.job_box {
    /* border: 1px solid var(--primary-color); */
    position: relative;
    padding: 5rem 2rem 3rem;
    transition: all .5s ease-in-out;
    border-radius: var(--rounded-10);
    height: 100%;
    background: #ebebeb;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.job_logo {
    outline: 8px solid #ebebeb;
    position: absolute;
    top: -50px;
    left: 35px;
    background: #fff;
    width: 100px;
    height:100px ;
    border-radius: 100%;
    transition: all .5s ease-in-out;
    /* border-radius: var(--rounded-10); */
}

.job_box:hover .job_logo {
    box-shadow: 0 5px 15px 1px #0000002f , 3px 3px 10px 1px #0000002f inset;
    transform: scale(1.1);
    border: none;
    outline: none;
}

.job_box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    /* margin-bottom: 20px; */
}

.job_box p {
    color: var(--sub-title);
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
    /* margin-bottom: 20px; */
}

.job_btn {
    position: absolute;
    right: 35px;
    bottom: -20px;
    /* outline: 5px solid #fff; */
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 8px 25px;
    transition: all .5s ease-in-out;
    border-radius: 5px;
}

.job_btn:hover {
    animation: card_btn .5s infinite linear;
}



.testimonial {
    background-color: white;
    padding: 60px 0;
    margin: 10px 15px 10px;
    position: relative;
  }
  
  .owl-controls {
    margin-top: 20px;
  }
  
  .owl-pagination {
    display: flex;
    justify-content: center;
  }
  
  .owl-page {
    height: 10px;
    width: 40px;
    background-color: var(--sub-title);
    border-radius: 10%;
  }
  
  .owl-page:hover,
  .owl-page.active {
    background-color: var(--primary-color);
  }
  
  .owl-page:not(first-item) {
    margin-left: 10px;
  }


  .job_name h2{
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
  }

  .job_name p{
    margin-bottom: 3px;
    color: var(--sub-title);
    color: #fff;
    mix-blend-mode: ;
  }
  