@font-face {
    font-family: 'advent_probold';
    src: url('fonts/adventpro-bold-webfont.woff2') format('woff2'),
         url('fonts/adventpro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'advent_promedium';
    src: url('fonts/AdventPro-Medium.eot');
    src: url('fonts/AdventPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/AdventPro-Medium.woff2') format('woff2'),
        url('fonts/AdventPro-Medium.woff') format('woff'),
        url('fonts/AdventPro-Medium.ttf') format('truetype'),
        url('fonts/AdventPro-Medium.svg#AdventPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'advent_prolight';
    src: url('fonts/AdventPro-Light.eot');
    src: url('fonts/AdventPro-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/AdventPro-Light.woff2') format('woff2'),
        url('fonts/AdventPro-Light.woff') format('woff'),
        url('fonts/AdventPro-Light.ttf') format('truetype'),
        url('fonts/AdventPro-Light.svg#AdventPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

/*MAIN ELEMENTS */
body {
   font-family: "advent_probold",Helvetica,Arial,Verdana,sans-serif;  
}

#main-wrapper {
   width: 100%;
   position:relative; 
}
.orange  {
	background-color: #fea734; 
	border-color:#fea734;
}
.blu-btn  {
	background-color: #06598f !important; 
	border-color:#e6f0fc !important;
}
.medium {
   font-family: "advent_promedium",Helvetica,Arial,Verdana,sans-serif !important;
}
.light {
	font-family: "advent_prolight",Helvetica,Arial,Verdana,sans-serif !important;
}
.bold {
   font-family: "advent_probold",Helvetica,Arial,Verdana,sans-serif !important;
}
.title {  
  font-size:30px;
  color: #505050;
}
.subtitle {
  font-size:26px;
  color:#505050;
}
.text {
  font-size:20px;
  color:#787878; 
}
.more a {
  color:#3286bc;
  font-size: 20px;
  font-family: "advent_probold",Helvetica,Arial,Verdana,sans-serif !important;
  text-decoration: none;
}

/*PRELOADER STYLE */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1199;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #569cc9;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1200;
}
 
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fea734;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #06598f;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 1198;
} 
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
     transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/*TOPBAR */
.top-bar {
    color: #fff;
    min-height: 40px;
    padding: 4px 50px;
    background-color: #336699;
    position: relative;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    margin-top: 0;
    box-sizing: border-box
}

.top-bar .left-widgets {
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.top-bar .left-widgets .mini-contacts {
    position: relative;
    margin: 0;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: 600;
    font-stretch: normal;
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
}

.top-bar .left-widgets .mini-contacts i {
    font-size: 16px;
    line-height: 22px;
    color: rgba(255,255,255,.5);
    margin-right: 5.71px;
    font-family: icomoon-the7-font!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.top-bar .right-widgets {
    justify-content: flex-end;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.log-text {
	color:#ff9900;
	font-size: 20px;
	padding-right: 25px;
}

.login a {
	text-decoration: none;
}

 .mini-search {  
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: 600;
    font-stretch: normal;
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 10;
    max-width: 100%;
 }   
 
.mini-search .searchform { 
   overflow: hidden;
   position: relative;
   z-index: 3;
   max-width: 100%;
 }
.mini-search input.field {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    min-height: 28px;
    height: auto;
    width: 120px;
    border-width: 3px;
    border-color: #5fa4b4;
    border-radius: 100px;
    background: transparent;
    padding: 0 15px;
    transition: width .55s ease;
    max-width: 100%;
    border-style: solid;
}
@supports selector(:focus-visible) {
  .mini-search input.field:focus {
    /* Remove the focus indicator on mouse-focus for browsers
       that do support :focus-visible */
    outline: none;
    background: transparent;
  }
}
.mini-search input.field:hover {
 width: 200px !important;
}

.searchform input[type=text],  .mini-search .field::placeholder {
    color:#fff;
}

.mini-search .search-icon {
   color:#fff;
   right: 15px;
   width: 16px;
   position: absolute;
   -ms-flex-pack: center;
   -ms-justify-content: center;
   justify-content: center;
   top: 0;
   height: 100%;
   display: -ms-flexbox;
   display: -ms-flex;
   display: flex;
   -ms-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   text-decoration: none;
   background-repeat: no-repeat;
   background-position: center center;
}

.mini-search .search-icon i {
    font-size: 16px;
    font-family: icomoon-the7-font!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mini-search .search-icon:hover {
   opacity: 0.7;
}
.mini-search .searchsubmit {
    display: none;
}

.soc-ico {
   line-height: 22px;
   display: inline-block;
   vertical-align: middle;
   margin-left: 10px;
   overflow: hidden;
}

.soc-ico a {
    width: 30px;
    height: 30px;
    margin: 0 2px;
    line-height: 30px;
    border-radius: 100px;
    position: relative;
    display: -ms-inline-flexbox;
    display: -ms-inline-flex;
    display: inline-flex;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}


.soc-ico a:hover:before {
	 background-color: rgba(95,164,180, 1);
    opacity: 0.7;

}
.soc-ico a:before  {
	 content: "";
	 width: 30px;
    height: 30px;
    box-shadow: 0 0 0 3px rgba(95,164,180, 1) inset;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .15s linear;
    border-radius: inherit;
}
.soc-font-icon {
    color: #fff ;
    background: 0 0!important;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    font-family: icomoon-the7-font!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*barra menu navigazione */   
.primary-menu {
    padding-right: 50px;
    padding-left: 50px;
    height: 75px;
    -webkit-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
    background-color: #fff;
}

.primary-menu .container-fluid {
   padding: 0;
}     

.logo {
    width:20%;
    padding-right: 30px;
}

.navbar{
    padding-top:0 !important;
    padding-bottom: 0 !important;
}
.navbar-nav {
   -ms-align-items: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -ms-align-content: stretch;
   align-content: stretch;
   flex-grow:10 !important;
   justify-content: space-around;
   flex-wrap: wrap;
}
.nav-item {
    padding: 0 18px;
}
.navbar-nav>li>a {
	 display: flex;
    display: -ms-flexbox;
    display: -ms-flex;
    -ms-align-content: center;
    align-content: center;
    -ms-flex-line-pack: stretch;
    flex-flow: column wrap;
    -ms-flex-positive: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
}

.fas {
	font-size: 18px; 
   align-self: center;
   margin-bottom: 10px; 
}

.Defaults-folder-open:before {
    content: "\f07c";
}

.menu-text {
  font-family: "advent_probold",Helvetica,Arial,Verdana,sans-serif;
  font-size: 20px;
  color: #808080;
}

.dropdown-toggle .menu-text:after {
    position: absolute;
    top: 50%;
    left: 80%;
    margin-top: 6px;
    margin-left:6px; 
    right: 0;
    width: 8px;
    height: 8px;
    content: "\f005";
    font-family: icomoon-the7-font;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    font-size: 8px;
    line-height: 1;
    text-align: center;
}

.dropdown-toggle:after {
     display: none;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link .menu-text:hover,
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-link .menu-text.active {
   background-color: #ddebf4 !important;
   color:#3085bc !important;
}
 .onlymobile{
    display:none;  
  }

.register-btn {
	width: 20%;
	justify-content: flex-end;
}


/*SLider */
 .carousel-control-prev {
   justify-content: flex-start !important;
}
.carousel-control-next {
	justify-content: flex-end !important;
}

/*First BOX*/
.box-1 {
  padding: 20px 0px 10px 0px;
  margin-top:40px; 
}
.box-1 .title {
  margin-bottom: -10px;
}
.box-1 .subtitle {
  color:#569cc9;
  margin-bottom: -10px; 
}
.box-1 .text { 
  margin-top: 10px;
}
.box-1 .text .more a {
	
}
.col-box1 {
    width:45%;
    float:left;
    margin-left: 15px;
}
.col-box1 i {
  color:#3085bc;
  margin-right: 5px;
}


/*first and second parallax image*/
.top_seperator {
   top: -1px;
   bottom: auto;
   position: absolute;
   width: 100%;
   height: 0;
   left: 0;
   z-index: 3;
}

.bottom_seperator {
   position: absolute;
   width: 100%;
   height: 0;
   left: 0;
   z-index: 3;
   top: auto;
   bottom: -1px;
}
.seperator-inner {
   position: relative;
   height: 100%;
   width: 100%;
}

svg {
   width: 100%;
   height: auto;
}

.top_seperator  .left-seperator {
   top: 1px;
   bottom: auto;
   -webkit-transform: scale(-1);
   -ms-transform: scale(-1);
   transform: scale(-1);
   width: 100%;
   height: auto;
   overflow: hidden;
}

.bottom_seperator  .left-seperator {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    top: auto;
    bottom: 1px;
}
.parallax-img1,
.parallax-img2 {
    background-size: cover;
    background-repeat: repeat;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../images/parallax-1.jpg);
    background-attachment: scroll;
    left: 0px;
    opacity: 1;
    background-position: center center;
    position: absolute;
    height:340px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
    width:100%;
}
.parallax-img2 {
    background-image: url(../images/parallax-2.jpg);
}
.parallax-img1 .spot,
.parallax-img2 .spot  { 
    text-transform: uppercase;
	 color: #fff;
    font-size: 50px;
	 vertical-align: middle;
	 padding-top: 90px;
	 text-align: center;
}
.parallax-img2 .spot  { 
     color: #05456f;
}
.parallax-img2  .blu-btn  {
	text-transform: none;
	background-color: #05456f !important; 
	border-color:#05456f !important;
}
.segnaposto {
    position: relative;
    z-index: 0;
}

/*LE APP*/
.box-2 {
  padding: 20px 0px 10px 0px; 
  display: flex;
}
.box-2 h1 {
   color:#df7c00 !important;
}
.box-2 .card {
  border:0 !important;
}
.box-2 .card-title {
  color:#df7c00;
  font-size: 30px;
} 
.box-2 .card-text,
.box-2 a {
  font-size: 20px;
  color:#787878!important;
}
.box-2 a {
  padding: 2px 20px; 
}

/*blue bar */
.blue-bar .container-fluid {
  background-color: #569cc9;
  padding: 10px 0;
}
.blue-bar .container-fluid .text,
.blue-bar .container-fluid .text a {
   color:#fff;
   font-size: 28px;
   line-height: 2.5 !important;
}
.blue-bar .container-fluid .text a {
   margin-top: -7px;
   margin-left: 20px;
   line-height: 1.5 !important
}
.blue-bar .container-fluid  .btn-lg {
   padding:0.2rem 2.3rem !important;
}
.blue-bar .container-fluid  .btn {
	border:2px solid !important;
}
/*perche?? */
.reasons h1 {
   color:#3286bc;
}
.reasons .box-3 {
   display:flex;
   flex-wrap:wrap;
   margin-top: 50px;
}
.reasons .box-3 .title {
   margin-bottom: 0px;
}

.reasons .box-3 .box-sx {
   padding-left:50px;
   padding-right: 50px;
}

.reasons .box-3 .subtitle {
   color:#569cc9;
}
.reasons .box-3 .box-dx {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: column;
   padding-right: 50px;
}

/*feedback*/
.feedback h1 {
   color:#3286bc;
}
.feedback .box-3 {
   display:flex;
   flex-wrap:wrap;
   margin-top: 50px;
   margin-bottom: 50px;
   font-size: 20px;
}
.feedback .box-3 .box-sx {
   padding-left: 50px;
   padding-right: 25px;
}
.feedback .box-3 .box-dx {
   margin-left: 50px;
}
.feedback .box-3 .quote {
   border-left: 2px solid #3286bc;
   padding-right: 50px;
   padding-left: 10px;
   color:#787878;
}
.feedback .box-3 .author {
	color:#3286bc;	 
	font-style: italic;
	font-size: 17px;
}

/*news */
.news h1 {
  color:#df7c00 !important;
}
.news .box-3 {
   display:flex;
   flex-wrap:wrap;
   margin-top: 50px;
}
.news .box-sx .title {
  margin-bottom: 0;
  margin-top: 10px;
}
.news .box-sx .text {
  text-align: justify;
}

.news .btn-lg {
  padding: 0px 30px;
  font-size: 23px;
  margin-top: 10px;
}
.news .box-3 .box-dx {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: row;
   margin-left: 20px;
}
.news .box-3 .box-dx .text-col {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: column;
   padding: 5px 20px;
} 
.news .box-3 .box-dx .text-col .text a {
	text-decoration: none;
   font-size: 18px;
   color:#787878;
}
.news .box-3 .box-dx .text-col .category {
   color:  #df7c00;
   font-size: 20px;
}

/*orange bar */
.orange-bar .container-fluid {
  background-color: #ffbb64;
  padding: 10px 5px;
}
.orange-bar .container-fluid .text,
.orange-bar .container-fluid .text a {
   color:#05456f;
   font-size: 26px;
   line-height: 2.5 !important;
   text-decoration: underline;
}

/*footer */
.footer  .container-fluid {
  background-color: #05456f;
}
.footer .col-footer1 p,
.footer  .col-footer2 .head,
.footer  .col-footer3 .head {
  color:#fff;
  font-size: 24px;
}
.footer .col-footer1 img {
  margin-bottom: 30px;
}
.footer .col-footer1 p {
  text-align: justify;
}
.footer .col-footer1 a {
  letter-spacing: 3px;
  margin-top: 10px;
}
.footer .col-footer1 a.btn-lg {
  padding: 0rem 0.5rem;
  font-size: 24px;
}
.footer  .col-footer2 {
  margin-left: 90px;
  margin-top: 30px;
}
.footer  .col-footer2 .links a {
  color:#569cc9;
  font-size: 18px;
  text-decoration: none;
}
.footer  .col-footer3 { 
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-left: 50px;
}
.footer  .col-footer3 .contact a,
.footer  .col-footer3 .contact {
  color:#b4b4b4;
  font-size: 18px;
  text-decoration: none;
}
.footer  .col-footer3 .copy {
  color: #b4b4b4;
  font-size: 18px;
}

/*bottom-bar */
.bottom-bar  .container-fluid {
  background-color: #06598f;
}
.bottom-bar  .col-bottom {
  display: flex;
  flex-direction:column;
  align-items: center;
}
.bottom-bar .agency{
  color:#fff;
  margin-bottom: 10px;
}


/*ottimizzazione mobile */
@media screen and (max-width:991px) {
  #main-wrapper {
   overflow-x:hidden;
   position:relative;
   width:100%;  
  }	
  .navbar-collapse { 
   margin-top:10px;
   height:100vh !important;  
  }
  .navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0);
    padding-top: 20px;
    align-self: end !important;  
  }  
  .navbar-toggler:focus, 
  .navbar-light .navbar-toggler:active {
      box-shadow: 5px 10px #fff !important;
  }
  
  .navbar-nav>li>a {
   align-content:flex-start;  
  }
  .fas {
   align-self: start !important;  
  }
  .right-widgets {
    display:none !important;
  }
  .top-bar .left-widgets {
  	 justify-content: center !important;
  }
  .overlay {
    opacity: 0.1;
    -webkit-transition: all 0.4s 0s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.4s 0s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }  
  .onlymobile {
    display:flex;
    flex-direction: row;
    align-items:flex-start;  
  }
  .register-btn,
  .login,
  .mini-search,
  .soc-ico {
    width:auto !important  
  }
  .soc-font-icon,
  .searchform input[type=text],  
  .mini-search .field::placeholder,
  .mini-search .search-icon  {
    color:#05456f !important;
  }
  .primary-menu {
    height: 7vh !important;
    margin-top: 10px !important;
    margin-bottom: 10px!important;
    }
  .box-1 {
    margin-left:15px!important;
    margin-right:15px!important;  
  }  
  .parallax-img1 .spot,
  .parallax-img2 .spot  {
    font-size: 22px!important; 
    padding-top:120px !important; 
   }  
  .col-box1 {
  	 width:47%!important;
  	 margin-left: 0px !important;
  	 margin-right: 10px;
  	 margin-top: 50px !important;
   } 
  .box-2 {
    margin-left:50px!important;
  }
  .blue-bar .container-fluid .text,
  .blue-bar .container-fluid .text a {
    font-size: 15px !important;	
  }  
  .reasons .box-3 .box-sx {
    padding-left:10px !important;
    padding-right: 10px !important;
  }
  .reasons .box-3 .box-dx {
    padding: 10px 10px !important;
  }
  .feedback .box-3 {
  	 margin-top: 30px !important;
    margin-bottom: 0px !important;
  }  
  .feedback .box-3 .box-sx {
  	margin-bottom: 30px !important;
  }
  .feedback .last {
   margin-bottom:50px;  
  }
  .news .box-3 .box-dx {
    margin: 30px 0px 0px 0px !important; 
  } 
  .news .box-3 .box-dx .text-col {
    padding: 5px 0px !important;  
  }
  .orange-bar .container-fluid .text,  
  .orange-bar .container-fluid .text a {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  .footer  .col-footer2,
  .footer  .col-footer3 {
    margin-left: 25px !important;
  }
}
@media screen and (max-width:450px) {
 .logo {
    width: 50% !important;
  }
}
@media screen and (min-width:451px) and (max-width:640px) {
 .logo {
    width: 42% !important;
  } 
}
@media screen and (min-width:641px) and (max-width:861px) {
 .logo {
    width: 35% !important;
  } 
}
@media screen and (min-width:862px) and (max-width:1199px) {
 .logo {
    width: 24% !important;
  } 
}
@media screen and (min-width:1200px) and (max-width:1312px) {
 .logo {
    width: 12% !important;
  } 
}

