/* Global ************************************************/
@font-face {
    font-family: Normal;
    src: url('../fonts/Frutiger/FrutigerLT55Roman.ttf');
}
@font-face {
    font-family: Italic;
    src: url('../fonts/Frutiger/FrutigerCE46LightItalic.ttf');
}
@font-face {
    font-family: Bold;
    src: url('../fonts/Frutiger/FrutigerCE65Bold.ttf');
}
@font-face {
    font-family: Opensans;
    src: url('../fonts/OpenSans-Bold.ttf');
}

* {
	font-family: "Normal", sans-serif;
    color: #58595b;
    border: 0;
	padding: 0;
	margin: 0;
}

body {
    overflow-x: hidden;
    margin-top: 110px;
}
::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}

a {
	color: #999;
	display: inline-block;
	cursor: pointer;
}
a, a:hover, a:focus, a:visited {
	text-decoration: none !important;
	outline: none !important;
	color: #ccc;
}

h1,h2,h3,h4,h5,h6,ul,p {
	margin: 0;
}

ul,p {
	font-size: 17px;
    line-height: 25px;
}
p {
    text-align: justify;
    letter-spacing: 1px;    
}
p.small {
    font-size: 14px;
    font-weight: bolder;
    color: #58595b;
    letter-spacing: normal;
}
p.smaller {
    font-size: 14px;
    font-weight: bolder;
    letter-spacing: normal;
}

h1 {
    font-size: 25px;
    letter-spacing: 1px;
}
h2 {
    font-size: 25px;
    letter-spacing: 2px;
}

.full-img {
    width: 100%;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in { 
    opacity:0;
    /* Number of times to repeat */
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    /* End frame key */
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    /* Duration of animation */
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

/* Delay before animation starts */
.fade-in.one {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

/* Read more *******************************************/
a#read-more {
    color: #999;
    cursor: pointer;
    display: inline;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
a#read-more:before {
    content: 'read more';
}
a#read-more.active:before {
    content: 'back to top';
}
a#read-more:hover {
    color: #ccc;
}
/* Read More End ****************************************/

/* Margins **********************************************/
.my-30 {margin-top: 30px;margin-bottom: 30px;}
.my-60 {margin-top: 60px;margin-bottom: 60px;}
.my-90 {margin-top: 90px;margin-bottom: 90px;}

.mt-15 {margin-top: 15px;}
.mt-30 {margin-top: 30px;}
.mt-60 {margin-top: 60px;}
.mt-90 {margin-top: 90px;}

.mb-30 {margin-bottom: 30px;}
.mb-60 {margin-bottom: 60px;}
.mb-90 {margin-bottom: 90px;}
.m-0 {margin: 0;}
/* Margins End ******************************************/

/* Paddings **********************************************/
.py-20{padding-top: 20px;padding-bottom: 20px;}
.py-30{padding-top: 30px;padding-bottom: 30px;}
.py-60{padding-top: 60px;padding-bottom: 60px;}
.py-90{padding-top: 90px;padding-bottom: 90px;}
.p-0 {padding: 0;}
/* Paddings End ******************************************/

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
textarea {
    resize: none;
}

/*
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  60% {
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  60% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  60% {
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
*/
section {
    padding-top: 150px;
    padding-bottom: 30px;
    position: relative;
}
.center {
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
/* Global End *******************************************/


/* Header ***********************************************/
.navbar-anchor {
  display: block;
  height: 110px; /*same height as header*/
  margin-top: -110px; /*same height as header*/
  visibility: hidden;
}
.logo {
    margin: 25px 0;
}
.navbar {
	margin-bottom: 0;
    position: fixed;
    z-index: 99999 !important;
    top: 0;
    width: 100%;
    background-color: #fff;
}
.navbar-brand {
    padding: 0;
    float: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.navbar-default {
    border: none;
    text-align: center;
}
.navbar-collapse {
    margin: 30px 0;
}
.navbar-default .navbar-nav > li{
    background-color: transparent;
    position: relative;
    float: none;
    display: inline-block;
    z-index: 10000;
}
.navbar-default .navbar-nav > li > a {
    color: #58595b;
    font-weight: bolder;
    text-align: center;
}
.navbar-default .navbar-nav > li > a:hover::after {
    width: 100%;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #e12826;
}
.navbar-default .navbar-nav > li > a:focus {
    color: #e12826;
}
.navbar-default .navbar-nav > li > a.active{
    color: #e12826;
}

.navbar-default .navbar-nav > .active > a {
    color: #e12826;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #e12826;
    background-color: transparent;
}

/* Header End **************************************************************/

/* Home */

.backtoarrow {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10000;
    background-color: #e12826;
    height: 40px;
    width: 40px;
    padding: 12px 10px;
    border-radius: 50%;
}
#next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.backtoarrow img {
    max-height: 25px;
}
.home-parallax {
    height: 100vh;
    position: relative;
}
.home-parallax .container {
    height: 100vh;
}
.home-parallax img {
    position: absolute;
    top: 27%;
    transform: translateY(-27%);
    left: 0;
}

.about {
    background-color: #fff;
}
#home-slider {
    max-width: 600px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}
#home-slider button.btn {
    background-color: #d81f31;
    color: #fff;
    font-weight: bolder;
    font-size: 34px;
    padding: 15px 50px;
    border-radius: 12px;
    min-width: 300px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
#home-slider button.btn:hover {
    background-color: #0070b9;
}
#home-slider a {
    color: #0070b9;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-bottom: 1px solid #0070b9;
    font-weight: bolder;
    max-width: 140px;
    font-size: 20px;
}
#home-slider a:hover {
    color: #d81f31;
    border-bottom: 1px solid #d81f31;
}
#home-slider .owl-controls .owl-page span {
    opacity: 1;
    background-color: #bcbec0;
}
#home-slider .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
    background-color: #414142;
}

.mobile {
    margin-top: 30px;
}
.mobile img {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.mobile button.btn {
    background-color: #d81f31;
    color: #fff;
    font-weight: bolder;
    font-size: 16px !important;
    min-width: auto !important;
    padding: 5px 30px !important;
    border-radius: 5px !important;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
.mobile button.btn:hover {
    background-color: #0070b9;
}
.mobile a {
    color: #0070b9;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-bottom: 1px solid #0070b9;
    font-weight: bolder;
    max-width: 120px;
    font-size: 14px !important;
}
.mobile a:hover {
    color: #d81f31;
    border-bottom: 1px solid #d81f31;
}

.application {
    background-color: #fff;
}
.application button.btn {
    background-color: #d81f31;
    color: #fff;
    font-weight: bolder;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 10px;
    min-width: 170px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
.application button.btn:hover {
    background-color: #0070b9;
}
.application a {
    color: #0070b9;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-bottom: 1px solid #0070b9;
    font-weight: bolder;
    max-width: 110px;
    font-size: 15px;
}
.application a:hover {
    color: #d81f31;
    border-bottom: 1px solid #d81f31;
}

.statistics {
    background-color: #fff;
}
.statistics button.btn {
    background-color: #d81f31;
    color: #fff;
    font-weight: bolder;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 10px;
    min-width: 170px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
.statistics button.btn:hover {
    background-color: #0070b9;
}
.statistics a {
    color: #0070b9;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-bottom: 1px solid #0070b9;
    font-weight: bolder;
    max-width: 110px;
    font-size: 15px;
}
.statistics a:hover {
    color: #d81f31;
    border-bottom: 1px solid #d81f31;
}

.sample {
    background-color: #fff;
    position: relative;
}
.sample button.btn {
    background-color: #d81f31;
    color: #fff;
    font-weight: bolder;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 10px;
    min-width: 170px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
.sample button.btn:hover {
    background-color: #0070b9;
}
.sample a {
    color: #0070b9;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-bottom: 1px solid #0070b9;
    font-weight: bolder;
    max-width: 110px;
    font-size: 15px;
}
.sample a:hover {
    color: #d81f31;
    border-bottom: 1px solid #d81f31;
}
/* Footer ******************************************************************/
.border-bg {
    background: rgba(225,41,38,1);
    background: -moz-linear-gradient(left, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(50%, rgba(225,41,38,1)), color-stop(50%, rgba(0,112,186,1)), color-stop(50%, rgba(225,41,38,1)), color-stop(50%, rgba(0,112,186,1)), color-stop(50%, rgba(0,112,186,1)), color-stop(100%, rgba(0,112,186,1)));
background: -webkit-linear-gradient(left, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 100%);
background: -o-linear-gradient(left, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 100%);
background: -ms-linear-gradient(left, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 100%);
background: linear-gradient(to right, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(225,41,38,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 50%, rgba(0,112,186,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e12926', endColorstr='#0070ba', GradientType=1 );
    
    height: 10px;
    margin-bottom: 20px;
}

.footer-border {
    background: rgba(225,41,38,1);
    background: -moz-linear-gradient(left, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(8.33333333%, rgba(225,41,38,1)), color-stop(8.33333333%, rgba(0,112,186,1)), color-stop(8.33333333%, rgba(225,41,38,1)), color-stop(8.33333333%, rgba(0,112,186,1)), color-stop(8.33333333%, rgba(0,112,186,1)), color-stop(100%, rgba(0,112,186,1)));
background: -webkit-linear-gradient(left, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 100%);
background: -o-linear-gradient(left, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 100%);
background: -ms-linear-gradient(left, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 100%);
background: linear-gradient(to right, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(225,41,38,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 8.33333333%, rgba(0,112,186,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e12926', endColorstr='#0070ba', GradientType=1 );
    
    width: 100%;
    height: 10px;
}
.footer {
    height: 230px;
}
footer {
    margin-top: 30px;
    position: relative;
    z-index: 1 !important;
    background-color: #fff;
    padding-top: 0;
    width: 100%;
    padding-bottom: 20px;
}
footer i {
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    color: #0070b9;
}
footer span {
    color: #231f20;
}
footer .foot-big-box {
    width: 360px;
    display: inline;
}
footer .foot-box {
    position: relative;
    margin-right: 20px;
}
footer .foot-box a{
    font-size: 16px;
}
footer .foot-box span:before {
    content: '\00b7';
    font-size: 30px;
    position: absolute;
    top: -13px;
    right: -13px;
}
footer a {
    max-width: 100% !important;
    color: #2a3283 !important;
    border-bottom: 1px solid #2a3283;
    font-weight: bolder;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
footer a:hover {
    color: #d81f31 !important; 
    border-bottom: 1px solid #d81f31;
}
footer a:hover i {
    color: #d81f31;
}
footer p {
    margin-bottom: 0;
}
footer p.copy {
    color: #231f20;
    font-size: 11px;
}
footer p.powered {
    color: #231f20;
    font-size: 9px;
    margin-top: 3px;
}
footer #facebook p {
    text-align: right;
}
footer p.powered a {
    color: #0071ba;
    line-height: normal;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;  
    -moz-transition: 0.3s all ease;
}
footer p.powered a:hover {
    color: #d81f31;
}
#footer-last .col-md-4 {
    margin-top: 7px;
}
footer img {
    height: 50px !important;
}
footer img.blueright{
    margin-left: 3px;
}
/* Footer End *********************************************************/


/* Media **************************************************************/
@media only screen and (max-width: 1619px) {
    .hidden-1619 {
        display: none;
    }
}
@media only screen and (max-width: 1400px) {
    .statistics .hidden-sm .col-md-4 img{
        max-height: 300px;
    }
}
@media only screen and (max-width: 1199px) {
    #next {
        display: none !important;
    }
    #prev {
        display: none !important;
    }
    .navbar-brand {
        position: absolute;
        top: 0;
        right: 0;
        transform: none;
    }
    #footer-last .col-md-4 {
        margin-top: 0;
    }
    footer .foot-box {
        width: 100%;
    }
    footer .foot-box {
        margin-right: 17px;
    }
    footer .foot-box a{
        font-size: 10px;
    }
    footer .foot-box span:before {
        right: -10px;
    }
    .footer-last {
        font-size: 10px !important;
    }
    footer {
        height: auto !important; 
    }
    section {
        height: auto !important;
        padding-bottom: 0;
        padding-top: 40px;
    }
    .center {
        position: relative;
        bottom: auto;
        left: auto;
        top: auto !important;
        transform: none;
    }
}
@media only screen and (max-width: 991px) {
    footer img.blueright{
        margin-left: 1px;
    }
    
    .footer-border { 
        height: 5px;
    }
    .border-bg { 
        height: 5px;
    }
    .home-parallax img {
        position: relative;
        margin: 0 auto;
        top: auto;
        transform: none;
        margin-top: 50px;
        display: block;
        left: auto;
    }
    
    .statistics .hidden-sm .col-md-4 img{
        max-height: 100%;
    }
    #footer-last .col-md-10 {
        padding: 0;
    }
    p.smaller {
        margin-bottom: 30px;
    }
    
    footer .foot-box {
        width: auto;
        margin-right: 15px !important;
    }
    footer .foot-box span:before {
        content: '\00b7';
    }
    #be-prepared {
        margin-top: 60px;
    }
    footer .foot-box a{
        font-size: 8px;
    }
    footer .foot-box {
        margin-right: 10px;
    }
    footer .foot-box span:before {
        content: '\00b7';
        font-size: 30px;
        position: absolute;
        top: -10px;
        right: -10px;
    }
    #footer-last {
        margin-top: 5px !important;
        display: block;
    }
    .footer-last {
        font-size: 8px !important;
        letter-spacing: normal;
        display: block !important;
        position: relative;
        margin-top: 5px;
        line-height: normal;
    }
    footer img {
        height: 15px !important;
    }
    footer #facebook p {
        font-size: 8px !important;
        font-weight: bolder;
        float: right !important;
        text-align: right !important;
    }
    footer #facebook p i{
        font-size: 18px !important;
    }
    .statistics img {
        margin-bottom: 30px;
    }
    section {
        height: auto !important;
        padding-bottom: 0;
        padding-top: 40px;
    }
    p.small {
        font-size: 10px;
        margin-top: 0px !important;
    }
    
    .home-parallax {
        height: calc(100vh - 72px);
    }
    .home-parallax .container {
        height: auto;
    }
    
    body {
        margin-top: 72px;
    }
    
    .navbar-nav li a {
        font-size: 17px;
    }
    .navbar {
        width: 100%;
    }
    .navbar-default {
        background-color: #fff;
    }
    
    /* Collapse Navigation */
    .navbar-anchor {
      height: 72px; /*same height as header*/
      margin-top: -72px; /*same height as header*/
    }
    .navbar-brand {
        float: none;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    .navbar-default .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .navbar-default .navbar-nav > li > a {
        color: #58595b;
    }
    .navbar-header {
      float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        float: none !important;
        background-color: #fff;
        margin-right: 0;
        border: none;
        position: absolute;
        left: 0;
        margin-left: 20px;
    }
    /*
    .navbar-default .navbar-toggle:hover{
        background-color: #333;
    }
    .navbar-default .navbar-toggle:focus{
        background-color: #333;
    }
    .navbar-default .navbar-toggle:active{
        background-color: #333;
    }
    
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #333;
    }
    .navbar-default .navbar-toggle:focus .icon-bar{
        background-color: #fff;
    }
    .navbar-default .navbar-toggle:active .icon-bar{
        background-color: #fff;
    }
    .navbar-default .navbar-toggle:hover .icon-bar{
        background-color: #fff;
    }
    */
    .navbar-collapse {
        border-top: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        text-align: center;
        display: block;
        margin: 0 auto;
        float: none;
        margin-top: 72px;
        background-color: #fff;
        position: absolute;

        width: 100vw;
        left: 0;
        z-index: 10000;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .container > .navbar-collapse {
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
        display: block;
        margin: 0 auto;
    }
    .navbar-nav>li {
        float: none;
        width: 100%;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }

    .row-eq-height {
        display: inline;
    }
    
    .navbar-brand img {
        height: 28px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .navbar-toggle {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .navbar {
        height: 72px;
    }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 600px) {
    p {
        text-align: left;
    }
    
}

@media only screen and (max-width: 320px) {
     
}
/* Media End ***************************************************/