﻿/* ===== Buttons Css ===== */
.team-image { border:1px solid #155bd5;}

.pricing-style-one .primary-btn 
{
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-one .active.primary-btn, .pricing-style-one .primary-btn:hover, .pricing-style-one .primary-btn:focus 
{
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.pricing-style-one .deactive.primary-btn 
{
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}
/*===== PRICING STYLE ONE =====*/
.pricing-one 
{
  padding: 20px 0;
}

.pricing-style-one 
{
  box-shadow: var(--shadow-4);
  padding: 45px 30px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--white);
  margin-top: 50px;
  min-height:330px;
  border:solid 1px #155bd5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) 
{
  .pricing-style-one 
  {
    padding: 35px 30px;
  }
}
.pricing-style-one .sub-title 
{
  font-size: 16px;
  color: var(--black);
  position: relative;
  padding: 6px 20px;
  display: inline-block;
  border: 2px solid var(--primary);
  border-radius: 30px;
  min-height:60px;
}
.pricing-style-one .price {
  display: block;
  font-size: 55px;
  font-weight: 600;
  line-height: 80px;
  margin-top: 25px;
  color: var(--black);
}
@media (max-width: 767px) {
  .pricing-style-one .price {
    font-size: 45px;
    margin-top: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-style-one .price 
  {
    font-size: 50px;
    margin-top: 20px;
  }
}
.pricing-style-one .year {
  color: var(--dark-3);
  margin-top: 3px;
}
.pricing-style-one .pricing-list {
  margin-top: 40px;
}
.pricing-style-one .pricing-list li {
  color: var(--dark-3);
  margin-top: 16px;
}
.pricing-style-one .pricing-list li i 
{
  color: var(--primary);
  margin-right: 8px;
}

.pricing-style-one .pricing-btn 
{
  margin-top: 42px;
}

.pricing-style-one .bottom-shape 
{
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 101%;
  z-index: -1;
}


#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th 
{
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #0a58ca;
  color: white;
}
#customers td.YearClass {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #0a58ca;
  color: white;
  font-weight:bold;
}


#prizing {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#prizing td, #prizing th 
{
  border: 1px solid #ddd;
  padding: 8px;
}

#prizing tr:nth-child(even)
{background-color: #f2f2f2;}

#prizing tr:hover 
{background-color: #ddd;}

#prizing th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #0a58ca;
  color: white;
}

/*===========================
  teams css 
===========================*/
.team-style-one {
  position: relative;
  margin-top: 30px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-style-one:hover {
  box-shadow: var(--shadow-4);
}
.team-style-one .team-image img {
  width: 100%;
}
.team-style-one .team-content {
  padding: 20px 15px;
  width: 100%;
  background-color: var(--white);
}
.team-style-one .team-content .name {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) 
{
  .team-style-one .team-content .name {
    font-size: 20px;
  }
}
.team-style-one .team-content .sub-title 
{
  font-size: 12px;
  line-height: 12px;
  color: var(--dark-3);
  margin-top: 2px;
  display: block;
}
.team-style-one .team-content .social {
  margin-top: 12px;
}
.team-style-one .team-content .social li {
  display: inline-block;
  margin: 0 4px;
}
.team-style-one .team-content .social li a {
  font-size: 16px;
  color: var(--gray-1);
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid var(--gray-4);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-style-one .team-content .social li a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: transparent;
}


.blockquote {
  background: #d4e4fc;
  border-left:10px solid #084ebf;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
 /* quotes: "\201C""\201D""\2018""\2019";*/
}
.blockquote-rev {
  background: #d4e4fc;
  border-right:10px solid #084ebf;
  border-left:none!important;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
 /* quotes: "\201C""\201D""\2018""\2019";*/
}

.blockquote:before {
  color: #ccc;
 /* content: open-quote;*/
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.blockquote p {
  display: inline;
}
.blockquote-rev:before {
  color: #ccc;
 /* content: open-quote;*/
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.blockquote-rev p {
  display: inline;
}

.blockquote-rev {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align:right;
}
.list-style .list-style-one ul li span {
  font-size: 16px;
  font-weight: 600;
 color: var(--primary);
  line-height: 25px;
  margin-right: 13px;
}
.list-style .list-style-two ul li i {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 25px;
    margin-right: 7px;
}

.list-style .list-style-two ul li i {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 25px;
    margin-right: 7px;
}

.list-style .list-style-five ul li i {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 25px;
    margin-right: 7px;
}

/*#VisionMision
{
    min-height:625px;
}*/

@media only screen and (max-width: 425px) and (min-width: 360px)  
{ .navbar-area.navbar-nine .navbar-brand {
    margin: 0;
    width: 40%;
}
 }

/*@media screen and 
(min-width: 360px)  {
    .navbar-area.navbar-nine .navbar-brand {
    margin: 0;
    width: 40%;
}
}
 
/*------------------------------------------------------------Feature Section Starts here-------------------------------------------*/
.features-style-one{min-height:295px;}
/* ===== Buttons Css ===== */
.features-style-one .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-style-one .active.primary-btn-outline, .features-style-one .primary-btn-outline:hover, .features-style-one .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-style-one .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  Features One CSS 
===========================*/
.features-one {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-one .section-title {
  padding-bottom: 10px;
}
.features-one .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-one .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-one .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 24px;
}

.features-style-one {
  background-color: var(--white);
  padding: 40px 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-2);
  border-radius: 4px;
  transition: all 0.3s;
}
.features-style-one:hover {
  box-shadow: var(--shadow-4);
}
.features-style-one .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: var(--primary);
  border: 2px solid rgba(187, 187, 187, 0.192);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-one .features-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 35px;
  }
}
.features-style-one .features-icon {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
  border:4px solid White;
}

.features-style-one .features-content {
  margin-top: 24px;
}

.features-style-one .features-title 
{
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .features-style-one .features-title {
    font-size: 22px;
  }
}

.features-style-one .text
{
  color: var(--dark-3);
  margin-top: 16px;
}

.features-style-one .features-btn {
  margin-top: 32px;
}


blockquote 
{
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}


blockquote:before 
{
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}


blockquote > p:after {
   color: #ccc;
  content: close-quote;
   font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}


blockquote p {
  display: inline;
}
