:root{

    --backgroundColor: #009299;
    --bgLightColor: #f9f9f9;
    --textColor: #ffffff;
    --buttonColor: #ff8728;
    --blackColor: #000000;
    --lightblackColor: #343434;
    --grayColor: #cccccc;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--backgroundColor);
}

a:hover {
  color: var(--buttonColor);
  text-decoration: none;
}

.preload {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.preload:before {
    content: "";
    width: 50px;
    height: 50px;
    --c:no-repeat linear-gradient(#ff8728 0 0);
    background: var(--c),var(--c),var(--c),var(--c);
    background-size: 25px 25px;
    animation: preloadanimation 1.5s infinite cubic-bezier(0.3,1,0,1);
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
}

@keyframes preloadanimation {
   0%   {background-position: 0    0,100% 0   ,100% 100%,0 100%}
   33%  {background-position: 0    0,100% 0   ,100% 100%,0 100%;width:75px;height: 75px}
   66%  {background-position: 100% 0,100% 100%,0    100%,0 0   ;width:75px;height: 75px}
   100% {background-position: 100% 0,100% 100%,0    100%,0 0   }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--buttonColor);
  color: var(--textColor);
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: var(--backgroundColor);
  color: var(--textColor);
}

#header {
  background: var(--textColor);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

#header .logo a {
  color: var(--backgroundColor);
}

#header .logo img {
  max-height: 64px;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
  line-height: 40px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--backgroundColor);
  transition: 0.3s;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  transition: ease-in-out 0.1s;
  font-size: 16px;
  color: var(--buttonColor);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: var(--textColor);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: var(--blackColor);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--backgroundColor);
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--buttonColor);
}

.mobile-nav {
    position: fixed;
    top: 60px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    overflow-y: auto;
    background: var(--textColor);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--backgroundColor);
    padding: 10px 20px;
    font-weight: 700;
    outline: none;
    text-transform: uppercase;
    font-size: 16px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--buttonColor);
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(7, 25, 33, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.btn-custom {
    color: var(--buttonColor) !important;
    background-color: var(--textColor);
    box-shadow: 0px 0px 5px 0px #cccccc;
    border: none !important;
    font-weight: 700;
    padding: 10px 25px;
    font-size: 18px;
}

.btn-custom2 {
    color: var(--textColor) !important;
    background-color: var(--buttonColor);
    box-shadow: 0px 0px 5px 0px #cccccc;
    border: none !important;
    font-weight: 700;
    padding: 10px 25px;
    font-size: 18px;
}

.main {
  padding-top: 84px;
}

.btn-custom:hover {
    color: var(--textColor) !important;
    background-color: var(--buttonColor);
}

.btn-custom2:hover {
    color: var(--buttonColor) !important;
    background-color: var(--textColor);
}

#home {
  background: var(--backgroundColor);
  min-height: 600px;
}

#home h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--textColor);
}

#home p {
  color: var(--textColor);
  margin: 10px 0 0 0;
  font-size: 18px;
}

#home img {
  width: 100%;
  height: 100%;
}

section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f4fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0f394c;
}

.section-title p {
  margin-bottom: 0;
}

.hometalktous {
    background-color: var(--textColor);
}

.homeaboutus h2, .portfolio h2 {
    color: var(--backgroundColor);
}

.homeaboutus .aboutbox {
    box-shadow: 0px 0px 10px 0px var(--grayColor);
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    min-height: 400px;
}

.homeaboutus .aboutbox i {
    font-size: 52px;
    color: var(--buttonColor);
}

.homeaboutus .title {
    color: var(--blackColor);
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
}

.homeaboutus .description {
    margin-top: 20px;
    color: var(--blackColor);
    min-height: 100px;
    opacity: 0.7 !important;
}

.homeaboutus a {
    color: var(--backgroundColor);
    font-weight: 700;
}

.homeaboutus a:hover {
    color: var(--buttonColor);
}

.hometalktous {
    background-color: var(--backgroundColor);
}

.hometalktous h2 {
    color: var(--textColor);
}

.hometalktous p {
    color: var(--textColor);
    font-size: 18px;
}

.hometalktous .form-control {
    margin-bottom: 30px;
    height: 50px;
}

.hometalktous .custom-control-label {
    color: var(--textColor);
    font-size: 18px;
}

.featuresimage {
    width: 300px;
    height: auto;
}

.homeaboutus .featuremainbox {
    margin-bottom: 30px;
}


.homeaboutus .imagebox {
    text-align: center;
}

.homeaboutus .featuresbox {
    margin-top: 10px;
}

.homeaboutus .contentleft {
    text-align: left;
}

.homeaboutus .contentright {
    text-align: right;
}

.featuresbox .title {
    color: var(--buttonColor);
    font-weight: 700;
    font-size: 18px;
    margin: 0px;
    margin-bottom: 10px;
}

.featuresbox .description {
    margin: 0px;
    color: var(--blackColor);
    opacity: 0.7 !important;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    min-height: auto;
    text-align: justify;
}

#footer {
    background-color: var(--textColor);
    padding: 20px;
    color: var(--backgroundColor);
    font-size: 16px;
}

#footer .copyright {
    text-align: center;
    color: var(--backgroundColor);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .homeaboutus .aboutbox {
        margin: 0px;
    }
}

@media (max-width: 720px) {
    .homeaboutus .aboutbox {
        margin: 10px;
    }

    .homeaboutus .leftbox {
        text-align: center;
    }

    .homeaboutus .contentleft {
        text-align: left;
    }

    .homeaboutus .contentright {
        text-align: left;
    }

    #howtoaccordion .card-body img {
        max-width: 200px;
        height: auto !important;
    }
}

.portfolio {
    background: var(--textColor);
}

.img-portfolio {
    width: 50%;
    margin-top: 30px;
}


.portfolio h4 {
    color: var(--buttonColor);
}


.portfolio ul {
    padding: 0px;
    list-style: none;
}

.portfolio ul li {
    color: var(--blackColor);
    font-size: 18px;
    margin-top: 10px;
    position: relative;
    margin-left: 20px;
}

.portfolio ul li::before {
    content: "";
    font-weight: bold;
    display: inline-block;
    background-color: var(--buttonColor);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 38%;
    border-radius: 50px;
}

.portfolio p {
    color: var(--backgroundColor);
    font-size: 18px;
    margin-top: 30px;
    font-weight: 600;
}

.portfolio a {
    color: var(--buttonColor);
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
}

.portfolio a:hover {
    color: var(--backgroundColor);
}

.portfoliotalktous {
    background: var(--backgroundColor);
    padding: 40px 0px;
}

.portfoliotalktous p {
    color: var(--textColor);
    font-size: 18px;
    font-weight: 700;
}

.hometalktous .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--buttonColor) !important;
}

.hometalktous .custom-checkbox .custom-control-input:checked:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.hometalktous .custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}
.hometalktous .custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
    background-color: #C8FFC8; 
}

#projectdetails {
    background: var(--backgroundColor);
    min-height: 600px;
}

#projectdetails h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--textColor);
}

#projectdetails h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--buttonColor);
}

#projectdetails p {
    color: var(--textColor);
    margin: 10px 0 0 0;
    font-size: 18px;
}

#projectdetails span {
    border-right: .10em solid;
    animation: caret 1s steps(1) infinite;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}

.testimonial .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--backgroundColor);
    margin-bottom: 5px;
}

.testimonial .section-title p {
    color: var(--buttonColor);
    font-size: 18px;
}

.testimonial .aboutbox {
    box-shadow: 0px 0px 10px 0px var(--grayColor);
    border-radius: 10px;
    margin: 25px;
    padding: 20px;
}

.testimonial .aboutbox img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.testimonial .aboutbox .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--backgroundColor);
    margin-top: 10px;
}

.testimonial .aboutbox .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--buttonColor);
    margin-top: 10px;
}

.testimonial .aboutbox hr {
    background-color: var(--backgroundColor);
    opacity: 0.7;
    height: 1.5px;
    width: 90%;
}

.testimonial .aboutbox p {
    text-align: justify;
    color: var(--backgroundColor);
    font-weight: 600;
}

.successstory .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--backgroundColor);
    margin-bottom: 5px;
}

.successstory .section-title p {
    color: var(--buttonColor);
    font-size: 18px;
}

.successstory .aboutbox {
    box-shadow: 0px 0px 10px 0px var(--grayColor);
    border-radius: 10px;
    margin: 25px;
    padding: 15px;
    display: flex;
}

.successstory .aboutbox img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 10px;
}

.successstory .aboutbox h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--backgroundColor);
    margin: 5px;
}

.successstory .aboutbox .govname {
    font-size: 18px;
    font-weight: 700;
    color: var(--buttonColor);
    margin-top: 10px;
    display: flex;
}

.contactus {
    background-color: var(--backgroundColor);
}

.contactus h1 {
    color: var(--textColor);
    font-size: 40px;
    font-weight: 700;
}

.contactus p {
    color: var(--textColor);
    font-size: 18px;
    margin-bottom: 5px;
}

.contactusform h6 {
    color: var(--backgroundColor);
    font-weight: 700;
}

.contactusform p {
    color: var(--backgroundColor);
    text-align: justify;
    margin-bottom: 40px;
}

.contactusform .form-control {
    height: 40px;
    border: 2px solid var(--backgroundColor);
    font-size: 16px;
    font-weight: 400;
}

.contactusform .form-control:focus {
    box-shadow: none;
}

.contactusform .form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
}

.contactusform .custom-control-label {
    color: var(--backgroundColor);
    font-size: 16px;
}

.contactusform .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--backgroundColor) !important;
}

.contactusform .custom-checkbox .custom-control-input:checked:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.contactusform .custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}
.contactusform .custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
    background-color: var(--backgroundColor); 
}

.contactusform .btn-custom {
    background-color: var(--backgroundColor);
    color: var(--textColor) !important;
}

.contactusform .btn-custom:hover {
    background-color: var(--buttonColor);
    color: var(--textColor) !important;
}

.contactussocial {
    background-color: var(--backgroundColor);
    padding: 0px;
}

.contactussocial ul {
    padding: 0;
    list-style: none;
}

.contactussocial ul li {
    display: inline-block;
}

.contactussocial ul li a {
    color: var(--textColor);
    font-size: 52px;
    margin: 10px 20px;
}

.contactussocial ul li a:hover {
    color: var(--buttonColor);
}

#myprofile {
    background: var(--backgroundColor);
    min-height: 100vh;
}

#myprofile .membernumberbox {
    background: var(--textColor);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #adb5bd;
}

#myprofile .membernumberbox p {
    margin: 10px 0 20px 0;
    font-size: 18px;
}

#myprofile .membernumberbox label {
    color: var(--backgroundColor);
    font-weight: 600;
}

#myprofile .otpbox {
    background: var(--textColor);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #adb5bd;
}

#myprofile .otpbox p {
    margin: 10px 0 20px 0;
    font-size: 18px;
}

#myprofile .otpbox label {
    color: var(--backgroundColor);
    font-weight: 600;
}

#myprofile .memberdetailbox {
    background: var(--textColor);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #adb5bd;
}

#myprofile .memberdetailbox p {
    margin: 10px 0 20px 0;
    font-size: 18px;
}

#myprofile .memberdetailbox label {
    color: var(--backgroundColor);
    font-weight: 600;
}

.eventmemphoto {
    position: relative;
    margin-bottom: 20px;
}

.eventmemphoto img {
    width: 200px;
    height: 200px;
}

.eventmemphoto .img-pin {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -25px;
    left: 46%;
    right: 46%;
    background-color: #ffffff;
    border-radius: 50px;
}

.howto {
    background: var(--backgroundColor);
    padding: 40px 0px;
    min-height: 100vh;
}

#howtoaccordion {
    background-color: var(--textColor);
}

#howtoaccordion .fa {
    position: absolute;
    right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}
#howtoaccordion .card-header {
    background-color: var(--buttonColor);
    padding: 10px 5px;
}

#howtoaccordion button, #howtoaccordion button:hover, #howtoaccordion button:focus{
    text-decoration: none;
    box-shadow: none;
    text-align: left;
    color: var(--textColor);
    font-weight: 700;
    font-size: 16px;
}

.awardsnomination {
    background-color: var(--backgroundColor);
    min-height: 100vh;
    height: 100%;
}

.awardsnomination .section-title {
    padding-bottom: 10px;
}

.awardsnomination .section-title h2 {
    color: var(--textColor);
}

.awardsnomination .form-group .label {
    font-weight: 600;
    color: var(--textColor);
}

.awardsnomination .form-control {
    min-height: 45px;
    margin-bottom: 20px;
}

.awardsnomination textarea {
    min-height: 100px !important;
}

.hideme {
    display: none;
}