/**
 *
 * Apply Here your Custom CSS
 *
*/

body {
	
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --primary-color: #e84545;
  --primary-color-rgb: 232, 69, 69;
  --secondary-color: #32353a;
  --secondary-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

.q-page {
  *overflow: hidden;
  background-color: transparent;
}

.fluidMedia {
    position: relative;
    padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.fluidMedia iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color:blue; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 80px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* laoder css */
.pageloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  background-color: #143be0;
  color: #fff
}

.loader-logo .logo {
  background-color: #516fef;
  height: 80px;
  width: 80px;
  line-height: 80px;
  font-size: 50px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  margin-right: 20px;
  text-align: center;
  vertical-align: middle;
  top: 45vh;
  position: relative
}

.loader-logo .logo .loader-roller {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0
}

.loader-logo .logo .loader-roller div:after {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.6)
}

.loader-logo .logo>span {
  position: absolute;
  top: 0;
  line-height: 25px;
  vertical-align: middle;
  left: auto;
  right: -5px;
  margin: 0 auto;
  font-size: 12px;
  border-radius: 15px;
  width: 24px;
  background-color: #fff;
  color: #ffc107
}

.loader-logo .logo>span:nth-child(2) {
  position: absolute;
  top: 0;
  line-height: 25px;
  vertical-align: middle;
  left: auto;
  right: -5px;
  margin: 0 auto;
  font-size: 12px;
  border-radius: 15px;
  width: 24px;
  background-color: #fff;
  color: #ffc107;
  animation: opacityhide 5s infinite linear;
  -webkit-animation: opacityhide 5s infinite linear;
  -moz-animation: opacityhide 5s infinite linear;
  -ms-animation: opacityhide 5s infinite linear
}

.loader-logo .logo-text {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
  line-height: 1;
  margin: -4px 0 0 0;
  font-weight: 400
}

.loader-logo .logo-text span {
  font-size: 40px;
  line-height: 1;
  display: block
}

.loader-logo .logo-text small {
  font-size: 20px;
  line-height: 1;
  opacity: 0.6
}

.loader-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px
}

.loader-roller div {
  animation: loader-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation: loader-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -moz-animation: loader-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -ms-animation: loader-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px
}

.loader-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px
}

.loader-roller div:nth-child(1) {
    animation-delay: -0.036s;
    -webkit-animation-delay: -0.036s;
    -moz-animation-delay: -0.036s;
    -ms-animation-delay: -0.036s
}

.loader-roller div:nth-child(1):after {
    top: 63px;
    left: 63px
}

.loader-roller div:nth-child(2) {
    animation-delay: -0.072s;
    -webkit-animation-delay: -0.072s;
    -moz-animation-delay: -0.072s;
    -ms-animation-delay: -0.072s
}

.loader-roller div:nth-child(2):after {
    top: 68px;
    left: 56px
}

.loader-roller div:nth-child(3) {
    animation-delay: -0.108s;
    -webkit-animation-delay: -0.108s;
    -moz-animation-delay: -0.108s;
    -ms-animation-delay: -0.108s
}

.loader-roller div:nth-child(3):after {
    top: 71px;
    left: 48px
}

.loader-roller div:nth-child(4) {
    animation-delay: -0.144s;
    -webkit-animation-delay: -0.144s;
    -moz-animation-delay: -0.144s;
    -ms-animation-delay: -0.144s
}

.loader-roller div:nth-child(4):after {
    top: 72px;
    left: 40px
}

.loader-roller div:nth-child(5) {
    animation-delay: -0.18s;
    -webkit-animation-delay: -0.18s;
    -moz-animation-delay: -0.18s;
    -ms-animation-delay: -0.18s
}

.loader-roller div:nth-child(5):after {
    top: 71px;
    left: 32px
}

.loader-roller div:nth-child(6) {
    animation-delay: -0.216s;
    -webkit-animation-delay: -0.216s;
    -moz-animation-delay: -0.216s;
    -ms-animation-delay: -0.216s
}

.loader-roller div:nth-child(6):after {
    top: 68px;
    left: 24px
}

.loader-roller div:nth-child(7) {
    animation-delay: -0.252s;
    -webkit-animation-delay: -0.252s;
    -moz-animation-delay: -0.252s;
    -ms-animation-delay: -0.252s
}

.loader-roller div:nth-child(7):after {
    top: 63px;
    left: 17px
}

.loader-roller div:nth-child(8) {
    animation-delay: -0.288s;
    -webkit-animation-delay: -0.288s;
    -moz-animation-delay: -0.288s;
    -ms-animation-delay: -0.288s
}

.loader-roller div:nth-child(8):after {
    top: 56px;
    left: 12px
}

@keyframes loader-roller {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes loader-roller {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes loader-roller {
    0% {
        -moz-transform: rotate(0deg)
    }

    100% {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes loader-roller {
    0% {
        -ms-transform: rotate(0deg)
    }

    100% {
        -ms-transform: rotate(360deg)
    }
}

.loader-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.loader-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0)
}

.loader-ellipsis div:nth-child(1) {
    left: 8px;
    animation: loader-ellipsis1 0.6s infinite
}

.loader-ellipsis div:nth-child(2) {
    left: 8px;
    animation: loader-ellipsis2 0.6s infinite
}

.loader-ellipsis div:nth-child(3) {
    left: 32px;
    animation: loader-ellipsis2 0.6s infinite
}

.loader-ellipsis div:nth-child(4) {
    left: 56px;
    animation: loader-ellipsis3 0.6s infinite
}

.loader-ellipsis.small {
    width: 50px;
    height: 40px
}

.loader-ellipsis.small div {
    background: #ffc107;
    width: 10px;
    height: 10px;
    top: 15px
}

.loader-ellipsis.small div:nth-child(1) {
    left: 0px
}

.loader-ellipsis.small div:nth-child(2) {
    left: -8px
}

.loader-ellipsis.small div:nth-child(3) {
    left: 6px
}

.loader-ellipsis.small div:nth-child(4) {
    left: 30px
}

@keyframes loader-ellipsis1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes loader-ellipsis3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes loader-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(24px, 0)
    }
}

.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #ffc107 transparent transparent transparent
}

.loader-ring div:nth-child(1) {
    animation-delay: -0.45s
}

.loader-ring div:nth-child(2) {
    animation-delay: -0.3s
}

.loader-ring div:nth-child(3) {
    animation-delay: -0.15s
}

.loader-ring.small {
    height: 30px;
    width: 30px
}

.loader-ring.small div {
    height: 30px;
    width: 30px;
    margin: 0px
}

@keyframes loader-ring {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* Contact Section - Home Page
------------------------------*/
.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--primary-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.add-button {
    position: absolute;
    top: 1px;
    left: 1px;
    display: none;
}