/*!?
 * Bootstrap v4.1.0 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #78d5ef;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --black: #000;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-m: "Monospace";
    --font-family-sans-serif: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

h1,h2,h3,h5,h6 
{
    font-family: Lora;
    font-weight: 400;
    font-style: normal;
    color: #c82333;

    line-height: 1.3;
    letter-spacing: 0.5px;
}
p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.button,
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 4px;
}
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }
    
}
/* footer */
.gray,
.copyright,
.ftco-footer-social a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #555;
} /* Базовая настройка футера */
 .ftco-footer .row {
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
 }

 .ftco-footer .col-lg-4,
 .ftco-footer .col-md-6,
 .ftco-footer .col-md-4 {
     flex: 1;
     padding: 0 10px;
     text-align: center;
 }

 .footer-logo {
     display: block;
     margin: 0 auto;
     padding-top: 0;
     width: 80px;
 }

 .footer-logo {
     display: block;
     margin: 0 auto;
     padding-top: 0;
     width: 100px;
     /* фиксированная ширина */
     height: auto;
     /* сохраняем пропорции */
     object-fit: contain;
     /* предотвращает растяжение */
 }

 .ftco-footer {
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     line-height: 1.2;
     letter-spacing: 0.2px;
     font-weight: 400;
     color: #666;

 }

 /* Текст */
 .gray,
 .copyright {
     font-size: 13px;
     margin: 0 auto;
     text-align: center;
     color: #666;
 }

 /* Социальные иконки */
 .ftco-footer-social {
     display: flex;
     justify-content: center;
     gap: 15px;
     padding-left: 0;
 }

 .social-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background-color: #fff;
     transition: background-color 0.3s ease, color 0.3s ease;
     text-decoration: none;
 }

 .social-icon svg {
     width: 18px;
     height: 18px;
     display: block;
     color: #c82333;
     transition: color 0.3s ease;
 }

 .social-icon:hover {
     background-color: #e63946;
 }

 .social-icon:hover svg {
     color: #fff;
 }

 @media (max-width: 576px) {
     .ftco-footer .row {
         flex-wrap: wrap;
         gap: 10px;
     }

     .footer-logo {
         width: 60px;
     }

     .gray,
     .copyright {
         font-size: 12px;
     }

     .ftco-footer {
         padding-top: 0.5rem;
         padding-bottom: 0.5rem;
     }
 }

  /* navbar start */
 .site-menu {
     background-color: #00274d;
     color: white;
     padding: 0.5rem 1rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     transition: padding 0.3s ease, background-color 0.3s ease;
 }

 .site-brand img {
     height: 40px;
 }
.menu-link {
    display: block;
    padding: .5rem 1rem
}

.menu-link:focus,
.menu-link:hover {
    text-decoration: none
}
 .menu-list {
     display: flex;
     list-style: none;
     gap: 0.5rem;
 }

 .menu-link {
     text-decoration: none;
     color: white;
     font-size: 13px;
     line-height: 40px;
     transition: color 0.3s ease;
 }

 .menu-link:hover,
 .menu-item.active .menu-link {
     color: #c82333;
     font-weight: bold;
     border-bottom: 2px solid #c82333;
 }

 .menu-toggle {
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     display: none;
     margin-left: auto;
     z-index: 1001;
 }

 .menu-icon {
     transition: transform 0.3s ease;
 }

 .menu-panel {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     background-color: #00274d;
     padding: 1rem;
     flex-direction: column;
     gap: 0.5rem;
     z-index: 999;
 }

 .menu-panel.show {
     display: flex;
 }
 .menu-list {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     justify-content: center;
 }

 .d-none {
     display: none !important;
 }

 @media (max-width: 992px) {
     .menu-toggle {
         display: block !important;
     }

     .menu-panel.show {
         display: flex;
     }
     .menu-panel{
        padding: 0;
     }
    .menu-link{
        padding: 0.5rem;
    }
 }

 @media (min-width: 993px) {
     .menu-panel {
         display: flex !important;
         position: static;
         flex-direction: row;
         align-items: center;
         padding: 0;
         gap: 1rem;
     }

     .menu-toggle {
         display: none !important;
     }
    
 }

 @media (max-width: 400px) {
     .site-menu {
         padding: 0.5rem 0.5rem;
     }

     .site-brand img {
         max-width: 200px;
         height: auto;
     }

     .menu-toggle {
         font-size: 1.2rem;
     }
     .menu-panel{
        padding: 0;
     }
    .menu-link{
        padding: 0.2rem;
    }
 }

 /*tabs positions start*/

  .nav-tabs .nav-link:hover {


      color: #000;
      -moz-transition: all .3s ease;
      -o-transition: all .3s ease;
      -webkit-transition: all .3s ease;
      -ms-transition: all .3s ease;
      transition: all .3s ease;
      background: #95a3cc;
      border-bottom: 1px solid #000;
  }



  .nav-tabs .nav-link.active {
      color: #c82333;
      border-bottom: 2px solid #c82333;
      font-weight: bold;
  }


  .nav-tabs .nav-link {
      border-radius: 0;
      margin-bottom: 0;
      color: #00274d;
      font-size: 18px;
      font-weight: 400;
      position: relative;
      display: inline-block;
      border-bottom: 1px solid #00274d;
      margin-left: 5px;
      margin-right: 5px;
      font-size: 18px;
      background: rgba(0, 0, 0, .1);
  }

  .nav-tabs .nav-link:hover {
      color: #c82333;
      border-bottom: 2px solid #c82333;
  }

/* hero-section  start*/
  .hero-section {
    min-height: clamp(950px, 92vh, 1100px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(14rem, 27vh, 18rem); 
    padding-left: clamp(2rem, 9vw, 10rem);
    padding-right: 1.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-content {
    max-width: clamp(280px, 60vw, 600px);
    z-index: 1;
  }
  
  .hero-content h1 {
    color: white;
    font-size: clamp(1.6rem, 1rem + 2vw, 3rem);
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
    text-align: left;
  }
  @media (max-width: 320px) {
    .hero-section {
      padding-top: clamp(7.5rem, 0.30rem + 1.00vw, 1.5rem)
    }
    .hero-content{
     padding-top:clamp(1rem, 4.60rem + -3.00vw, 4rem);
     padding-left: clamp(0.046875rem, -0.24rem + 1.45vw, 1.5rem);
     font-size: 0.75rem;
    }
  }
  @media (min-width: 321px)and (max-width: 576px) {
    .hero-section {
      padding-top: clamp(1.125rem, 0.81rem + 1.57vw, 1.375rem)
    }
    .hero-content{
      padding-top:clamp(12rem, 8.17rem + -5.56vw, 4rem)
  
    }
  }
  @media (min-width: 577px) and (max-width: 768px)  {
   .hero-section {
      padding-top: clamp(1.25rem, 0.83rem + 0.56vw, 1.5rem)
     
    } 
     .hero-content {
       max-width:clamp(6rem, 52.24rem + -96.34vw, 17.5rem);
      padding-top:clamp(7rem, 1.98rem + 8.38vw, 6rem)
    } 
  }
  @media (min-width: 769px) and (max-width: 992px)  {
   .hero-section {
      padding-top:clamp(1.5rem, 5.50rem + -3.33vw, 3rem)
     
    } 
     .hero-content {
      max-width:clamp(1.5rem, 40.83rem + -32.78vw, 16.25rem);
      padding-top:clamp(1.5rem, 18.83rem + -14.44vw, 8rem)
    } 
  }
    .hero-section {
      background-position: 65% center;
    }
  /* end hero-section */

article,
footer,
nav,
section {
    display: block
}



[tabindex="-1"]:focus {
    outline: 0 !important
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

hr {
    margin-top: 1rem;
    margin-bottom: 3rem;
    height: 1px;
    border: 0;
    border-top: 1px solid #00274d
}



ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

sub {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

a {
    color: #00274d;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:hover {
    color: #c82333;
    text-decoration: underline
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

img {
    vertical-align: middle;
    border-style: none
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
    -webkit-appearance: listbox;
    appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

[hidden] {
    display: none !important
}

p.white {
    color: #fff
}

p.black {
    color: #000
}



h4 {
    font-family: Lora;
    font-weight: 400;
    font-style: normal;
    color: #00274d;
    font-size: 42px
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (max-width:575px) {
    .container {
        max-width: 530px;
        padding-right: 25px;
        padding-left: 25px;
        margin-right: auto;
        margin-left: auto
    }
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}



.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #eaf8fd;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25)
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px)
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-sm,
.input-group-sm>.form-control {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-sm>select.form-control:not([size]):not([multiple]),
select.form-control-sm:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px)
}

.form-control-lg,
.input-group-lg>.form-control {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-lg>select.form-control:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px)
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .5rem;
    margin-left: -1.25rem
}

.media.form-check-input {
    margin-top: .5rem
}

.media.text-muted {
    margin-left: -1.25rem;
    margin-top: .5rem
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.form-inline .form-check {
    width: 100%
}

@media (min-width:576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .btn {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

.btn:focus,
.btn:hover {
    text-decoration: none
}

.btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25)
}

.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    background-image: none
}

.btn-primary {
    color: #212529;
    background-color: #95a3cc;
    border-color: #95a3cc
}

.btn-primary:hover {
    color: #212529;
    background-color: #56caeb;
    border-color: #4ac7ea
}

.btn-primary:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5)
}

.btn-primary:disabled {
    color: #212529;
    background-color: #78d5ef;
    border-color: #78d5ef
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #4ac7ea;
    border-color: #3fc3e8
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5
}

.btn-light:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-dark {
    background: #fff;
    border: 1px solid #00274d;
    color: #c82333;
    padding: .175rem .75rem
}

.btn-dark:hover {
    color: #66749b;
    background-color: #fff ;
    border-color: #1d2124
}

.btn-dark:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-primary {
    color: #78d5ef;
    background-color: transparent;
    background-image: none;
    border-color: #78d5ef
}

.btn-outline-primary:hover {
    color: #212529;
    background-color: #78d5ef;
    border-color: #78d5ef
}

.btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5)
}

.btn-outline-primary:disabled {
    color: #78d5ef;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #78d5ef;
    border-color: #78d5ef
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .5)
}

.btn-outline-secondary {
    color: #00274d;
    font-size: 18px;
    background-color: transparent;
    background-image: none;
    border-color: #00274d
}

.btn-outline-secondary:hover {
    color: #c82333;
    background-color: rgba(0, 0, 0, .1);
    border-color: #00274d
}

.btn-outline-secondary:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-link {
    font-weight: 400;
    color: #78d5ef;
    background-color: transparent
}

.btn-link:hover {
    color: #34c0e7;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent
}

.btn-link:focus {
    text-decoration: underline;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link:disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

button#submit_form.btn.btn-dark.btn-outline-secondary {
    font-weight: 500;
    color: #c82333;
    position: relative;
    left: 30%;
    width: 40%;
    line-height: 1.5;
    padding: .375rem .75rem
}

button#submit_form.btn.btn-dark.btn-outline-secondary:hover {
    color: #00274d;
    background-color: rgba(0, 0, 0, .1);
    border-color: #00274d
}

.fade {
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

@media screen and (prefers-reduced-motion:reduce) {
    .fade {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

.collapse:not(.show) {
    display: none
}

.btn-group {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group>.btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.btn-group>.btn:hover {
    z-index: 1
}

.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0
}

.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.input-group>.form-control:focus {
    z-index: 3
}

.input-group>.form-control+.form-control {
    margin-left: -1px
}

.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
    margin-top: 0
}



.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
} 

@media (max-width:575px) {
    .page-link {
        padding: .3rem !important
    }
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #66749b;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    z-index: 2;
    color: #66749b;
    outline: 0 !important;
    text-decoration: none !important
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25);
    box-shadow: 0 0 0 .2rem rgba(120, 213, 239, .25)
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer
}

.page-item:first-child .page-link {
    margin-left: 0
}

.page-item.active .page-link {
    z-index: 1;
    color: #000;
    background-color: #95a3cc;
    border-color: #95a3cc
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    color: #000
}

.badge-primary {
    color: #343a40;
    background-color: #fff
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
    color: #343a40;
    text-decoration: none;
    background-color: #fff
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #545b62
}

.badge-info {
    color: #00274d
}

.badge-info[href]:focus,
.badge-info[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

.badge-light[href]:focus,
.badge-light[href]:hover {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5
}

.badge-dark {
    color: #fff;
    background-color: #343a40
}

.badge-dark[href]:focus,
.badge-dark[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}


.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.list-group-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px
}

.list-group-item-media {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: -1px
}

.list-group-item:last-child {
    margin-bottom: 0
}

.list-group-item:focus,
.list-group-item:hover {
    z-index: 1;
    text-decoration: none
}

.list-group-item:disabled {
    color: #6c757d;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #78d5ef;
    border-color: #78d5ef
}

.list-group-item-primary {
    color: #3e6f7c;
    background-color: #d9f3fb
}


.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #78d5ef !important
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #4ac7ea !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #000 !important
}

.bg-black {
    background-color: #000 !important
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #78d5ef !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}


.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }


    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width:576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width:768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width:992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width:1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.position-relative {
    position: relative !important
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}


.site-brand {
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    display: block
} 

.bg-primary {
    background: #c82333
}

.btn {
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 16px
}

.btn:active,
.btn:focus,
.btn:hover {
    outline: 0
}

.btn.btn-primary {
    background: rgba(0, 0, 0, .1);
    border: 1px solid #00274d;
    color: #66749b
}

.btn.btn-primary:hover {
    color: #c82333
}

.btn.btn-primary.btn-outline-primary {
    border: 1px solid #000;
    color: #000
}

.btn.btn-primary.btn-outline-primary:hover {
    border: 1px solid #000;
    background: 0 0;
    color: #66749b
}

.btn.btn-white {
    background: #fff;
    border: 1px solid #fff;
    color: #000
}

.btn.btn-white:hover {
    border: 1px solid #000;
    background: #000;
    color: #fff
}

.btn.btn-white.btn-outline-white {
    border-color: rgba(255, 255, 255, .8);
    background: 0 0;
    border-width: 1px;
    color: #fff
}

.btn.btn-white.btn-outline-white:active,
.btn.btn-white.btn-outline-white:focus,
.btn.btn-white.btn-outline-white:hover {
    background: #c82333;
    border-color: #c82333;
    color: #000
}

.btn.btn-outline-black {
    border-color: #000;
    background: 0 0;
    border-width: 1px;
    color: #000
}

.btn.btn-outline-black:active,
.btn.btn-outline-black:focus,
.btn.btn-outline-black:hover {
    background: #000;
    border-color: #000;
    color: #fff
}

.btn.btn-black {
    background: #000;
    border: 1px solid #c82333;
    color: #fff
}

.btn.btn-black:hover {
    border: 1px solid #000;
    background: #fff;
    color: #c82333
}

.btn.btn-white.btn-outline-black:hover {
    background: #000;
    border: 1px solid #c82333;
    color: #fff
}

.ftco-about .one-half_left {
    width: 100%;
    padding: 30px 15px
}

.ftco-about .one-half_left.img {
    display: block;
    margin-top: 5%
}

@media (min-width:768px) {
    .ftco-about .one-half_left {
        padding: 0 13% 8% 5%;
        width: 50%
    }
}

@media (max-width:767.99px) {
    .ftco-about .one-half_left.img {
        height: 300px
    }
}

@media (min-width:768px) {
    .ftco-about .one-half_left .overlap {
        margin-right: -250px;
        padding: 40px;
        background: rgba(0, 0, 0, .2)
    }
}

@media (max-width:767px) {
    .overlap {
        padding: 2em;
        background: rgba(0, 0, 0, .2)
    }
}

@media (max-width:767px) {
    p.white {
        background: rgba(0, 0, 0, .5);
        color: #fff;
        padding: 2em
    }
}

@media (min-width:768px) {
    p.white {
        background: rgba(0, 0, 0, .4);
        color: #fff;
        padding: 2em
    }
}

@media (min-width:991px) {
    p.white {
        padding: 40px;
        background: rgba(0, 0, 0, .4);
        color: #fff
    }
}

@media (min-width:991px) {
    .ftco-about .one-half_left.img {
        display: block;
        max-width: 100%;
        height: 400px
    }
}

@media (min-width:767px) {
    .ftco-about .one-half_left.img {
        display: block;
        max-width: 100%;
        height: 400px
    }
}

@media (max-width:992px) {
    .ftco-about .one-half_left.img {
        display: block;
        max-width: 100%;
        height: 400px
    }
}

@media (max-width:768px) {
    .ftco-about .one-half_left.img {
        display: block;
        max-width: 100%;
        height: 400px
    }
}

* {
    box-sizing: border-box
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #7587bd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px
}

.container_time {
    padding: 0 40px;
    position: relative;
    background-color: inherit;
    width: 50%
}

.container_time::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #fff;
    border: 4px solid #00274d;
    top: 15px;
    border-radius: 50%;
    z-index: 1
}

.left {
    left: 0
}

.right {
    left: 50%
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 25px;
    border: medium solid #7587bd;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #7587bd
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 25px;
    border: medium solid #7587bd;
    border-width: 10px 10px 10px 0;
    border-color: transparent #7587bd transparent transparent
}

.right::after {
    left: -12px
}

.content {
    background-color: #fff;
    position: relative;
    border-radius: 6px
}

.menu-entry {
    margin-bottom: 30px
}

.menu-entry .img {
    display: block;
    height: 300px ;
}

.menu-entry .text h3 {
    font-size: 18px;
    text-transform: uppercase
}

.menu-entry .text h3 a {
    color: #000
}

.ftco-cart button i {
    color: #c82333
}

.ftco-cart .form-control,
.ftco-cart button {
    height: 54px !important;
    text-align: center;
    bordeR: 1px solid rgba(255, 255, 255, .1) !important;
    color: #c82333 !important;
    padding: 0
}

.ftco-cart .form-group {
    position: relative
}

.ftco-cart .form-group .form-control {
    padding-right: 40px
}

.ftco-cart .form-group .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c82333
}

.ftco-cart .form-group .icon span {
    color: #c82333
}

@media (max-width:767.98px) {
    .ftco-cart .form-group .icon {
        right: 10px
    }
}

.ftco-cart .form-group .select-wrap {
    position: relative
}

.ftco-cart .form-group .select-wrap select {
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.cart-list {
    overflow-x: scroll
}

.cart-wrap .btn-primary {
    display: block;
    width: 100%
}

.cart-total {
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 20px
}

.cart-total h3 {
    font-size: 20px;
    text-transform: uppercase
}

.cart-total p {
    width: 100%;
    display: block
}

.cart-total p span {
    display: block;
    width: 50%
}

.cart-total hr {
    background: rgba(255, 255, 255, .1)
}

@media (max-width:480px) {
    .ftco-page {
        padding-top: 7em
    }
}

@media only screen and (min-width:481px) and (max-width:575px) {
    .ftco-page {
        padding-top: 8em
    }
}

@media (min-width:576px) {
    .ftco-page {
        padding-top: 9em
    }
}

@media (max-width:480px) {
    .overlap {
        padding-top: 0
    }
}

@media (max-width:480px) {
    p.white {
        background: rgba(0, 0, 0, .4);
        color: #fff;
        padding: 2em
    }
}

img.menu-img.img {
    filter: grayscale(1)
}

.menu-wrap {
    margin-bottom: 60px
}

.menu-wrap .menu-img {
    display: block;
    height: 270px
}

.menu-wrap .text h3 {
    font-size: 18px;
    text-transform: uppercase
}

.menu-wrap .text h3 a {
    color: #fff
}

#ftco-testimony {
    padding-bottom: 0;
    position: relative;
    z-index: 0
}

@media (max-width:1199.98px) {
    #ftco-testimony.img {
        background-position: center center !important
    }
}

.testimony {
    padding: 2em;
    color: #000
}

.ftco-social a {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 2px;
    background: #fcfaf7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

.ftco-social a span {
    color: #000
}

.form-control {
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #00274d !important
}

.form-control:active,
.form-control:focus {
    font-size: 18px;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #95a3cc !important
}

.ftco-tab-nav {
    padding: 0;
    margin: 0;
    display: inline-block !important
}

@media (max-width:767.98px) {
    .ftco-tab-nav {
        display: block !important;
        margin-bottom: 10px;
        width: 100% !important
    }
}

.ftco-tab-nav li {
    padding: 0;
    margin: 0 5px;
    display: inline-block !important
}

@media (max-width:767.98px) {
    .ftco-tab-nav li {
        display: block !important;
        margin-bottom: 10px;
        width: 100% !important
    }
}

.ftco-tab-nav li a {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .2em;
    color: #ccc;
    border: 2px solid #ccc;
    border-radius: 0 !important
}

.ftco-tab-nav li a.active {
    background: 0 0 !important;
    color: #000 !important;
    border: 2px solid #000
} 

.ftco-animate {
    opacity: 0;
    visibility: hidden
}

.bg-primary {
    background: #c82333 !important
}

.ftco-section .ftco-sub-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5em;
    color: #d4d4d4;
    font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 300
}

.ftco-section .ftco-primary-title {
    margin-top: 0;
    margin-bottom: 30px
}

.ftco-section {
    position: relative
}

@media (max-width:767.98px) {
    .ftco-section {
        padding: 1rem 0
    }
}

.ftco-bg-dark {
    background: #000
}

.ftco-footer {
    font-size: 14px;
    background: #00274d
}

.ftco-footer .ftco-footer-logo {
    text-transform: uppercase;
    letter-spacing: .1em
}

.ftco-footer p {
    color:#fff;
    font-size: 12px
}


.ftco-footer a {
    color: rgba(255, 255, 255, .7)
}

.ftco-footer a {
    color: #c82333
}

.ftco-footer a:hover {
    color: #fff;
}

.ftco-footer .ftco-heading-2 {
    font-size: 17px;
    font-weight: 400;
    color: #000
}

.ftco-footer .block-21 .text .heading {
    font-size: 16px;
    font-weight: 300
}

.ftco-footer .block-21 .text .heading a {
    color: rgba(255, 255, 255, .9)
}

.ftco-footer .block-21 .text .heading a:active,
.ftco-footer .block-21 .text .heading a:focus,
.ftco-footer .block-21 .text .heading a:hover {
    color: #c82333
}

.ftco-footer .block-21 .text .meta>div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

.ftco-footer .block-21 .text .meta>div a {
    color: gray
}

.ftco-footer-social li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block;
    color: #117a8b
}
/* footer social icons  */

 .ftco-footer-social {
     display: flex;
     align-content:space-evenly;
     gap: 15px;
 }

 .social-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: transparent;
     transition: background-color 0.3s ease, color 0.3s ease;
     text-decoration: none;
 }

 .social-icon svg {
     width: 20px;
     height: 20px;
     color: #fff;
     transition: color 0.3s ease;
 }

 .social-icon.twitter:hover {
     background-color: #1DA1F2;
 }

 .social-icon.facebook:hover {
     background-color: #4267B2;
 }

 .social-icon:hover svg {
     color: #fff;
 }

 .social-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #fff;
     transition: background-color 0.3s ease, color 0.3s ease;
     text-decoration: none;
 }

 .social-icon svg {
     width: 20px;
     height: 20px;
     color: red;
     transition: color 0.3s ease;
     display: block;
 }


 .social-icon:hover {
     background-color: #e63946;
 }

 .social-icon:hover svg {
     color: #fff;
 }
/* footer social icons  end*/

.ftco-footer-social li a span {
    position: absolute;
    font-size: 26px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ftco-footer-social li a:hover {
    color: #95a3cc
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .2)
    }

    70% {
        -moz-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

.heading-section {
    z-index: 0
}

.heading-section h2 {
    z-index: -1;
    font-size: 40px;
    position: relative;
    text-transform: uppercase
}

@media (max-width:767.98px) {
    .heading-section h2 {
        font-size: 28px
    }
}

.heading-section h2 span {
    color: #c82333
}

.heading-section-dark h2 {
    color: #000
}

.blog-img,
.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

@media (max-width:767.98px) {
    .img-about {
        height: 400px;
        margin-bottom: 30px
    }
}

.ftco-page {
    position: relative;
    width: 100%;
    display: block
}

.block-20 {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    display: block;
    width: 100%;
    height: 270px
}

.blog-entry {
    overflow: hidden
}

@media (min-width:768px) {
    .blog-entry {
        margin-bottom: 30px
    }
}

@media (max-width:767.98px) {
    .blog-entry {
        margin-bottom: 30px
    }
}

.blog-entry .text {
    position: relative
}

.blog-entry .text .heading {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 400
}

.blog-entry .text .heading a {
    color: #fff
}

.blog-entry .text .heading a:active,
.blog-entry .text .heading a:focus,
.blog-entry .text .heading a:hover {
    color: #c82333
}

.blog-entry .meta>div {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0;
    font-size: 14px
}

.blog-entry .meta>div a {
    color: gray;
    font-size: 15px
}

.blog-entry .meta>div a:hover {
    color: #666
}

.block-23 ul {
    padding: 0;
    margin-top: .7em
}

.block-23 ul li,
.block-23 ul li>a {
    display: table;
    line-height: 1.5;
    margin-bottom: 5px
}

.block-23 ul li span {
    color: rgba(255, 255, 255, .7)
}

.block-23 ul li .icon,
.block-23 ul li .text {
    display: table-cell
}

.block-23 ul li .icon {
    width: 40px;
    font-size: 18px;
    padding-top: 2px;
    color: #fff
}

.block-6 {
    margin-bottom: 40px
}

.block-18 .icon>span {
    font-size: 40px
}

.block-18 .text span {
    display: block
}

.block-27 ul {
    padding: 0;
    margin: 0
}

.block-27 ul li {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400
}

.block-27 ul li a,
.block-27 ul li span {
    color: #c82333;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #674c27
}

.block-27 ul li.active a,
.block-27 ul li.active span {
    background: #c82333;
    color: #fff;
    border: 1px solid transparent
}

.contact-section .contact-info p span {
    color: #000
}

.contact-form .form-group {
    position: relative
}

.contact-form .form-control {
    height: 58px !important;
    padding-left: 0;
    padding-right: 0;
    background: 0 0 !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: 13px;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.contact-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .9)
}

.contact-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, .9)
}

.contact-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, .9)
}

.contact-form .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, .9)
}

.contact-form .form-control:active,
.contact-form .form-control:focus {
    border-color: #c82333 !important
}

.contact-form textarea.form-control {
    height: inherit !important
}

.block-9 .form-control {
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px
}

.block-21 .blog-img {
    display: block;
    height: 80px;
    width: 80px
}

.block-21 .text {
    width: calc(100% - 100px)
}

.block-21 .text .heading {
    font-size: 16px
}

.block-21 .text .heading a {
    color: #ccc
}

.block-21 .text .heading a:active,
.block-21 .text .heading a:focus,
.block-21 .text .heading a:hover {
    color: #c82333
}

.block-21 .text .meta>div {
    display: inline-block;
    font-size: 16px;
    margin-right: 5px
}

.block-21 .text .meta>div a {
    color: #39496d
}

.post-info {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: .1em
}

.post-info>div {
    display: inline-block
}

.search-form .form-group {
    position: relative
}

.search-form .form-group input {
    font-size: 14px;
    padding-right: 50px;
    background: 0 0 !important;
    border: none;
    border-bottom: 1px solid #c82333;
    color: rgba(255, 255, 255, .7)
}

.search-form .form-group input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .7)
}

.search-form .form-group input::-moz-placeholder {
    color: rgba(255, 255, 255, .7)
}

.search-form .form-group input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .7)
}

.search-form .form-group input:-moz-placeholder {
    color: rgba(255, 255, 255, .7)
}

.search-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

