/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Playfair+Display:400,700");
@font-face {
  font-family: 'hanskendrick';
  src: url("../plugins/fonts/hanskendrick-regular-webfont.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

body {
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #585757;
}

p, .paragraph {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  /* font-family: "hanskendrick"; */
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 80px;
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 55px;
  }
}

h2, .h2 {
  font-size: 50px;
}

@media (max-width: 767px) {
  h2, .h2 {
    font-size: 45px;
  }
}

h3, .h3 {
  font-size: 40px;
}

h4, .h4 {
  font-size: 30px;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 16px;
}

/* Button style */
.btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: .2s ease;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background: #ff6f00;
  color: #fff;
  border: 0;
}

.btn-primary:active {
  background: #ff6f00 !important;
}

.btn-primary:hover {
  background: #ff8c33;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
}

.btn-outline-light:active {
  background: #fff !important;
  color: #000000;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: #fff !important;
  color: #000000;
  border-color: #fff;
}

.btn-transparent {
  color: #ff6f00;
  border: 0;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ff8c33;
  color: #fff;
}

::selection {
  background: #ff8c33;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 40px;
  margin: -20px 0 0 -71px;
  background: white;
}

.preloader .loader .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #ff6f00;
  border-radius: 50%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
          animation: dot 2.8s infinite;
}

.preloader .loader .dots {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
          animation: dots 2.8s infinite;
}

.preloader .loader .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #ff6f00;
  border-radius: 50%;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
            transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
            transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
            transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
            transform: translateX(-31px);
  }
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover, a.text-dark:hover {
  color: #ff6f00 !important;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ababab !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ff6f00 !important;
}

.bg-secondary {
  background: #fdefe6 !important;
}

.text-primary {
  color: #ff6f00 !important;
}

.text-color {
  color: #585757;
}

.text-dark {
  color: #f9f8f8 !important;
}

.font-secondary {
  font-family: "hanskendrick" !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.form-control {
  border: 0;
  border-bottom: 1px solid #ababab;
  border-radius: 0;
  padding: 1px;
  opacity: 1;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: #ff6f00;
}

textarea.form-control {
  height: 150px;
}

.navigation {
  z-index: 9;
}

.headroom {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
  padding: 10px 40px;
  background-color: #fff;
}

@media (max-width: 575px) {
  .headroom {
    padding: 10px;
  }
}

.headroom--unpinned {
  top: -150px;
}

@media (max-width: 991px) {
  .headroom--unpinned {
    top: 0;
  }
}

.headroom--pinned {
  top: 0;
}

.navbar .nav-item .nav-link {
  padding: 20px 15px;
}

@media (max-width: 991px) {
  .navbar .nav-item .nav-link {
    padding: 10px;
  }
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 10px;
  border: 0;
  top: 100%;
  left: -10px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: center;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item:active {
  color: #fff;
  background-color: #ff6f00;
}

.search-icon {
  border: 0;
  background: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.card-img-overlay::before {
  position: absolute;
  content: "";
  /* background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.5)); */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.card-content {
  /* padding: 30px; */
  position: absolute;
  left: 0;
  right: 0;
  background-color: #1c74b9;
  bottom: 0px;
  height: 80px;
  opacity: 0.8;
}

.title-border {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 30px;
}

.title-border::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
  background: #ababab;
}

.title-border-lg {
  position: relative;
}

.title-border-lg::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 300px;
  left: -45px;
  bottom: -50px;
  background: #ababab;
}

@media (max-width: 575px) {
  .pagination {
    overflow: auto;
    white-space: nowrap;
  }
  .pagination::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
}

.pagination .page-item .page-link {
  font-family: "hanskendrick";
  font-size: 30px;
  border: 0;
  color: #585757;
}

@media (max-width: 767px) {
  .pagination .page-item .page-link {
    font-size: 16px;
  }
}

.pagination .page-item .page-link:hover {
  color: #000000;
  background-color: transparent;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  font-size: 16px;
}

.pagination .page-item.active .page-link {
  color: #000000;
  text-decoration: underline;
  background: transparent;
}

.instagram-post {
  position: relative;
}

.instagram-post::before {
  position: absolute;
  content: "Mobile App Design Concept Snapchat";
  left: 0;
  top: 222px;
  height: 35%;
  width: 100%;
  background: #1c74b9;
  opacity: 0.5;
  visibility: hidden;
  transition: .2s ease;
}

.instagram-post ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.instagram-post ul a {
  transition: .2s ease;
  font-size: 20px;
}

.instagram-post ul a:hover {
  color: #ff6f00 !important;
}

.instagram-post:hover::before {
  visibility: visible;
  opacity: 1;
}

.instagram-post:hover ul {
  visibility: visible;
  opacity: 1;
}

/* homepage 2 */
.hero-section {
  padding: 70px 0 0;
  background-image: linear-gradient(#fff 45%, #fdefe6 0);
}

.dividers {
  display: flex;
  align-items: center;
  width: 1200px;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.dividers .divider {
  border-right: 1px solid #edeef0;
  flex-basis: 50%;
  height: 100vh;
  opacity: .6;
}

.dividers .divider:first-child {
  border-left: 1px solid #edeef0;
}

.article-full-width {
  display: flex;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .article-full-width {
    flex-direction: column;
  }
}

.article-full-width .post-image {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .article-full-width .post-image {
    margin: 0 0 20px 0;
  }
}

.article-full-width .post-image img {
  height: 400px;
  width: auto;
}

@media (max-width: 767px) {
  .article-full-width .post-image img {
    height: auto;
    width: 100%;
  }
}

.article-full-width .post-content {
  width: 50%;
}

@media (max-width: 767px) {
  .article-full-width .post-content {
    width: 100%;
  }
}

.article-full-width .post-content .btn {
  padding-left: 0;
}

.article-full-width .post-meta {
  width: 250px;
}

@media (max-width: 991px) {
  .article-full-width .post-summary {
    display: none;
  }
}

@media (max-width: 767px) {
  .article-full-width .post-summary {
    display: block;
  }
}

.article-full-width.article-right {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .article-full-width.article-right {
    flex-direction: column-reverse;
  }
}

.article-full-width.article-right .post-image {
  order: 2;
  margin: 0 0 0 20px;
}

@media (max-width: 767px) {
  .article-full-width.article-right .post-image {
    margin: 0 0 20px 0;
  }
}

.article-full-width.article-right .post-content {
  order: 1;
}

.article-full-width.article-right .post-meta {
  margin-left: auto;
}

@media (max-width: 767px) {
  .article-full-width.article-right .post-meta {
    margin-left: 0;
  }
}

.article-full-width.article-right .author {
  text-align: right;
}

@media (max-width: 767px) {
  .article-full-width.article-right .author {
    text-align: left;
  }
}

.post-thumb {
  height: 400px;
}

blockquote {
  font-style: italic;
  color: #000000;
  background: #fdefe6;
  padding: 20px;
  font-weight: 600;
}

.content * {
  margin-bottom: 20px;
}

.widget {
  padding: 15px 0;
}

.widget:not(:last-child) {
  margin-bottom: 30px;
  border-bottom: 1px solid #f4f4f4;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 0;
  top: 25px;
  color: #767575;
}

.post-thumb-sm {
  max-width: 75px;
  max-height: 75px;
  overflow: hidden;
}

.tag-list li a {
  display: block;
  background: #f4f4f4;
  padding: 2px 5px;
  color: #000000;
}

.tag-list li a:hover {
  color: #ff6f00;
}

/*# sourceMappingURL=maps/style.css.map */

.bck_div {
  background: #2a2c3b;
  height: 50px;
  text-align: center;
  margin-top: 50px;
}

.footer_div {
  background: #c6c6ca;
  height: 45px;
  text-align: center;
  padding-top: 9px;
}


.search-icon {
  border: 0;
  background: transparent;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}


.btn_1 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  font-weight: 600;
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  z-index: 1;
  line-height: 3.5;
  transition: .2s ease;
}



.text_1 {
  color: #f5eeee;
  padding-top: 0px;
}

input::placeholder{
  color: gray;
  padding: 5px;
  opacity: 0.5; /* Firefox */
}



/* popup page css */

.div_1 {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 225px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  /* background-color: rgb(0,0,0); /* Fallback color */
  /* background-color: rgba(0,0,0,0.4); Black w/ opacity */ 
  background-color: #494b74;
}
/* .btn_1 {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 6px 20px;
    font-weight: 600;
    border-radius: 22px;
    border: 1px solid;
    position: relative;
    z-index: 1;
    color: #0101ff;
    transition: .2s ease;
    
} */

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 100%;
  /* height: 193px; */
  border-radius: 13px;
  /* text-align: center; */
  
  
}


.modal-content_01 {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 79%;
  /* height: 193px; */
  border-radius: 13px;
  /* text-align: center; */
  
  
}

/* The Close Button */
.close {
  color: #ffffff;
  float: right;
  background-color: #3131d2;
  font-size: 23px;
  border-radius: 66%;
  font-weight: bold;
  height: 31px;
  text-align: center;
  width: 31px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ff6f00;
  text-decoration: none;
  cursor: pointer;
}


/* popup_page_motion_designer */


.div_2 {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 225px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  /* background-color: rgb(0,0,0); /* Fallback color */
  /* background-color: rgba(0,0,0,0.4); Black w/ opacity */ 
  background-color: #494b74;
  opacity: 0.9;
}
.pop_btn_2 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  font-weight: 600;
  border-radius: 22px;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  background-color: #0000ff!important;
  color: #ffffff!important;
}

.pop_btn_2:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}

/* Modal Content */
.modal_content_01 {
  background-image: url(../images/featured-post/images.jpg);
  margin: auto;
  border-radius: 13px;
  text-align: center;
}

/* The Close Button */
.close_btn_02 {
  color: #ffffff;
  float: right;
  background-color: #3131d2;
  font-size: 23px;
  border-radius: 16px;
  font-weight: bold;
  height: 31px;
  text-align: center;
  width: 31px;
  cursor: pointer;
}

.close_btn_02:hover,
.close_btn_02:focus {
  color: #ff6f00;
  text-decoration: none;
  cursor: pointer;
}



.navigation{
  z-index: 9;
}
.headroom {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
  padding: 10px 40px;
  background-color: $white;
  @include mobile {
    padding: 10px;
  }
}

.headroom--unpinned {
  top: -150px;
}

@include desktop {
  .headroom--unpinned {
    top: 0;
  }
}

.headroom--pinned {
  top: 0;
}

.navbar {
  .nav-item {
    .nav-link {
      padding: 20px 15px;
      @include desktop {
        padding: 10px;
      }
    }
  }

  .dropdown {
    &:hover {
      .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
      }
    }

    &-menu {
      box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
      padding: 10px;
      border: 0;
      top: 100%;
      left: -10px;
      border-radius: 0;
      display: block;
      visibility: hidden;
      transition: .3s ease;
      opacity: 0;
      transform: translateY(-20px);
      background: $white;

      @include desktop {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        text-align: center;
      }

      &.show {
        visibility: hidden;

        @include desktop {
          visibility: visible;
          display: block;
        }
      }
    }
    &-item{
      &:active {
        color: #fff;
        background-color: $primary-color;
    }
    }
  }
}

.search-icon {
  border: 0;
  background: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* job page css */
.bg_clr{
  background-color: #141436;
  width: 100%;
  height: 255px;
}


.jb_02 {
  margin: auto;
  width: 55%;
  border: 2px solid #c5c3c3;
  padding: 19px 36px 16px 31px;
  border-radius: 10px;
  margin-top: -88px;
  background-color: #ffffff;
  margin-bottom: 55px;
}

.job_btn_01 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  /* font-weight: 600; */
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  z-index: auto;
  float: right;
  /* line-height: 3.5; */
  transition: .2s ease;
  background-color: #0000ff!important;
  color: #ffffff!important;
}

.job_btn_02 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  /* font-weight: 600; */
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  z-index: auto;
  /* float: right; */
  /* line-height: 3.5; */
  transition: .2s ease;
  background-color: #0000ff!important;
  color: #ffffff!important;
}



.job_btn_01:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}



 .job_btn_2:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}

.job_btn_2 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  font-weight: 600;
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  /* z-index: 1; */
 line-height: 3.5;
 background-color: #0000ff!important;
 color: #ffffff!important;
  transition: .2s ease;
}


/* Account_Edit_ Add_Experience */


.acc_btn_1 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  margin-top: -20px;
  margin-right: 77px;
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  background-color: #0000ff!important;
  float: right;
  color: #ffffff!important;
  transition: .2s ease;
}

.acc_btn_1:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}


.acc_btn_2 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  font-weight: 600;
  margin-top: -36px;
  /* margin-right: 77px; */
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  background-color: #0000ff!important;
  float: right;
 z-index: auto;
  color: #ffffff!important;
  transition: .2s ease;
}

.acc_btn_2:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}


.acc_btn_3 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-right: 77px; */
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  background-color: #0000ff!important;
 /* float: right;  */
  color: #ffffff!important;
  transition: .2s ease;
}

.acc_btn_3:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}


.acc_btn_4 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-right: 77px; */
  border-radius: 22px;
  margin: auto;
  border: 1px solid;
  position: relative;
  background-color: #0000ff!important;
 /* float: right;  */
  color: #ffffff!important;
  transition: .2s ease;
}

.acc_btn_4:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}








.acc_btm {
  text-align: center;
}




.h_txt{
  margin-left: 60px;
}

.h2_txt {
  margin-top: 42px;
}

.pro_pic {
  border: 1px solid white;
  border-radius: 145px;

}
.w3-blue {
  height: 5px;
  width: 75%;
  border-radius: 22px;
}
.w3-blue, .w3-hover-blue:hover {
  color: #fff!important;
  background-color: #2196F3!important;
}

.w3-light-grey {
  color: #000!important;
  background-color: #f1f1f1!important;
  margin-bottom: 20px;
}

.p_txt {
  text-align: center;
}


.wrk_02 {
  text-align: justify;
  padding: 10px;
  background-color:#d8edff!important;
  padding-bottom: 1px;
  /* margin-bottom: 7px; */
  /* margin-top: 0px; */
}

.wrk_01, .wrk_03 {
  text-align: justify;
  padding: 10px;
  padding-bottom: 1px;
}


.fa {
  padding: 17px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  /* margin: 5px 2px; */
  border-radius: 27px;
  display: unset !important;
}

.fa:hover {
    opacity: 0.7;
  
}



.toggle-btn {
  width: 70px;
  height: 30px;
  background: gray;
  border-radius: 30px;
  padding: 5px;
  transition: all 300ms ease-in-out;
  float: right;
}
  

  .toggle-btn > .inner-circle{
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
    }


    .toggle-btn.active{
      background: #0000ff!important;

      }


      .toggle-btn.active > .inner-circle{

      margin-left: 40px;
      }


      .popupshw {
        margin-top: -286px;
        width: 314px;
        float: right;
        text-align: left !important;
    }



    .btn-primary {
      text-align: center;
      /* width: 85px; */
      height: 32px;
      padding: 0px 8px;
      margin: auto;
      float: right;
      border-radius: 20px;
      background: #2700ff;
  }
/* 
  .fbk{
          background: url("../images/featured-post/Facebook_Logo.png");

  } */




  .chip {
    display: inline-block;
    padding: 0 12px;
    height: 35px;
    /* width: 128px; */
    font-size: 14px;
    line-height: 35px;
    border-radius: 25px;
    background-color: #f1f1f1;
    margin-bottom: 5px;
}
  
  .closebtn {
    padding-left: 10px;
    color: #888;
    font-weight: bold;
    float: right;
    /* font-size: 20px; */
    cursor: pointer;
  }
  
  .closebtn:hover {
    color: #000;
  }

    
  .intrst_chip {
    display: inline-block;
    padding: 0 5px;
    height: 25px;
    /* width: 128px; */
    font-size: 14px;
    line-height: 35px;
    border-radius: 25px;
    /* background-color: #f1f1f1; */
    margin-bottom: 0px;
}
  
  .intrst_closebtn {
    padding-left: 5px;
    color: #888;
    font-weight: bold;
    float: right;
    /* font-size: 20px; */
    cursor: pointer;
  }
  
  .intrst_closebtn:hover {
    color: #000;
  }

    
    

  .add_intrst_chip {
    display: inline-block;
    padding: 0 12px;
    height: 35px;
    /* width: 128px; */
    font-size: 14px;
    line-height: 35px;
    border-radius: 25px;
    background-color: #d8edff!important;
    margin-bottom: 5px;
}
  

.unlnk {
  text-align: center;
  float:right;
color: blue;

}


.Edit_pro {
  text-align: center;
color: blue;

}


.skill_add {
  /* background: gray; */
  border-radius: 6px;
  width: 100%;
  margin-top: 40px;
  background-color: #f1f1f1;
  color: black;
  padding: 1px;
  /* border: none; */
  border: 1px solid #c3c3c3;
}


.addskills {
  text-align: right;
color: blue;

}


  /* Add_Project_Added_Setting page */



.Add_Project_btn_1 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-top: -20px; */
  /* margin-right: 77px; */
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  background-color: #0000ff!important;
  float: right;
  color: #ffffff!important;
  transition: .2s ease;
}

.Add_Project_btn_1:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}



.discrd_btn_1 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-top: -20px; */
  margin-right: 10px;
  border-radius: 22px;
  border: 1px solid;
  position: relative;
  /* background-color: #0000ff!important; */
  float: right;
  /* color: #ffffff!important; */
  transition: .2s ease;
}

.discrd_btn_1:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}

.Add_project{
  /* margin-left: 60px; */
}



.Add_project_btn_2 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-right: 77px; */
  border-radius: 22px;
  margin: auto;
  border: 1px solid;
  position: relative;
  margin-bottom: 10px;
  background-color: #0000ff!important;
 /* float: right;  */
  color: #ffffff!important;
  transition: .2s ease;
}

.Add_project_btn_2:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}


.Slct-cover {
  padding: 6px;
  font-size: 13px;
  /* text-align: center; */
  margin-bottom: 0px;
}


select:required:invalid {
  color: gray;
}
option[value=""][disabled] {
  display: none;
}
option {
  color: black;
}


.link_add {
  /* background: gray; */
  border-radius: 6px;
  width: 100%;
  /* margin-top: 40px; */
  background-color: #f1f1f1;
  color: black;
  padding: 1px;
  /* border: none; */
  border: 1px solid #c3c3c3;
}

.linkadd {
  text-align: right;
  color: blue;
  margin-bottom: 0px;
  /* margin-left: 10px; */
  margin-right: 1px;
}


 .form-required {
  color: #f00;
}
 /* Sign Up –Other Institue */

 .institute_add {
  width: 95%;
  background-color: #f1f1f1;
  color: black;
  padding: 1px;
  border: #c3c3c3;
  margin: auto;
  /* margin-left: 58px; */
}


.row_01,.row_02,.row_03,.row_04,.row_05 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}



.institute_btn_01 {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 600;
  /* margin-right: 77px; */
  border-radius: 22px;
  position: relative;
  background-color: #0000ff!important;
 /* float: right;  */
  color: #ffffff!important;
  transition: .2s ease;
}

.institute_btn_01:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}

.popup_btm_01 {
  text-align: center;
  margin-bottom: 20px;
}

/* Modal Content */
.show01_content {
  background-image: url(../images/featured-post/images.jpg);
  margin: auto;
  border-radius: 13px;
  text-align: center;
}


.modal5-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 82%;
  pointer-events: all;
  /* height: 193px; */
  border-radius: 13px;
  /* text-align: center; */
}



.close_pop_btn {
  color: #ffffff;
  float: right;
  background-color: #3131d2;
  font-size: 23px;
  border-radius: 16px;
  font-weight: bold;
  height: 31px;
  text-align: center;
  width: 31px;
  cursor: pointer;

}

.close_pop_btn:hover,
.close_pop_btn:focus {
  color: #ff6f00;
  text-decoration: none;
  cursor: pointer;
}

.otpd {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.show01_content {
  background-image: url(../images/featured-post/images.jpg);
  margin: auto;
  border-radius: 13px;
  text-align: center;
}


.pop_btn_submit {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 20px;
  font-weight: 600;
  border-radius: 22px;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  background-color: #0000ff!important;
  color: #ffffff!important;
}

.pop_btn_submit:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}



  /* Sign Up –Choose Interest */

  .show_20 {
    display: inline-block;
    padding: 0px 12px;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #8a8a8a;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 5px;
    margin-left: 5px;
    cursor: pointer;
}

.show_20.pressed {
  background-color: #0e0ee6;
  color: white;
}

.Search_interst {
  background: white;
  border-radius: 6px;
  width: 100%;
  color: black;
  padding: 2px;
  margin-bottom: 17px;
  border: 1px solid #c3c3c3;
}


.Interest_btm {
  text-align: center;
  margin-top: 25px;
}


.Interest_btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 6px 100px;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
  background-color: #0000ff!important;
  color: #ffffff!important;
  transition: .2s ease;
}

.Interest_btn:hover {
  color:#ffffff!important;
  background-color: orangered!important;
  border-color:orangered!important;
}






.RNNXgb {
  background: #fff;
  display: flex;
  border: 1px solid #dfe1e5;
  box-shadow: none;
  height: 39px;
  border-radius: 24px;
  z-index: 3;
  margin: 0 auto;
  margin-bottom: 25px;
}

.SDkEP {
  flex: 1;
  display: flex;
  padding: 5px 4px 0 16px;
  padding-left: 14px;
}

.iblpc {
  display: flex;
  align-items: center;
  padding-right: 6px;
  margin-top: -7px;
}

.hsuHs {
  margin: auto;
}

.iblpc span {
  display: none;
}

.wFncld {
  color: #9AA0A6;
  height: 20px;
  width: 20px;
}

.z1asCe {
  display: inline-block;
  fill: currentColor;
  height: 24px;
  line-height: 24px;
  position: relative;
  width: 24px;
}

.a4bIc {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.pR49Ae {
  color: transparent;
  flex: 100%;
  white-space: pre;
  height: 34px;
}

.gsfi, .lst {
  font: 16px arial,sans-serif;
  line-height: 34px;
  height: 34px !important;
}


.gLFyf {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: rgba(0,0,0,.87);
  word-wrap: break-word;
  outline: none;
  display: flex;
  flex: 100%;
  -webkit-tap-highlight-color: transparent;
  margin-top: -37px;
  height: 34px;
  font-size: 16px;
}

.dRYYxd {
  display: flex;
  flex: 0 0 auto;
  margin-top: -5px;
  align-items: stretch;
  flex-direction: row;
}

.Tg7LZd {
  flex: 0 0 auto;
  padding-right: 13px;
}

.Tg7LZd {
  height: 44px;
  width: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}
.show_card_show {
    -moz-box-shadow: 0 0 5px 5px #888;
    -webkit-box-shadow: 0 0 5px 5px#888;
}

.show_card_show {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.bTndnw {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 6px 20px;
    /* font-weight: 600; */
    border-radius: 22px;
    border: 1px solid;
    position: relative;
    z-index: auto;
    float: right;
    /* line-height: 3.5; */
    transition: .2s ease;
    background-color: #0000ff!important;
    color: #ffffff!important;
}
.btn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: .2s ease;
}

.mb-3, .my-3 {
    margin-bottom: 0rem!important;
}

select:required:invalid {
    color: gray;
}
.conTrol {
    border: 1px solid #ababab;
    border-radius: 8px;
    padding: 6px;
    opacity: 1;
}

.ShwnG {
    background: #fff;
    display: flex;
    border: 1px solid #dfe1e5;
    box-shadow: none;
    height: 39px;
    border-radius: 24px;
    z-index: 3;
    margin: 0 auto;
    margin-bottom: -15px;
}

.QaStn {
    flex: 1;
    display: flex;
    padding: 5px 4px 0 16px;
    padding-left: 14px;
}

.TgH {
    margin: auto;
}

.Bswt {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.bc49Ae {
    color: transparent;
    flex: 100%;
    white-space: pre;
    height: 34px;
}

.gsTfi, .lst {
    font: 16px arial,sans-serif;
    line-height: 34px;
    height: 34px !important;
}

.Qbcda {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.87);
    word-wrap: break-word;
    outline: none;
    display: flex;
    flex: 100%;
    -webkit-tap-highlight-color: transparent;
    margin-top: -37px;
    height: 34px;
    font-size: 16px;
}

.gsTfi, .lst {
    font: 16px arial,sans-serif;
}
.AtxkQ {
    display: flex;
    flex: 0 0 auto;
    margin-top: -5px;
    align-items: stretch;
    flex-direction: row;
}
.sQcahw {
    height: 44px;
    width: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 0;
}

.sQcahw {
    flex: 0 0 auto;
    padding-right: 13px;
}

.Zwmfw {
    display: inline-block;
    fill: currentColor;
    height: 24px;
    line-height: 24px;
    position: relative;
    width: 24px;
}

.txtln {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.bclr {
    background-color: #141436;
    width: 100%;
    height: 255px;
}

.jbdtls {
    margin: auto;
    width: 75%;
    border: 2px solid #c5c3c3;
    padding: 25px;
    border-radius: 10px;
    margin-top: -88px;
    background-color: #ffffff;
    margin-bottom: 55px;
}

.jbshw {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.jbDtls01 {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 6px 20px;
    /* font-weight: 600; */
    border-radius: 22px;
    position: relative;
    z-index: auto;
    float: right;
    /* line-height: 3.5; */
    transition: .2s ease;
    background-color: #0000ff!important;
    color: #ffffff!important;
}

.jbDtls02 {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 6px 20px;
    border-radius: 22px;
    position: relative;
    z-index: auto;
    float: right;
    transition: .2s ease;
    color: #0000ff !important;
    border: 1px solid;
}

.fa {
    padding: 17px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    /* margin: 5px 2px; */
    border-radius: 27px;
    display: unset !important;
}

.jbshwdn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 6px 20px;
    /* font-weight: 600; */
    border-radius: 22px;
    border: 1px solid;
    position: relative;
    z-index: auto;
    /* float: right; */
    /* line-height: 3.5; */
    transition: .2s ease;
    background-color: #0000ff!important;
    color: #ffffff!important;
}

.jbDn {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 22px;
    border: 1px solid;
    position: relative;
    z-index: auto;
    /* float: right; */
    /* line-height: 3.5; */
    transition: .2s ease;
    background-color: #0000ff!important;
    color: #ffffff!important;
}

.jbpic {
    width: 80px;
    height: 80px;
}

.rwshw, .swdc {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grPc {
    margin-top: -9px;
    padding-right: 0px !important;
    padding-left: 12px;
}

.pckicn {
    width: 50px;
    height: 50px;
    border-radius: 40px;
}

.text {
  color: white;
  font-size: 10px;
  position: absolute;
  left: 5px;
  top: 5px;
}









