
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #439ED6;
  --secondary-color:              #ECA032;
  --tertiary-color:               #49ACE9;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #717275;

  --body-font-family:           'Noto Sans JP', sans-serif;

  --h1-font-size:               72px;
  --h2-font-size:               42px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                20px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

video {
  object-fit: cover;
}

.videoWrapper {
  position: relative;
  padding-bottom: 160%; /*9:16 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.product-title {
  display:flex;
  color: var(--primary-color);
}

.product-subtitle {
  display:flex;
  color: var(--tertiary-color);
}










.container7{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 0%;
  padding-bottom: 0.5%;
  margin-left: 2%;
  background-color: #fff;
  position: relative;
}
.heading35{
   font-weight: 900;
   color: black;
   justify-content: center;
   align-items: center;
   font-size: xx-large;
   padding-bottom:0.5% ;

}

.container7 .card{

  width: 400px;
  height: 400px;
  margin:20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background:#fff;  
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 5%;
}

.container7 .card .imgBx7{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  transition: 0.5s ease-in-out;
  color: rgb(12, 190, 230) ;
}

.container7 .card:hover .imgBx7{
  transform: translateY(-100px);
}

.container7 .card .imgBx7 img{
  max-width:100%;
  margin: 0 0 20px;
  transition: 0.5s ease-in-out;
}
.container7 .card:hover .imgBx7 img{
  transform: translate(-20px,-40px) rotate(-25deg) scale(1.4);
}
.container7 .card .imgBx7 h2{
  color:#3586ff;
  font-weight: 600;
}

.container7 .card .content7{
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.container7 .card:hover .content7{
  opacity: 1;
  visibility: visible;
  transform: translateY(-50px);
  /* background-color: var(--secondary-color); */
}

.container7 .card .content7 a{
  position: relative;
  top: 10px;
  display: inline-block;
  padding: 12px 30px;
  background: rgb(106, 192, 245);
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color:#fff;
  text-decoration: none;
  text-transform: uppercase;
}

.container7 .card .content7 a:hover{
  background-color: var(--secondary-color);
}









/*---------------------------------------
  HERO VIDEO             
-----------------------------------------*/

.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 97vh;
  }

  .custom-video,
  .feature-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 60px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

.vrg-video-lede {
  height: 90vh;
  margin: 0 auto; }

.vrg-label {
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute; }

.vrg-inner-container {
  height: 100%;
  position: relative;
  overflow: hidden; }

@media screen and (max-width: 768px) {
  .vrg-inner-container {
    height: 100%; } }

.vrg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.vrg-media:after {
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 40%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.vrg-media img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover; }

.vrg-media video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block; }

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;
}



.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: #000;
}
.navbar-nav .nav-item.active {
  color: #000;
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 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(--dark-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(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}
/*---------------------------------------
  DROPDOWN MENU            
-----------------------------------------*/
.dropbtn {
  background-color: #f8f9fa;
  border: none;
}

.dropdown {
  display: inline-block;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: white;
}
/*---------------------------------------
  SLIDES
-----------------------------------------*/

.wrapper,.slide{
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.slide .image{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slide{
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.slide::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;

}
.slide .image-data{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
.image-data span.text{
  font-size: 24px;
  font-weight: 400;
  color:whitesmoke;
}
.image-data h2{
  font-size: 40px;
  font-weight: 600;
  color: rgb(237, 181, 51);

}
a.button{
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  margin-top: 25px;
transition: all 0.3s ease;
}
a.button:hover{
  background-color: var(--secondary-color);
  color: #fff;


}
/* swiper button*/
/* .nav-btn:hover{
  background-color: rgba(255, 255, 255, 0.4);
} */
.nav-btn::before,
.nav-btn::after{
  font-size: 25px;
  color: #fff;
}
.swiper-button-next{
  right: 50px;
}
.swiper-button-prev{
  left: 50px;
}
.swiper-pagination-bullet{
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;

}
.swiper-pagination-bullet-active{
  border: 2px solid #fff;
  background-color: rgb(237, 181, 51);
}



/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/

.about-image, .team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 275px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 10px;
}

/*---------------------------------------
  feature & EVENTS               
-----------------------------------------*/


 /*Setting Basic Dimensions to give
    gallery view */
  .container{
      margin: 0 auto;
      width: 100%;
  }
  .main_view{
      display: flex;
      justify-content: center;
      width: 100%;
      height: 67vh;
      margin: 1rem 0rem 3rem;
  }
  .main_view img{
      width: 100%;
      height: 100%;
      object-fit: contain;
  }
  .side_view{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
  }
  .side_view img{
      width: 25vw;
      height: 5vh;
      object-fit: cover;
      cursor: pointer;
      margin: 0.5rem;
  }

  .side_view img:hover{
    width: 28vw;
    height: 5vh;
    object-fit: cover;
    cursor: pointer;
    margin: 0.5rem;
  }

  .product_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  
.menu-title {
color: var(--primary-color);
display: inline-block;
padding: 1rem;
}

.menu-text {
color: var(--dark-color);
display: inline-block;
margin: 5%;
}

.menu-hover {
display: inline-block;
position: relative;
overflow: hidden;
z-index: 1;
transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.menu-hover::after {
content: "";
width: 0;
height: 4px;
bottom: 0;
position: absolute;
left: auto;
right: 0;
z-index: -1;
transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
background: var(--tertiary-color);
}

.menu-hover:hover::after {
width: 100%;
left: 0;
right: auto;
z-index: 9;
}

.menu-hover:hover {
transform: scale(1.02);
}




.main-content {
	padding-top: 100px;
	padding-bottom: 100px;
}

.flex-center {
  display: flex;
  justify-content: center;
}

#feature-list, #customers-list, #upcomingproducts-list{
  display: flex;
  justify-content: center;
  align-items: center;
}

#upcomingproducts-list div{
  padding: 10px;

}
.section-padding1{
  background-color: #ddd;
}

.accordion-button{
  padding: 15px 5px 15px 0px;
}

.accordion-body {
	margin-top: 15px;
	padding: 25px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 25px -3px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
}

.circle-icon {
	height: 50px;
	width: 50px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2b4eff;
    border: 5px solid #b2bfff;
	color: #fff;
	margin-left: -20px;
	margin-right: 10px;
	transform: scale(1.2);
}
.accordion-item{
	border: 0px!important;
}
.accordion-button:not(.collapsed){
	border: 0px!important;
	color: #0c63e4;
    background-color: #ffffff;
    box-shadow: inset 0 0px 0 rgb(0 0 0 / 13%);
}





.feature,
.related-feature,
.reviews {
  background: #ddd;
}
.reviews-home {
  background: #fff;
}

.feature-thumb {
  position: relative;
}

.feature-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 15px;
}

.feature-text-info {
  margin: 0 20px;
}

.feature-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.feature-title-link {
  color: var(--primary-color);
  display: inline-block;
}

.feature-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.feature-image {
  display: block;
  transition: transform 0.6s ease-out;
  border-radius: 30px;
  height: auto;
  width: 100%;
}

.feature-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: auto;
  width: 100%;
  border-radius: 30px;
}

.feature-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: var(--tertiary-color);
}

.feature-image-hover-warning::after {
  background: #ffc107;
}

.feature-image-hover-primary::after {
  background: #0d6efd;
}

.feature-image-hover-success::after {
  background: #198754;
}

.feature-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.feature-image-hover:hover .feature-image {
  transform: scale(1.02);
}

.feature-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.feature-two-column .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

.bg-main {
  background-color: var(--primary-color);
}

/*---------------------------------------
  REVIEWS               
-----------------------------------------*/

.section-padding {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.single-review {
  text-align: center;
  /* background-color: #f9f9ff; */
  background-color: var(--grey-color);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-review p {
  margin-top: 20px;
}

.review-title {
  color: var(--primary-color);
  display: inline-block;
}

.review-text {
  color: var(--dark-color);
  display: inline-block;
  margin: 5%;
}

.rating {
  color: var(--secondary-color);
}

.review-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.review-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: var(--tertiary-color);
}

.review-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.review-hover:hover {
  transform: scale(1.02);
}



/*---------------------------------------
  FAQ               
-----------------------------------------*/

.section-padding {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.single-faq {
  text-align: left;
  width: 100%;
  /* background-color: #f9f9ff; */
  background-color: var(--section-bg-color);
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-faq p {
  margin-top: 0px;
}

.faq-title {
  color: var(--primary-color);
  text-align: left;
}

.faq-text {
  color: var(--dark-color);
  display: inline-block;
  margin: 0%;
  text-align: left;
}

/* .faq-title:hover+.faq-text {
  color: var(--dark-color);
  display: inline-block;
  margin: 0%;
  text-align: left;
} */

.faq-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.faq-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: var(--tertiary-color);
}

.faq-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.faq-hover:hover {
  transform: scale(1.02);
}


/*---------------------------------------
  CUSTOMERS       
-----------------------------------------*/
.single-customer {
  text-align: center;
  /* background-color: #f9f9ff; */
  background-color: var(--grey-color);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-customer img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;

}

.video-frame {
  border-radius: 30px;
  overflow: hidden;
  transform: translateZ(0);
}

.video-frames {
  border-radius: 30px;
  overflow: hidden;
  transform: translateZ(0);
  margin-bottom: 5%;
}

.get-button {
  background: var(--primary-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  margin-bottom: 5%;
  transition: all 0.6s ease-out;
  width: 250px;
}

.get-button:hover {
  background: var(--secondary-color);
  color: var(--white-color);

}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}



/*---------------------------------------
  FOOTER              
-----------------------------------------*/

footer{
  position: relative;
  width:100%;
  background: var(--tertiary-color);
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

footer .social_icon,
footer .menu{
  position: relative;
  display:flex;
  justify-content: center;
  align-items: center;
  margin:10px 0;
  flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li{
  list-style: none;
}
footer .social_icon li a{
  font-size:2em;
  color: #fff;
  margin:0 10px;
  display: inline-block;
  transition: 0.5s;
}
footer .social_icon li a:hover{
  transform:translateY(-10px)
}

footer .menu li a{
  font-size:1.2em;
  color: #fff;
  margin:0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
}

footer .menu li a:hover{
  opacity:1;
}

footer p{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}





/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .feature-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .feature-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .feature .col-12 .feature-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .feature-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .feature-detail-title {
    font-size: 22px;
  }
}








