/* Global CSS */
:root {
    --libre: 'roboto', sans-serif;
    --sky-blue: #2699cf;
    --blue: #2b4d7a;
    --orange: #f66620;
    --black: #000000;
    --white: #ffffff;
    --gray: #F5F6FA;
    --red: #b62025;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'roboto', sans-serif;
    scroll-behavior: smooth;
    font-size: 20px;
    color: var(--black);
}

ul,
ul~li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

.font-xs {
    font-size: 10px !important;
}

.font-sm {
    font-size: 12px !important;
}

.font-md {
    font-size: 14px !important;
}

.font-lg {
    font-size: 16px !important;
}

.font-xl {
    font-size: 18px !important;
}

.text-shadow {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

a:hover {
    text-decoration: none;
}
.title h3 {
    font-size: 35px;
    color: var(--red);
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Comfortaa', cursive;
}
.title h3:after {
    content: '';
    width: 100px;
    height: 2px;
    background-color: var(--red);
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -20px;
    margin: auto;
}

.bg-gray {
    background-color: var(--gray);
}

.logo img {
   height:72px;
}
.logo {
    margin-top:0px;
}

header nav ul li:last-child {
    padding-right: 0px;
}

header {
    padding: 12px 0px;
    background-color: var(--white);
}

header nav {
    text-align: right;
    padding:18px 0px;
}

header nav ul {}

header nav ul li {
    display: inline-block;
    padding:8px 12px;
    position:relative;
}

header nav ul li a {
    font-weight:500;
    font-size: 15px;
    color: var(--black);
    display:block;
    text-decoration: none;
    position:relative;
    transition:0.5s;
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -o-transition:0.5s;
}

header nav ul li a:after{
    position:absolute;
    content:'';
    width:0px;
    height:2px;
    background-color:var(--red);
    top:28px;
    left:0px;
    transition:0.5s;
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -o-transition:0.5s;
 }

 header nav ul li.active a:after{
    width:100%;
 }

 header nav ul li.active a{
    width:100%;
    color:var(--red);
 }
header nav ul li ul {
    position: absolute;
    background-color: #f8f9fa;
    width: 200px;
    left: 0px;
    top: 35px;
    display: none;
    z-index: 80;
    border-bottom: solid 2px #ef0606;
}
header nav ul li a i.fa-angle-down {
    font-size: 18px;
}
header nav ul li ul li a:hover:after {
    display: none;
}
header nav ul li ul li {
    padding: 0px 0px;
    text-align: left;
    display: block;
}

header nav ul li ul li a {
    font-size: 15px;
    padding:10px 10px;
    border-bottom: solid 1px #d4dde6;
    font-weight: 400;
    line-height: 1.3;
    text-transform: capitalize;
}
header nav ul li:hover ul {
  display: block;   
}

header nav ul li ul li a:hover {
    background-color: #e20a17;
    color: #fff;
}

 header nav ul li a:hover:after{
    width:100%;
 }

header nav ul li a:hover {
    color: var(--red);
    text-decoration: none;
}
@media (min-width: 1200px){
.container {
    max-width: 1250px;
}}
.m-title {
    text-align: center;
}

.m-title h1 {
    font-size: 52px;
    color: var(--blue);
    font-weight: 700;
}

.btn-theme, button {
    background-color: var(--red) !important;
    border-radius:50px !important;
    color: var(--white) !important;
    font-weight: 200 !important;
    font-style: normal !important;
    border: 0px !important;
    font-size: 24px !important;
    padding: .5em 2em !important;
    font-family: var(--libre) !important;
}

.btn-theme:hover {
    color: var(--white) !important;
    text-decoration: none !important;
    background-color: rgb(245, 105, 110) !important;
}

.contact-btn {
    text-align: center;
    margin:40px 0px;
}

.three_boxes {
    margin-top: 60px;
}

.box-b {
    background-color: var(--gray);
    padding: 30px;
    transition: .2s all ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    border-bottom: solid 2px var(--sky-blue);
    height: 235px;
    position: relative;
}

.box-b:hover {
    background-color: var(--white);
    border-bottom: solid 2px var(--blue);
    -webkit-box-shadow: 0 5px 10px #9c9c9c;
    -ms-box-shadow: 0 5px 10px #9c9c9c;
    box-shadow: 0 5px 10px #9c9c9c;
}

.box-b p {
    color: var(--orange);
}

.box-b a {
    position: absolute;
    left: 0px;
    bottom: 8%;
    right: 0px;
    margin: auto;
    text-align: center;
    color: var(--blue);
}

section.sec {
    padding:40px 0px;
    position: relative;
}

section.sec.sec-1 {
    padding-top: 80px;
}

.in_form {}

.in_form h2 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.2em;
}

.in_form label {
    text-align: right;
    margin-bottom: 0px;
    margin-top: 10px;
}

.in-box {}

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

.part-logo {
    margin-bottom:0px;
}

.part-logo ul {
    justify-content: center;
    align-items: center;
    display: flex;
}

.part-logo ul li {
    display: inline-block;
    margin: 0px 20px;
}

.part-logo ul li img {
    height: 40px;
    max-width: 100%;
}

.cer-logo img {
    height: 100px;
    width: auto !important;
}

.sm-title {}

.sm-title h3 {
    margin-bottom: 20px;
}

.box-bb {
    text-align: center;
    background-color: var(--gray);
    padding: 30px;
    height: 375px;
    border-bottom: solid 1px var(--orange);
    -webkit-box-shadow: 0 5px 10px #9c9c9c;
    -ms-box-shadow: 0 5px 10px #9c9c9c;
    box-shadow: 0 5px 10px #9c9c9c;
    cursor:pointer;
    transition: .2s all ease-in-out;
}
.box-bb:hover {
    box-shadow: 0px 0px 0px #fff;
    -webkit-box-shadow: 0 0px 0px #fff;
    -ms-box-shadow: 0 0px 0px #fff;
    background-color: #fff;
    border: solid 1px var(--orange);
}
.box-bb span.fa {
    font-size: 40px;
    text-align: center;
    display: block;
    color: var(--orange);
    margin-bottom: 15px;
}

.box-bb h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
}

.get_form {}

.get_form p {
    text-align: center;
}

.get_form h3 {
    font-size: 40px;
    color: var(--red);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Comfortaa', cursive;
}

.get_form label {
    display: none;
}

.get_form input,
.get_form select, textarea {
    outline: none;
    border-radius:30px;
    background-color: #fff;
    padding: 12px 25px;
    border: solid 1px #c4c4c4;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.get_form input::placeholder, textarea::placeholder {
    color: #e0e0e0;
    font-size: 16px;
}

.site-footer {
    background-color:#333333;
    padding:50px 0px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    /*opacity: 0.8;*/
}

.site-footer h6 {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 5px;
    font-weight: 500;
    /* letter-spacing: 2px; */
    text-align: left;
    border-bottom: solid 1px #ccc;
    padding-bottom: 8px;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.footer-logo {
    margin-top:0px;
}

.footer-logo a {}

.footer-logo a img {
    max-width: 100%;
}

.footer-links ul {
    margin-top: 30px;
}
.footer-logo img {
    max-width: 100%;
    margin-bottom:20px;
}
.footer-links ul li {
    display: inline-block;
    margin: 0px 15px;
}

.footer-links ul li a {
    font-size: 16px;
    font-weight: 100;
}

.footer-links a {
    color: #fff;
    opacity: 1;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}
.footer-links a:hover {
    color: #50aed6;
}

section.sec.sec-4 {
    margin-bottom: 100px;
}
.box-bb img{     
    width: 60px;
    margin: 0px auto;
    padding-bottom: 20px; 
 }

 /*============inner-pages======================*/
 .inr-top-img{  text-align:center; margin-bottom: 20px;  }
 .inr-top-img img{   margin:auto; width:140px; }
 .inner-title{  text-align:center; }
 .inner-title h1{ color:var(--orange); font-size:35px; font-family:var(--libre);  }
.ddtxt{   }
.ddtxt h3{margin-bottom: 10px;font-size: 20px;font-weight: 600;color: var(--blue); margin-top: 10px;  }
.ddtxt p{margin-bottom: 0px;font-size: 18px;font-weight: 500;}
.ddtxt ul{margin-left:20px;margin-bottom: 10px;margin-top: 5px;}
.ddtxt ul li {font-size: 18px;margin-bottom: 5px;position: relative;padding-left: 15px;}
 .ddimg{overflow:hidden;vertical-align: bottom;margin-top: 41px;}
.ddimg img:hover{ -webkit-transform:scale(1.1);
   -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
     -o-transform:scale(1.1);
        transform:scale(1.1);  }
 .ddimg img{  width:100%;     
    cursor: pointer;
    transition: .6s all ease-in-out; }
    .ddtxt ul li:after {
    content: "\f111";
    font-family: fontawesome;
    font-size: 10px;
    color: var(--orange);
    position: absolute;
    left: 0px;
    top: 6px;
}

.case-box{  position:relative;  overflow:hidden; cursor: pointer;
    transition: .6s all ease-in-out; }
.case-box .case-img{   }
.case-box .case-img img:hover{  
-webkit-transform:scale(1.1);
   -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
     -o-transform:scale(1.1);
        transform:scale(1.1); 
}
.case-box .case-img img{  width:100%;  transition: .6s all ease-in-out; }
.case-box .case-txt {
    background-color: rgba(255, 255, 255, 0.84);
    position: absolute;
    border: solid 1px var(--blue);
    top: 10px;
    left: 10px;
    width: 200px;
    height: 185px;
    padding:10px;
}
.case-box .case-txt p{margin-bottom:0px;font-size: 15px;color:var(--blue);}
.case-box .case-txt h4{margin-bottom: 2px;font-size: 18px;}

.listwp {}

.listwp ul {}

.listwp ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.listwp ul li:after {/* content: ''; */content: "\f111";font-family: fontawesome;font-size: 10px;color: var(--orange);position: absolute;left: 0px;top: 6px;}
.inner-icon{ background-color:var(--white);  }
.inner-icon img{   width:150px !important; }
.main-slider {  position:relative; }
.main-slider .carousel-inner .carousel-caption {
    left: 15%;
    text-align: left;
    top: 50%;
}
.main-slider .carousel-inner .carousel-item img{  width:100%; }
.main-slider .carousel-inner .carousel-caption h3 {
    font-size: 45px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Comfortaa', cursive;
}
.main-slider .carousel-inner .carousel-caption .btn{  border-color:#fff; color:#fff;  }
.main-slider .carousel-inner .carousel-caption a{  margin-right:20px;  }
.main-slider .carousel-inner .carousel-caption .btn:hover{ background-color:#4d70af; border-color:#4d70af;  color:#fff;  }

.box-sol {
    text-align: center;
    /* height: 400px; */
    margin-bottom: 38px;
    overflow: hidden;
    /* border: solid 1px var(--red); */
    padding: 4px;
    /* border-radius: 3px; */
    box-shadow: 1px 1px 7px #000;
    background-color: #fff;
}
.box-sol img:hover {
    transform: scale(1.2)
}

.box-sol img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}
.box-sol i {
    font-size: 18px;
    color: var(--red);
}

.box-sol h3 {
    font-size: 25px;
    font-weight: 400;
    color: var(--red);
    font-family: 'Comfortaa', cursive;
}

.box-sol p {
    font-size: 18px;
}

.box-sol svg {
    color: var(--red);
    margin-bottom: 10px;
    height: 45px;
    width: 45px !important;
}

.vid_box {  overflow:hidden;  }

.vid_box img {
    width: 100%;
    cursor: pointer;
    transition:0.5s;
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -o-transition:0.5s;

}

.vid_box img:hover{  
    -webkit-transform:scale(1.2);
   -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
     -o-transform:scale(1.2);
        transform:scale(1.2);
    }

.vid_box_content h3 {
    font-weight: 400;
    color: var(--red);
    font-size: 35px;
    font-family: 'Comfortaa', cursive;
}

.vid_box_content p {
    font-size: 20px;
}
#partners .item {
    display: flex;
    justify-content: space-between;
}
.part-img { text-align:center; }
.part-img img {
    height: 40px;
    max-width: 100%;
    width: inherit  !important;
    margin: auto;
}

.bg-blue{  background-color:#4d70af; }
.proj-box {}

.proj-box h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
}

.proj-box p {
    color: rgba(255, 255, 255, 0.79);
    font-size: 22px;
    font-weight: 400;
}
.proj-box {}

.proj-box h3 {
    color: #fff;
    font-size: 30px;
    font-weight:700;
    font-family: 'Comfortaa', cursive;
}

.proj-box p {
    color: rgba(255, 255, 255, 0.79);
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 400;
}
.proj-nom {
    display: flex;
    justify-content: space-between;
}
.proj-nom .proj-b {
    display: inline-block;
    text-align: center;
}

.proj-nom .proj-b span {
    font-size: 40px;
    color: #fff;
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
}

.proj-nom .proj-b p {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
}
.quote-txt {
    margin-top: 20px;
}
.quote-txt h3 {
    text-align: center;
    font-size: 32px;
    color: #000;
   font-family: 'Comfortaa', cursive;
}
.quote-txt h3 span{ color:var(--red);  }
section.pro-sec{  padding:20px 0px; }
.b-title h3{  color:#000; }
section.bgs {
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.bgs .title h3{ color:#fff; }
.bgs .title p {
    color: #fff;
}


/*mega-menu-*/
/*header nav ul li:hover .mega-menu{ 
  display:block;
 }*/
.mega-menu {
    display:none;
    position: absolute;
    width: 970px;
    right: -100%;
    top: 64px;
    background-color: #fff;
    z-index: 10;
    border-top: solid 1px #b62025;
}

.mega-menu .mega-links {
    padding: 15px 30px;
}

.mega-menu .mega-links h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 4px;
}

.mega-menu .mega-links a {
    text-align: left;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    display: block;
    padding-bottom: 4px;
}
.mega-menu .mega-links a:hover:after {
    display: none;
}

.mega-menu .mega-links a:hover {
    color: var(--blue);
}

.socials ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: left;
}
.socials ul li {
    margin: 0px 6px;
}
.socials ul li a {
    color: #cdcdcd;
    /* font-size: 1.5rem; */
    /* border: solid 2px #ccc; */
    border-radius: 100px;
    /* background-color: #f02222; */
    /* width: 25px; */
    /* height: 26px; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}
.socials ul li a i {
    color: #fff;
    font-size: 15px;
}
.t-menu {
    display: flex;
}
.top-bar {
    background-color: #ffc107;
    display: flex;
    align-items: center;
    padding: 2px 0px;
}
 
.t-menu a:first-child {
    margin-left: 0px;
}
.t-menu a {
    color: #fff;
    font-size: 15px;
    margin: 0px 10px;
    display: block;
}
.t-menu-right {
    float: right;
}

.t-menu.t-menu-right.socials {}



.owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    top:42%;
}
.owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    font-size: 20px !important;
    color:#b61f25;
    border: solid 2px #b61f25;
    width:40px;
    height:40px;
}
.owl-theme .owl-nav button.owl-prev {
    left:-5%;
}
.owl-theme .owl-nav button.owl-next {
    right:-5%;
}
.owl-theme .owl-nav button.owl-prev:focus, .owl-theme .owl-nav button.owl-next:focus {
    outline: 0px;
}
.brands-img {
    overflow: hidden;
    background-color: #fafafa;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 38%);
        margin-bottom: 20px;
}
.brands-img img {
    height: 180px;
    cursor:pointer;
    object-fit: cover;
    width: 100%;
    transition: 0.5s ease-in-out;
}
.brands-img img:hover{  transform:scale(1.1); }
.about-img{  overflow: hidden;
    background-color: #fafafa;
    
        margin-bottom: 20px; 
    }
.about-img img {
    height: 435px;
    cursor:pointer;
    object-fit: cover;
    width: 100%;
    transition: 0.5s ease-in-out;
}
.about-img img:hover{  transform:scale(1.1); }
.brands-img .over-txt {
    padding: 8px 0px;
}
.brands-img .over-txt p {
    margin-bottom: 0px;
    font-size: 18px;
    text-align: center;
}

.owl-dots {
    text-align: center;
}

.owl-dots button.owl-dot {
    margin: 0px 3px;
}

.owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    display: block;
    border-radius: 100px;
}

.owl-dots button.owl-dot.active span {
    background-color:#ff9900;
}
.inner_bg {
    padding: 90px 0px;
}
.inner_bg h3.section-title {
    color: #fff;
        text-shadow: 1px 1px 3px #000;
}
.section-header .section-title {
    font-size: 32px;
    text-align: center;
    font-weight: 400;
    position: relative;
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-header .section-title:before {
    content: '';
    background-color: #dc3545;
    height: 2px;
    width: 100px;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -30px;
    position: absolute;
}
.section-header .section-title:after {
    content: '';
    background-color: #f4220a;
    height: 2px;
    width: 256px;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -20px;
    position: absolute;
}


.latest_up {
    padding: 0px;
    margin-bottom: -5px;
    margin-top: 0px;
    padding: 0px;
}
.latest_up span {
    display: inline-block;
    width: 200px;
    position: relative;
    top: -5px;
    font-size: 16px;
    color: #ffc107;
    font-weight: bold;
    padding: 3px 15px;
}
.latest_up marquee {
    display: inline-block;
    width: 74%;
    margin-bottom: 0px;
    line-height: 18px;
    position: relative;
    top: 2px;
}
.latest_up marquee a {
    color: #fff;
    font-size: 17px;
    margin-right: 15px;
}
.latest_up marquee a img {
    width: 50px;
}

.update_bg {
    background-color: #9c0918;
    padding: 6px 0px;
}


.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 25px;
    color: #ef0606;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;
    padding: 11px;
    border: 2px dotted #ef0606;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 500;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.box_video {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #fff;
	margin-bottom:38px;
}

.box_video video {
    height: 100%;
    width: 100%;
}

.box_video img {
   object-fit:cover;
   height: 100%;
    width: 100%;
    cursor:pointer;
}

div#main-slider {
    margin-bottom: 15px;
}
.sidebar {
    background-color:#0a396b;
    margin-bottom: 15px;
}

.sidebar ul.ul-links {}

.sidebar ul.ul-links a {
    font-size: 16px;
    display: block;
    padding: 5px 0px 5px 32px;
    border-bottom: solid 1px #2063ab;
    color: #fff;
    position:relative;
}

.sidebar ul.ul-links a:after { position: absolute;left: 10px;content: "\f0a4";font-family: FontAwesome;top: 3px;color: #f9f1db;}

.prof img {
    width:180px;
    float:left;
    padding-right:10px;
    padding-bottom:10px;
    margin-top:25px;
}
.about_para p{  
flex:right;
}
.homepro{
width:180px;
float:left;
padding-right:10px;
padding-bottom:10px;
margin-top:49px;
text-align:center;
}
.homepro span {
    font-size: 12px;
    line-height: 1.5;
    padding-top: 0px;
    display: block;
    margin-top: 6px;
}

.home_para p{
       font-size:18px;
}
.box-title h3{
font-size: 20px;
color:#000;
}
.btn a{
color:white;
}

.aps_box a.btn {
    padding: 2px 15px;
    background-color: #FF9800;
    border-color: #FF9800;
    margin-bottom: 0px !important;
}

.aps_box .box-img {
    margin-bottom: 5px;
}

.aps_box .box-title {
    /* background-color: #ccc; */
    margin-bottom: 20px;
    border-radius: 4px;
    padding-bottom: 15px;
}

.aps_box {
    background-color: #fff;
}

.albm_box{
    width:100%;
    text-align:center;
    border:solid 1px #ccc;
   /* background: linear-gradient(90deg, rgba(212,82,31,1) 0%, rgba(46,73,4,1) 53%);*/
}

.alb_img img{
       height:150px;
       padding-top: 10px;
}

.albm_box h3{ 
font-size:18px;
padding-top: 6px; 
margin-top: 6px;
}
 .albm_box p{
font-size: 14px;
padding-top:-1px;

}
.albm_box a {
    padding: 1px 14px;
    font-size: 18px;
    border-radius: 50px;
    background-color: #ffc107;
}
.albm_box a{
margin-bottom: 4px;
margin-top: -22px;
}

.albums_list{
 display:flex;
 flex-wrap: wrap;
}
.albums_list li{
    width: 23%;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
}
.alb_img img {
    height: 150px;
    padding-top: 10px;
    width: 90%;
    object-fit: cover;
}
.alb_img img:hover {
transform:scale(1.1);    
opacity:1;
}

#menu-top-menu .menu-item-has-children:before { display:block; color: var(--black); position:absolute; top:40%; right:-3px; list-style:none; font: normal normal normal 14px/1 FontAwesome; content:"\f107"; font-size:18px; margin-top:-5px; line-height:1; }

.wpcf7-textarea {max-height:145px;}

.wpcf7-submit {height:auto !important; width:auto !important;}
header nav ul li ul li a:after{ display:none;  }
.punchline {
    border: double 6px #b70f0f;
    text-align: center;
    padding: 10px 10px;
    padding-left: 40px;
}

.punchline p {
    margin-bottom: 0px;
    font-size: 22px;
    text-align: left;
}

.punchline p span {
    width: 300px;
    right: 23px;
    font-style: italic;
    color: #945656;
}

.donate-btn {
    background-color: antiquewhite;
    padding: 24px 27px;
    text-align: center;
	cursor:pointer;
    border: double 6px #dc3545;
}

.donate-btn h3 {
    font-size: 28px;
    color: black;
}
.donate-btn h3 img {
    width: 58px;
    margin-bottom: 5px;
}
a.donate_link {
    background-color: #dc3545;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

a.donate_link i.fa-hand-o-right {
    padding-right: 6px;
}
