@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/ProximaNova-Regular.otf);
}
@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/Proxima Nova Bold.otf);
}
@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/Proxima Nova Extrabold.otf);
}
@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/Proxima Nova Black.otf);
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
a, a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
:root {
  --border-color: #0997bf;
}
body {
  overflow-x: hidden;
  font-family: Proxima Nova;
  scroll-behavior: smooth;
  background: #1c1a1a;
}
.container{
  max-width: 1200px;
}
.index-sec1 {
  background: #181818 url(../images/screen-bg.jpg) no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.logo img {
  max-width: 500px;
  object-fit: cover;
  object-position: center;
}
.f-bottomBar {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  bottom: 2%;
}
/** Create Account Page CSS Start
**********************************/
.createAccount-sec .left-col {
  background: #181818 url(../images/screen-bg.jpg) no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.createAccount-sec .left-col img {
  max-width: 500px;
  object-fit: cover;
  object-position: center;
}
.createAccount-sec .right-col {
  background: #181818;
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.createAccount-sec .right-wrap {
  max-width: 420px;
}
.boldHeading {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}
.paragraph {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.cta-btn {
  background: linear-gradient(0deg, rgba(242,140,70,0.7175245098039216) 0%, rgba(53,144,160,1) 82%);
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: none;
  outline: none;
  transition: all 0.5s ease-in-out;
  width: 325px;
  height: 60px;
}
.cta-btn:hover {
  color: #fff;
  background: linear-gradient(0deg, rgba(53,144,160,1) 30%, rgba(242,140,70,1) 88%);
}
.createAccount-sec .right-col .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 250px;
  margin: 30px auto 0;
}
.createAccount-sec .right-col .icons a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: transparent;
  transition: all 0.3s ease-in-out;
}
.createAccount-sec .right-col .icons a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: #0997bf;
  border-left-color: #0997bf;
  transition: all 0.5s ease-in-out;
}
.createAccount-sec .right-col .icons a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid;
  border-bottom-color: #ea7424;
  border-right-color: #ea7424;
  transition: all 0.5s ease-in-out;
}
.createAccount-sec .right-col .icons a span {
  font-size: 22px;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea7424;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.createAccount-sec .right-col .icons a span i {
  transition: all 0.3s ease-in-out;
}
.createAccount-sec .right-col .icons a:hover:before {
  border-top-color: #ea7424;
  border-left-color: #ea7424;
}
.createAccount-sec .right-col .icons a:hover:after {
  border-bottom-color: #0997bf;
  border-right-color: #0997bf;
}
.createAccount-sec .right-col .icons a:hover span{
  background: #fff;
}
.createAccount-sec .right-col .icons a:hover span i {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.createAccount-sec .right-col .f-bottomBar {
  left: 0;
  right: 0;
}
/** Login Page CSS Start
************************************/
.login-form label {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}
.login-form {
  text-align: left;
}
.inputField-wrap {
  margin: 25px 0;
}
.input-field {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  padding: 5px;
  position: relative;
}
.input-field input {
  background: #181818 !important;
  border: none;
  outline: none;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.input-field span {
  margin-right: 15px;
  display: inline-block;
}
.showPass {
  color: #ea7424;
  margin: 0 0 0 10px !important;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.login-btn {
  margin: 40px 0;
}
.inputField-wrap .paragraph {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
.inputField-wrap .paragraph:hover {
  color: #ea7424;
}
.text-hover {
  transition: all 0.3s ease-in-out;
}
.text-hover:hover {
  color: #ea7424;
}
/** Login Page CSS End
************************************/

/** Password Recovery Page CSS Start
*************************************/
.passRec-form label {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}
.passRec-form {
  text-align: left;
}
.passRec-form .inputField-wrap {
  margin: 70px 0;
}
.passRec-form .input-field span {
  color: #181818;
}
.iti__country-list {
  max-width: 215px;
  overflow-x: hidden;
  font-size: 12px;
}
.iti {
  display: inline-block;
  width: 100%;
}
.iti__arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
}
/** Password Recovery Page CSS End
*************************************/

/** SignUp Page CSS Start
*************************************/
.signup-sec .right-wrap {
  max-width: 500px;
}
.signup-form {
  margin: 30px 0 0;
}
.multi-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signup-form input::placeholder {
  color: #fff;
}
.signup-field {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #aaaa;
  padding: 0 0 10px;
  width: 100%;
}
.agreeTerms {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.agreeTerms p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.agreeTerms p a {
  color: #ea7424;
  font-weight: 700;
}
.agreeTerms input {
  accent-color: #0997bf;
  margin-right: 15px;
}
.signup-sec .icons {
  margin: 20px auto 0 !important;
}
.signup-button {
  margin: 25px 0 15px;
}
.signup-sec .right-col .icons a {
  width: 60px;
  height: 60px;
}
.signup-sec .right-col .icons a span {
  font-size: 18px;
  width: 40px;
  height: 40px;
}
.signup-sec .f-bottomBar {
  bottom: 1%;
}
.ml-2 {
  margin-left: 20px;
}
/** SignUp Page CSS End
*************************************/

/** OTP Page CSS Start
************************************/
.otp-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 70px 0;
}
.otp-form input {
  background: #975020;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  max-width: 80px;
  height: 80px;
  max-height: 80px;
  border: none;
  outline: none;
  text-align: center;
}
/** OTP Page CSS End
************************************/

/** Create Profile Page CSS Start
************************************/
.createProfile-form {
  margin: 50px 0 0;
}
.selectOption {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #aaaa;
  width: 100%;
  padding: 0px 0 10px;
}
.settings-wrap {
    padding: 30px 50px;
}
.selectOption option {
  background: #3590a0;
}
.selectOption::placeholder {
  color: #fff;
}
textarea.selectOption {
  resize: none;
  max-height: 40px;
}
.hobbies-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0;
}
.hobbies {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(0deg, rgba(242,140,70,0.7175245098039216) 0%, rgba(53,144,160,1) 82%);
  padding: 5px 25px;
  display: inline-block;
  border-radius: 30px;
  margin: 0 10px 10px 0;
}
.switch-toggle .form-check-input {
  background-color: #767676;
  border-color: #767676;
}
.switch-toggle .form-check-input:checked {
  background-color: #0099c1;
  border-color: #0099c1;
}
.switch-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.step-button {
  margin: 50px 0 0;
}
.step1 .left-col, .step1 .right-col {
  min-height: 1250px;
}
.step4 .left-col, .step4 .right-col {
  min-height: 1900px;
}
.right-wrap2 {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.rightCol-heading {
  max-width: 420px;
  margin: 0 auto;
}
.cover-Image {
  background: url(../images/profile-cover.jpg) no-repeat;
  background-size: cover;
  min-height: 340px;
  max-height: 340px;
  position: relative;
  border-radius: 20px;
  margin-bottom: 100px;
}
.profile-image {
  max-width: 180px;
  max-height: 180px;
  min-height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(242,140,70,0.7175245098039216) 0%, rgba(53,144,160,1) 82%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -25%;
  left: 0;
  right: 0;
}
.profile-image img {
  max-width: 160px;
  max-height: 160px;
  min-height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.upload-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upload-image p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.upload-image input {
  display: none;
}
.upload-image label {
  font-size: 16px;
  border: 1px solid #767676;
  padding: 5px 40px;
  border-radius: 30px;
  color: #767676;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.upload-image label:hover {
  color: #0997bf;
  border-color: #0997bf;
}
.divider {
  border-bottom: 1px solid #767676;
  width: 100%;
  display: block;
  margin: 30px 0;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 350px;
}
.social-link a {
  font-size: 24px;
  color: #ea7424;
  transition: all 0.3s ease-in-out;
}
.social-link a:hover {
  color: #0997bf;
}
.social-link input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #767676;
    padding: 8px 5px;
    color: #fff;
    outline: 0;
}
.blue-bar {
  display: inline-block;
  width: 300px;
  height: 2px;
  background: #0997bf;
}
.profile-bio {
  max-width: 350px;
}
.profile-bio .paragraph {
  text-align: left;
}
.profile-bio textarea.signup-field {
  resize: none;
  max-height: 40px;
}
.fky-images {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.fky-images img {
  max-width: 115px;
  max-height: 120px;
  min-height: 120px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  margin: 0 0 10px;
}
.added-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  margin: 50px 0;
}
.addedImages-slider {
  max-width: 320px;
}
.addedImages-slider .item {
  max-width: 70px;
  max-height: 70px;
  min-width: 70px;
  min-height: 70px;
  border: 2px solid #ea7424;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addedImages-slider .item img {
  max-width: 60px;
  max-height: 60px;
  min-height: 60px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  filter: brightness(1.5);
}
.addedImages-slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 15%;
  width: 115%;
  margin: 0 auto;
  left: -8%;
}
.addedImages-slider .owl-nav button {
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  background: transparent !important;
  outline: none !important;
  border: none !important;
}
.step4 .f-bottomBar {
  bottom: 1%;
}
/** Create Profile Page CSS End
************************************/
/********************* Profile Screen Starts Here ****************************/
.profileWrap{
  background: #1c1a1a;
  padding: 50px;
}
.profileWrap .profileInner{
  background: #2e2d2d;
  border-radius: 50px;
  padding: 30px 50px;
}
.dashBoardTitle{
  text-align: left !important;
  margin-bottom: 20px;
}
.bannerWrap {
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    height: 100%;
    border-radius: 20px;
    background: url('../images/profile-cover.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.profile-image {
  max-width: 180px;
  max-height: 180px;
  min-height: 180px;
  margin: 0 auto 0 30px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(242,140,70,0.7175245098039216) 0%, rgba(53,144,160,1) 82%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -18%;
  left: 0;
  right: 0;
}
.profileFlag{
  max-width: 40px;
  min-width: 40px;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: absolute;
  bottom: -80px;
  left: 12%;
}
.profileDescWrap{
  margin-top: 120px;
}
.profileDesc{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profileDesc .btn-primary {
    color: #fff;
    background-color: #2e2d2d;
    border-color: #626161;
    margin: 0px 12px;
    border-radius: 30px;
    padding: 7px 15px;
    outline: 0;
}
.profileDesc .left .name {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
.profileDesc .left .name .age{
  font-size: 25px;
  color: #fff;
  font-weight: 100;
}
.profileDesc .left .designation{
  font-size: 16px;
  color: #ea7424;
}
.profileDesc .left .location-Gender{
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
.profileDesc .left .location-Gender p{
  margin-right: 20px;
  color: #aaaa;
  font-weight: 100;
  font-size: 15px;
}
.profileDesc .left .location-Gender p span{
  margin-right: 10px;
}
.profileDesc .right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.profileDesc .right button.profileActions {
  border: none;
  outline: none;
  font-size: 15px;
  color: #fff;
  padding: 10px 45px;
  margin-right: 10px;
  border-radius: 20px;
}
.profileDesc .right button.profileActions span{
  margin-right: 5px;
  font-size: 12px;
}
.blue{
  background: #0997bf;
}
.yellow{
  background: #ea7424;
}
.profileDesc .right .messageActions{
  max-width: 45px;
  min-width: 45px;
  width: 100%;
  max-height: 45px;
  min-height: 45px;
  height: 100%;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
.profileDesc .right .messageActions img{
  max-width: 18px;
  min-width: 18px;
  object-fit: cover;
  object-position: center;
}
.profileDescWrap .profileAbout{
  margin-bottom: 40px;
}
.profileDescWrap .profileAbout .title{
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.profileDescWrap .profileAbout .title::after{
  content: '';
  position: absolute;
  left: 0%;
  width: 150px;
  height: 2px;
  background: #ea7424;
  bottom: -21px;
  z-index: 1;
}
.profileDescWrap .profileAbout hr{
  background: #fff;
  position: relative;
}
.profileDescWrap .profileAbout .story {
  font-size: 16px;
  color: #aaaa;
  max-width: 950px;
}
.profileMemories .title{
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.profileMemories .title span{
  color: #ea7424;
  font-size: 12px;
  margin-left: 5px;
}
.profileMemories .profileInterests {
  border: 1px solid #aaaa;
  padding: 10px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.profileMemories .profileInterests .tags {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #fff;
  padding: 5px 15px;
  margin: 0 5px 10px;
  border-radius: 20px;
}
.profileMemories .profileInterests .tags.green{
  color: #33c0ff;
  background: #e5f7ff;
}
.profileMemories .profileInterests .tags.red{
  color: #ff3377;
  background: #ffe5ee;
}
.profileMemories .profileInterests .tags.orange{
  color: #ea7424;
  background: #ffe9e5;
}
.profileMemories .profileInterests .tags.purple{
  color: #9933ff;
  background: #f2e5ff;
}
.profileMemories .cta{
  background: #0997bf;
  border-radius: 20px;
  padding: 10px 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.profileMemories .photosAlbum{
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.profileMemories .nav-link{
  color: #fff;
  background-color: transparent !important;
}
.profileMemories .nav-link.active{
  color: #ea7424;
}
.profileMemories .photo-wrap{
  position: relative;
  overflow: hidden;
  margin-right: 30px;
  margin-bottom: 30px;
}
.profileMemories .photo-wrap img {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    height: 100%;
    min-height: 260px;
    max-height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.profileMemories .photo-wrap a {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  background: #00000078;
  color: #fff;
  border-radius: 15px;
}
/********************* Profile Screen Ends Here ****************************/









