html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #888888 !important;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #888888 !important;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #888888 !important;
}
:-moz-placeholder { /* Firefox 18- */
    color: #888888 !important;
}

.wow {
    visibility: hidden;
}
a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
button,
.btn {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
p:last-child {
    margin-bottom: 0 !important;
}

/* Common style :start */
.row-gap-24px {
    row-gap: 24px;
}

.color-1 {
    color: #0ba5de;
}

.btn-style-1 {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #0ba5de;
    border: 1px solid #0ba5de;
    border-radius: 10px;
    padding: 10px 20px;
}
.btn-style-1:hover {
    color: #0ba5de;
    background-color: transparent;
}

.section-title {
    font-size: 55px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0;
    text-align: center;
}
.section-title b {
    font-weight: 700;
}

/* --- form-style-1 :start --- */
.form-style-1 .form-control {
    font-size: 16px;
    font-weight: 500;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #c6c6c6;
    border-radius: 10px;
}
.form-style-1 textarea.form-control {
    height: auto;
}
/* --- form-style-1 :end --- */

/* Common style :end */

/* Header :start */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    padding: 20px 0px;
}
.navbar .navbar-inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.menu_button {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
  background: none;
  border: none;
  outline: none;
}
.menu_button,
.menu_button span {
	display: inline-block;
	box-sizing: border-box;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}
.menu_button {
	z-index: 99992;
	width: 40px;
	height: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.menu_button_line {
	width: 100%;
	height: 5px;
	background: #233b5d;
	border-radius: 0.2rem;
}
.menu_button .menu_button_line.top {
	top: 0;
}
.menu_button .menu_button_line.mid {
	top: 1rem;
}
.menu_button .menu_button_line.botm {
	bottom: 0;
}
.menu_button.on_menu .menu_button_line {
	background: #000000;
}
.menu_button.on_menu .menu_button_line.top {
	-webkit-transform: translateY(10px) rotate(-45deg);
	   -moz-transform: translateY(10px) rotate(-45deg);
	    -ms-transform: translateY(10px) rotate(-45deg);
	     -o-transform: translateY(10px) rotate(-45deg);
	        transform: translateY(10px) rotate(-45deg);
}
.menu_button.on_menu .menu_button_line.mid {
	opacity: 0;
}
.menu_button.on_menu .menu_button_line.botm {
	-webkit-transform: translateY(-8px) rotate(45deg);
	   -moz-transform: translateY(-8px) rotate(45deg);
	    -ms-transform: translateY(-8px) rotate(45deg);
	     -o-transform: translateY(-8px) rotate(45deg);
	        transform: translateY(-8px) rotate(45deg);
}
.navbar-wrapper {
    transform: translateY(-100%);

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-color: #ffffff;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    overflow: auto;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.navbar-wrapper.open {
    transform: translateY(0%);
}
.navbar-wrapper .navbarToggler {
    position: absolute;
    top: 20px;
    right: 20px;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
}
.nav-list > li {
    display: flex;
    justify-content: center;
}
.nav-list > li a {
    font-size: 40px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}
.nav-list > li a:hover {
    color: #cc1118;
}
.nav-list > li.active > a {
    color: #cc1118;
}
/* Header :end */

/* Home banner :start */
.homebanner-owl {
    width: 100%;
    height: 920px;
}
.homebanner-owl .owl-stage-outer {
    width: 100%;
    height: 100%;
}
.homebanner-owl .owl-stage-outer .owl-stage {
    width: 100%;
    height: 100%;
}
.homebanner-owl .owl-stage-outer .owl-stage .owl-item {
    width: 100%;
    height: 100%;
}
.homebanner-owl .owl-stage-outer .owl-stage .owl-item .homebanner-block {
    width: 100%;
    height: 100%;
}
.homebanner-owl .homban-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.homebanner-owl .hbanner-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.homebanner-owl .hbanner-caption .hbcap-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.homebanner-owl .hbanner-caption .hbcap-inner h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
}
.homebanner-owl .hbanner-caption .hbcap-inner p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}
.homebanner-owl .hbanner-caption .hbcap-inner .hbc-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.homebanner-owl .hbanner-caption .hbcap-inner .hbc-btns a {
    width: 120px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background-color: #cc1118;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.homebanner-owl .hbanner-caption .hbcap-inner .hbc-btns a:hover {
    background-color: #9b080d;
}
.homebanner-owl .hbanner-caption .hbcap-inner .hbc-btns a.readmorebtn {
    background-color: #0ba5de;
}
.homebanner-owl .hbanner-caption .hbcap-inner .hbc-btns a.readmorebtn:hover {
    background-color: #0a83af;
}
.homebanner-owl .owl-dots {
    width: 100%;
    max-width: 1200px;
    height: auto;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: right;
    padding: 0px 12px;
    margin: 0 auto;
}
.homebanner-owl .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 100%;
    margin: 0px 5px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.homebanner-owl .owl-dots .owl-dot:hover,
.homebanner-owl .owl-dots .owl-dot.active {
    background-color: #02bdff;
}
/* Home banner :end */

/*Testi*/


    #owl-demo .item img{
        display: block;
        width: 100%;
        height: auto;
    }



/* footer  :start */
footer .ftop {
    padding: 50px 0px 20px;
}
footer .ftop .ftop-block {
    text-align: center;
}
footer .ftop .ftop-block h3 {
    /* font-family: Muli; */
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 30px;
}
footer .ftop .ftop-block h3:first-child {
    margin-top: 0;
}
footer .ftop .ftop-block p {
    /* font-family: Muli; */
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0;
}
footer .ftop .ftop-block p a {
    font-size: inherit;
    color: inherit;
}
footer .ftop .ftop-block p a:hover {
    color: #07a8df;
}
footer .fbottom {
    border-top: 1px solid #cdcdcd;
    padding: 30px 0px;
}
footer .fbottom .fbot-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
footer .fbottom .fbot-inner .fbi-left p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}
footer .fbottom .fbot-inner .fbi-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
footer .fbottom .fbot-inner .fbi-right > h3 {
    font-size: 20px;
    margin-bottom: 0;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    background-color: #0ba5de;
    border: 2px solid transparent;
    border-radius: 100%;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li a:hover {
    color: #0ba5de;
    border-color: #0ba5de;
    background-color: transparent !important;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.fb a {
    background-color: #1877f2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.fb a:hover {
    color: #1877f2;
    border-color: #1877f2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.tweet a {
    background-color: #1da1f2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.tweet a:hover {
    color: #1da1f2;
    border-color: #1da1f2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.linkin a {
    background-color: #2867b2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.linkin a:hover {
    color: #2867b2;
    border-color: #2867b2;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.insta a {
    background-color: #e1306c;
}
footer .fbottom .fbot-inner .fbi-right .fsocialmedia li.insta a:hover {
    color: #e1306c;
    border-color: #e1306c;
}
/* footer  :end */

/* subscribe section :start */
.subscribe-section {
    background-color: #07a8df;
    padding: 30px 0px;
}
.subsec-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.subsec-inner .ssi-left h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-transform: uppercase;
}
.subsec-inner .ssi-left p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}
.subscribe-form {
  display: flex;
  align-items: center;
  position: relative;
}

.subscribe-form .res_message {
  display: block !important;
  position: absolute;
  bottom: -24px;
  color: #fff !important;
  font-size: 14px;
  padding-left: 21px;
}
.subscribe-form .form-control {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px 0px 0px 10px;
    padding: 17px 20px;
    width: 380px;
}
.subscribe-form .btn-subscribefrm {
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background-color: #cc1118;
    border: 0;
    border-radius: 0px 10px 10px 0px;
    padding: 17px 33px;
}
.subscribe-form .btn-subscribefrm:hover {
    background-color: #b1030a;
}
/* subscribe section :end */

/* get in touch :start */
.getintouch-section {
    padding: 100px 0px 70px;
    background-color: #f8f6f7;
    position: relative;
}
.getintouch-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/getintouch--bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.getintouch-section .gitsec-left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.getintouch-form .getintouch-btn {
    width: 200px;
    height: 55px;
}
/* get in touch :end */

/* what cilent say :start */
.cilentsay-section {
    padding: 90px 0px;
    position: relative;
}
.cilentsay-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 90px;
    left: 0;
    right: 0;
    background-image: url('../images/cilentsay-bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.cilentsay-section .csaysec-left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.clientsays-item {
    background-color: #ffffff;
    border: 3px solid #e6e6e6;
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 75px;
}
.clientsays-item .csi-head {
    text-align: center;
    margin-bottom: 30px;
}
.clientsays-item .csi-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
}
.clientsays-item .csi-head h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
}
.clientsays-item .csi-head p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
.clientsays-item .csi-body {
    text-align: center;
}
.clientsays-item .csi-body p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
.clientsays-item .csi-image {
    margin-top: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clientsays-item .csi-image > div {
    position: absolute;
    background-color: #ffffff;
    border: 2px solid #e6e6e6;
    padding: 15px 15px;
    border-radius: 100%;
    margin-bottom: -75px;
}
.clientsays-item .csi-image > div img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}
/* what cilent say :end */


/* our services section :start */
.ourservices-section {
    padding: 90px 0px;
}
.ourservices-section .ourservices-head {
    margin-bottom: 100px;
}

.services-block .serblock-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    padding: 40px 40px;
    box-sizing: border-box;
    background: #ffffff;
    background-clip: padding-box;
    border: 15px solid  transparent;
    border-radius: 100%;
}
.services-block .serblock-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -15px;
    border-radius: inherit;
    background: rgb(11,165,222);
    background: -moz-linear-gradient(310deg, rgba(11,165,222,1) 30%, rgba(11,165,222,0) 30%, rgba(11,165,222,0) 70%, rgba(11,165,222,1) 70%);
    background: -webkit-linear-gradient(310deg, rgba(11,165,222,1) 30%, rgba(11,165,222,0) 30%, rgba(11,165,222,0) 70%, rgba(11,165,222,1) 70%);
    background: linear-gradient(310deg, rgba(11,165,222,1) 30%, rgba(11,165,222,0) 30%, rgba(11,165,222,0) 70%, rgba(11,165,222,1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0ba5de",endColorstr="#0ba5de",GradientType=1);
    filter: grayscale(100%) opacity(30%);

    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.services-block .serblock-image .sb-inner {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 100%;
}
.services-block .serblock-image .sb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services-block .serblock-text {
    text-align: center;
    margin-top: 35px;
}
.services-block .serblock-text h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    text-transform: uppercase;
}
.services-block:hover .serblock-image::before {
    filter: grayscale(0%) opacity(100%);
}

.serblock-text ul li {
  list-style: none;
  display: inline-block;
  padding: 10px;
  border: solid 1px #ddd;
  margin: 5px;
}
.serblock-text  ul {
padding-left: 0px;
}

.services-block .owl-carousel, .owl-carousel .owl-item {
    padding: 11px;
}


    #owl-demo .item img{
        display: block;
        width: 100%;
        height: auto;
    }


/* our services section :end */

/* vission mission :start */
.vismis-section {
    padding: 40px 0px;
    position: relative;
}
.vismis-section::before {
    content: '';
    background-image: url('../images/vismis-bg-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 315px;
    height: 560px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(70%);
    z-index: -1;
}
.vismis-section::after {
    content: '';
    background-image: url('../images/vismis-bg-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 110px;
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(30%);
    z-index: -1;
}
.vismis-section .vm-block {
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color: #0ba5de;
    padding: 50px 50px 50px 15px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
}
.vismis-section .vm-block.mission {
    background-color: #cc1118;
}
.vismis-section .vm-block .vmicon {
    flex-shrink: 0;
    flex-grow: 0;
}
.vismis-section .vm-block .vmtxt h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.vismis-section .vm-block .vmtxt p {
    font-size: 17px;
    font-weight: 400;
}
/* vission mission :end*/

/* partners section :start */
.partners-section {
    padding: 60px 0px;
}
.partners-section .parsec-inner {
    padding: 10px 0px;
    border-top: 2px dashed #808080;
    border-bottom: 2px dashed #808080;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
/* partners section :end */

/* who we are section :start */
.whoweare-section {
    padding: 80px 0px 0px 0px;
}
.whoweare-section .wwasec-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.whoweare-section .wwasec-left h3 {
    text-align: right;
}
.whoweare-section .wwasec-middle {
    width: 100%;
    height: 100%;
}
.whoweare-section .wwasec-middle .wwa-image {
    border: 15px solid #dfdfdf;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whoweare-section .wwasec-middle .wwa-image .wwaimg-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
}
.whoweare-section .wwasec-middle .wwa-image .wwaimg-inner > div {
    position: relative;
}
.whoweare-section .wwasec-middle .wwa-image .wwaimg-inner > div::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 50%;
    height: 20px;
    background-color: #cc1118;
    z-index: -1;
    transform: translateX(15px);
}
.whoweare-section .wwasec-middle .wwa-image .wwaimg-inner > div::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 50%;
    height: 20px;
    background-color: #0ba5de;
    z-index: -1;
    transform: translateX(-15px);
}
.whoweare-section .wwasec-middle .wwa-image .wwaimg-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.whoweare-section .wwasec-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.whoweare-section .wwasec-right h3 {
    font-size: 43px;
    font-weight: 300;
    margin-bottom: 40px;
}
.whoweare-section .wwasec-right h3 b {
    font-weight: 700;
}
.whoweare-section .wwasec-right h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.whoweare-section .wwasec-right p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}
.whoweare-section .wwasec-right .readmore-btn {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
}
.whoweare-section .wwasec-right .readmore-btn img {
    padding-left: 20px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.whoweare-section .wwasec-right .readmore-btn:hover {
    color: #cc1118;
}
.whoweare-section .wwasec-right .readmore-btn:hover img {
    padding-left: 10px;
    padding-right: 10px;
}
/* who we are section :end */

/* float button :start */
.floatbtn {
	position: fixed;
	width: 50px;
	height: 50px;
	top: 40%;
	right: 0px;
    transform: translateY(-50%);
    color: #ffffff;
    background-color: #cc1118;
	border-radius: 10px 0px 0px 10px;
	text-align:center;
    box-shadow: 0px 0px 25px -10px #000000;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.floatbtn:hover {
    color: #ffffff;
    background-color: #000000;
}
/* float button :end */

/*banner Inner*/
.banner-inner{}
.banner-inner h1, .banner-inner h3, .banner-inner h6 {
  margin: 0;
  color:#000;
  text-align: center;
}
.banner-inner p{
  margin: 0;
  color:#000;
  text-align: center;
  font-size:14px;
}
.banner-inner p a{
  margin: 0;
  color:#000;
  text-align: center;
}
.banner-inner p a.active{
  margin: 0;
  color:#0ba5de;
  text-align: center;
}


.banner-inner {
	margin-top:100px;
	min-height: 354px;
	color: white;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(file:///E|/WORKS/BEE%20THE%20LIFE/WEB-BEELIFE/bee-life-support/images/banner.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
}

/*banner Inner*/

/*about six points*/
.media-body h4 {
    min-height: 71px;
    font-size: 20px;
}
.media i {
    width: 75px;
    display: block;
    height: 75px;
}
/*about six points*/

/* career :end */
.career-section {
    padding: 100px 0px 70px;
    background-color: #f8f6f7;
    position: relative;
}
.career-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/career--bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.career-section .gitsec-left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.career-section .getintouch-btn {
    width: 200px;
    height: 55px;
}
/* career :end */


/* career form :start */
file-upload-wrapper {
  $defaultColor: #4daf7c;
  $height: 60px;
  
  position: relative;
  width: 100%;
  height: $height;
  
  &:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: $height - 20px;
    line-height: $height - 20px;
    color: #999;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
  }
  
  &:before {
    content: 'Upload';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 60px;
    background: $defaultColor;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: $height;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
  }
  
  &:hover {
    &:before {
      background: darken($defaultColor, 10%);
    }
  }
   input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: $height - 20px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }
}

select {
  /* Reset Select */
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: #fff;
  background-color: var(--darkgray);
  background-image: none;
  cursor: pointer;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.select {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  background-color: #34495e;
  transition: .25s all ease;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
  color: #f39c12;
}
/* career form :end */

.error {
    color: #d60e0e;
}
.subscribe-form label#email-error {
  position: absolute;
  margin-top: 79px;
  bottom: -24px;
  color: #fff !important;
  font-size: 14px;
  padding-left: 21px;
}
@media (min-width: 300px) and (max-width: 768px) {
    .subscribe-form label#email-error {
        position: absolute;
        margin-top: 23%;
        margin-right: 30%;
    }
}