/*

DIGITAL TREND

https://templatemo.com/tm-538-digital-trend

*/

@font-face {
  font-family: 'Plain-Regular';
  src: url('../fonts/Plain-Regular.woff2') format('woff2'),
    url('../fonts/Plain-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Plain-Light';
  src: url('../fonts/Plain-Light.woff2') format('woff2'),
    url('../fonts/Plain-Light.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Plain-Bold';
  src: url('../fonts/Plain-Bold.woff2') format('woff2'),
    url('../fonts/Plain-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-color: #057a8d;
  --secondary-color: #f1c111;
  --white-color: #ffffff;
  --dark-color: #171819;
  --project-bg: #f0f8ff;
  --menu-bg: #0c8195;

  --title-color: #15141a;
  --gray-color: #909090;
  --link-color: #404040;
  --p-color: #666262;

  --base-font-family: 'Plain-Light', sans-serif;
  --title-font-family: 'Plain-Regular', sans-serif;
  --font-bold-family: 'Plain-Bold', sans-serif;
  --font-weight-bold: bold;

  --h1-font-size: 42px;
  --h2-font-size: 32px;
  --h3-font-size: 24px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-small: 5px;
}

body {
  background: var(--white-color);
  font-family: var(--base-font-family);
}


/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-family: var(--title-font-family);
  line-height: inherit;
}

h1 {
    color: black;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
  font-weight: 100;
}

h3 {
  font-weight: 100;
  margin-bottom: 0;
}


/*  BLOCKQUOTES */

.quote {
  position: relative;
  margin: 0;
}

.quote::after {
  content: "“";
  position: absolute;
  bottom: -80px;
  left: 20px;
  font-family: times;
  color: var(--gray-color);
  font-weight: var(--font-weight-bold);
  font-size: 14em;
  line-height: 0;
  opacity: 0.10;
}

blockquote {
  border-left: 5px solid rgba(0, 0, 0, 0.05);
  display: block;
  margin: 42px 0;
  padding: 14px 22px;
  color: rgba(0, 0, 0, 0.5);
}


/* BUTTON */
.custom-btn {
  background-color: white;
  border: 2px solid var(--dark-color);
  border-radius: var(--border-radius-large);
  padding: 12px 26px 14px 26px;
  color: var(--dark-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  white-space: nowrap;
}

.custom-btn.btn-bg {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: transparent;
  transition: all .3s ease;
}

.custom-btn:hover,
.custom-btn:focus {
  background: var(--dark-color);
  color: var(--white-color);
  border-color: transparent;
}


/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  /* color: var(--secondary-color); */
  outline: none;
  text-decoration: none;
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding: 2em 0;
}

.section-padding-half {
  padding: 4em 0;
}

.google-map iframe {
  display: block;
  width: 100%;
}



/*---------------------------------------
    MENU             
  -----------------------------------------*/
.navbar {
  background: var(--menu-bg);
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 1em;
}

.navbar-brand {
  color: var(--white-color);
  font-size: 26px;
}

.nav-link {
  color: var(--white-color);
  font-size: var(--menu-font-size);
  letter-spacing: 0.4px;
}

.nav-item a:active,
.nav-item  a:hover {
  color: #ffc100!important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-size: 20px;
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}



/*---------------------------------------
     HERO              
  -----------------------------------------*/

.hero {
  position: relative;
  padding: 1em 0;
  overflow: hidden;
}

.hero-bg {
  padding-top: 50px;
  padding-bottom: 150px;
  background: linear-gradient(to bottom, #3ad4ed, #f5f5dc);
}

.hero-bg1 {
  background-color: beige;
}

.hero-bg2 {
  background: linear-gradient(180deg, var(--primary-color) 0%, #edd27d 60%);
}

.hero-bg3 {
  background: linear-gradient(305deg, var(--primary-color) 48%, var(--white-color) 47%);
}

.hero-image {
  position: relative;
  top: 2em;
}



/*---------------------------------------
     PROJECT              
  -----------------------------------------*/

.project {
  background: var(--project-bg);
}

.project-wrapper {
  position: relative;
}

.project-wrapper img {
  border-radius: var(--border-radius-small);
}

.project-info {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: 32px;
  width: 90%;
  padding: 32px;
}

.project-info small {
  font-family: Plain-Bold;
  color: var(--gray-color);
  position: relative;
  top: 2px;
}

.project-info a {
  color: var(--primary-color);
}

.project-info .project-icon {
  background: var(--primary-color);
}

.project-icon {
  position: absolute;
  right: 30px;
  top: 40px;
  background: var(--dark-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h2-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 5px;
}

.owl-theme .owl-dots .owl-dot {
  outline: none;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--gray-color);
  width: 50px;
  height: 3px;
  margin: 35px 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}

.list-detail {
  margin-left: 1em;
  padding-left: 1em;
  position: relative;
}

.list-detail li {
  display: block;
  list-style: none;
  margin: 0.6em 0 0 0.8em;
}

.list-detail li::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0 16px 16px 0;
  border-color: transparent var(--secondary-color) transparent transparent;
  border-style: solid;
  position: absolute;
  left: 0;
}

.list-detail span {
  position: relative;
  bottom: 5px;
}

.client-info img {
  width: 100px;
  margin-right: 1em;
}



/*---------------------------------------
      ABOUT            
  -----------------------------------------*/

.about {
  position: relative;
  overflow: hidden;
}


.about-image img {
  display: block;
  margin: 0 auto;
  width: 100%;
}


/*---------------------------------------
     CONTACT              
  -----------------------------------------*/

.newsletter-form .form-control,
.contact-form .form-control {
  box-shadow: none;
  background: var(--project-bg);
  border: 0;
  padding: 1.7em 1.3em;
  margin: 14px 0;
}

.newsletter-form button,
.contact-form #submit-button {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  cursor: pointer;
  font-size: var(--p-font-size);
  line-height: 0px;
  padding: 1.5em 1.3em;
}

.newsletter-form button {
  background: var(--secondary-color);
}



/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.site-footer {
  background: var(--dark-color);
  padding: 2em 0 2px 0;
}

.site-footer a {
  color: black;
}

.site-footer p {
  color: black;
}

.site-footer a:hover,
.footer-icon {
  color: var(--secondary-color);
}

.footer-link li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

.copyright-text,
.footer-link,
.site-footer .social-icon {
  margin-top: 6em;
}

.copyright-text {
  margin-top: 5.3em;
}



/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 4em 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  font-size: var(--base-font-size);
  margin: 10px;
  text-align: center;
}



/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (min-width: 1200px) {

  .about-info h2 {
    max-width: 100%;
  }

  .about-image {
    width: 70%;
  }
}

@media screen and (min-width: 991px) {

  .project h2 {
    max-width: 32%;
    margin: 0 auto;
  }

  .about-image {
    width: 80%;
    margin: auto;
  }
}

@media screen and (max-width: 991px) {

  .hero-text {
    bottom: 2em;
    font-size: 50px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .navbar {
    padding: 1em;
  }

  .navbar-collapse {
    text-align: center;
    padding: 2.5em 0;
  }

  .nav-link {
    display: inline-block;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    margin: 1em 0;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 3em;
    padding: 0;
    text-align: left;
  }

  .about-image {
    width: 80%;
    margin: auto;
  }

  .carousel-indicators {
    margin: 0px !important;
    padding-left: 80%;
    bottom: -8%;
  }
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 63px 25px 50px;
    background: #fff;
    min-height: auto;
    margin-left: 0px !important;
  }

  .contact {
    text-align: center;
  }

  .about-manage {
    margin-top: -10px !important;
  }

  .about-margin {
    text-align: center;

  }

  .abc {
    margin-top: 40px;
  }



  .project-info {
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .footer-link,
  .site-footer .social-icon {
    margin-top: 1em;
  }

  .copyright-text {
    margin: 2.5em 0 1em 0;
  }

  .footer-link li {
    margin-left: 0;
  }

  .about-image {
    width: 100%;
  }
}

.contact-form {
  padding: 63px 25px 50px;
  background: #fff;
  min-height: auto;
  margin-left: -15px;
}

@media screen and (max-width: 460px) {
  .hero-text h1 {
    font-size: 31px;
  }

}

.contact-form form input {
  width: 100%;
  background: #fff;
  border: none;
  height: 50px;
  padding: 0px 0;
  text-transform: none;
  margin: 10px 0;
  border-bottom: solid #222 1px;
  font-size: 16px;
  font-weight: 400;
}

.contact-form form select {
  width: 100%;
  background: #fff;
  border: none;
  height: 50px;
  padding: 0px 0;
  text-transform: none;
  margin: 10px 0;
  border-bottom: solid #222 1px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.contact-form form textarea {
  width: 100%;
  background: #fff;
  border: none;
  min-height: 90px;
  padding: 15px 0;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 400;
  border-bottom: solid #222 1px;
}

.contact-form form button[type="submit"] {
  background: #057a8d;
  color: #fff;
  width: 198px;
  margin: 15px auto 0;
  font-size: 19px;
  font-weight: 300;
  float: none;
  display: flex;
  cursor: pointer;
  height: 65px;
  padding-left: 44px;
  padding-top: 13px;
}

.footer_menu ul {
  list-style: none;
  margin-left: -32px;
}

.footer_menu ul li a {
  text-align: left;
  font-size: 18px;
}


a {
  outline: 0 !important;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

}

@media all and (max-width: 900px) {
}

.feature_section .carousel-indicators li {
  width: 25px;
  height: 25px;
  background-color: black;
  border-radius: 100%;
  opacity: 1;
}

.feature_section .carousel-indicators li.active {
  background-color: rgb(75 160 173);
}



.slider {
  padding: 20px 0px 80px 0px;
}

/* -------------------------End Features Section-------------------- */

/* Pricing section */


#pricing .div1 {
  background-color: rgb(75 160 173);
  border-radius: 30px
}

.pdiv1 {
  padding: 0px 0px;
  margin: 0px 0px;
}

#pricing .div1 h2 {
  color: yellow;
}

#pricing .row {
  --bs-gutter-x: 0rem;
}

.pricing-2 {
  background-color: #edd27d;
  border-radius: 30px;

}

.pricing_section {
  font-family: 'Poppins', sans-serif;
}


.pricing_section input {
  background-color: #edd27d;
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  width: 90%;
  margin: 10px 0;
}
.pricing_section input ::placeholder {
  color: #000;
}



.pricing_form-container button {
  border: none;
  background: #20BADA;
  color: #fff;
  font-size: 15px;
  padding: 15px 45px;
  border-radius: 30px;
  text-transform: capitalize;
}

.btn-2 {
  border: none !important;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #208899;
}


/* end Pricing section */

/* Request For Demo */

.div11{
  text-align: center;
}
.div12 input{
  margin: 20px ;
  width: 100%;
  padding: 8.5px 20px;
  text-decoration: none;
  outline: 0;
  border: none;
  border-radius: 40px;
}


.div12 input:focus {
  padding: 8.5px 20px 8.5px 20px !important;
  text-decoration: none;
  outline: 0;
  border: none;
}
.form1{
  margin: 0px 100px;

}
.form1 button {
  padding: 8.5px 20px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  background: #198cff;
  border-radius: 0px 30px 30px 0px;
}




.demo-2 {
  background-image: linear-gradient(126deg, black 50%, #65899b 50%);
  border-radius: 80px;
}

.btn-1 {
  text-align: center;
  background-color: #057a8d;
  color: #fff;
  padding: 9px;
  border: none !important;
}

/* End Request For Demo */

/* contact section */


.contact {
  background-image: url(../images/contact.jpg);
  background-position-x: center;
  background-attachment: fixed;
}

.contact-1 {
  color: white;

  font-weight: bolder;
}

.contact-1 input:focus,
textarea:focus {
  text-decoration: none;
  outline: 0;
  border: none;
}

.contact-2 {
  background-color: white;
  border-radius: 10px;
  margin: 50px 20px;
  padding: 0px;
}


.btn-2 {

  border: none !important;
  margin: 10px;
  padding: 15px 40px;
  color: white;
  border-radius: 30px;
  background-color: #057a8d;

}
.contact-1 input,
textarea {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border: none;
  padding: 10px;
}

/* End contact section */

/* info section */

.logo1 {
  width: 23%;
}

.info_section {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.info_logo-box {
  display: flex;
  justify-content: center;
}

.info_logo-box h2 {
  font-weight: bold;
  padding: 20px 7px;
  border-bottom: 1.5px solid #fdd31d;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #ffffff;
}

.info_section .form_container input {
  width: 225px;
  height: 40px;
  padding: 10px;
}

.info_section .form_container input::placeholder {
  color: #ccc8c8;
}

.info_section .form_container button {
  background-color: #fdd31d;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 30px;
  margin-top: 15px;
  font-size: 15px;
  text-transform: uppercase;
}

.social_container {
  width: 90%;
  margin: 0 auto;
  border-top: 2px solid #3192a1;
  padding: 25px 0;
}

.info_section .social-box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.info_section .social-box img {
  width: 35px;
  margin-right: 5px;
}

.info_button1 {
  background-color: #118193;
  color: #fff;
  border: none;
  border-radius: 30px;
}

.info_button2 {
  background-color: #118193;
  color: #fff;
  border: none;
  border-radius: 30px;
}

.info_button3 {
  background-color: #118193;
  color: #fff;
  border: none;
  border-radius: 30px;
}


/* end info section */


/* footer section*/

.footer_section {
  background-color: #3192a1;
  border-top: 2px solid black;
  padding: 5px 0px;
  font-family: 'Poppins', sans-serif;

}

.footer_section p {
  color: #fff;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #fdfdfe;
}

/* end footer section*/


/* Policy T&C and Discription section  */

.heading {
  text-align: center;
  background-color: #3f99a8;
  margin: 10px;
  color: white;
}

.ptd {
  color: #fff;
  text-decoration: none;
}

.border1 {
  margin: 0px auto;
}

.bg-1 {
  padding: 20px;
  color: rgb(0, 0, 0);
  background-color: beige;
}

.client_section .carousel-indicators li {
  width: 25px;
  height: 25px;
  background-color: #057a8d;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  background-color: #d49800;
}

/* animations */
#pricing button, #Contact button {
  background-color: white;
  border: 2px solid var(--dark-color);
  border-radius: var(--border-radius-large);
  padding: 12px 26px 14px 26px;
  color: var(--dark-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  white-space: nowrap;
}

#pricing button:hover, #Contact button:hover ,
#pricing button:focus, #Contact button:focus  {
  background: var(--dark-color);
  color: var(--white-color);
  border-color: transparent;
}
.div12 button:hover {
  background-color: black ;
  color: #fff;
}

.info_section button:hover,
.info_section button:focus {
  background-color: #fff;
  color: #057a8d;

}

.contact-1 input:focus,
textarea:focus {
  animation: anim2 linear 1s;
}

a:hover {
  color: #f0b500;
}

.footer_section a:hover {
  color: #000 !important;
}

@keyframes anim2 {
  0% {
    background-color: #057a8d;

  }

  100% {
    background-color: #fff;

  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.navbar-nav .nav-item{
  width: 33.33% !important;
}


/* End Policy T&C and Discription section  */