﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/**bootstrap**/
: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: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -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;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  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;
}
img {
  vertical-align: middle;
  border-style: none;
}
table {
  border-collapse: collapse;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button,
input,
optgroup,
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;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.h1,
h1 {
  font-size: 2.5rem;
}

.h2,
h2 {
  font-size: 2rem;
}
.h5,
h5 {
  font-size: 1.25rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  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;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-sm-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-sm-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.p-0 {
  padding: 0 !important;
}

.text-center {
  text-align: center !important;
}

/**bootstrap**/

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-size: 14px;
  line-height: 1.42857143;
  color: #707070;
  background-color: #fff;
  font-family: Montserrat, sans-serif !important;
}
header {
  display: block;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
a {
  background-color: transparent;
  color: #337ab7;
  text-decoration: none !important;
}

img {
  border: 0;
  vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: normal;
  font-family: inherit;
  font-size: inherit;
}
button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
  resize: none;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h1 {
  font-size: 36px;
}

h2 {
  font-size: 2.441em;
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.21;
  color: initial;
}
.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
p {
  margin: 0 0 10px;
  font-family: "Open Sans", sans-serif !important;
}
.rounded {
  border-radius: 1rem !important;
}
.text-center {
  text-align: center;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 10px;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  float: left;
}
.col-xs-12 {
  float: left;
  width: 100%;
}
.col-xs-6 {
  width: 50%;
}

.col-xs-4 {
  width: 33.33333333%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left;
  }
  .col-sm-12 {
    float: left;
    width: 100%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left;
  }
  .col-md-4 {
    float: left;
    width: 33.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9 {
    float: left;
  }
  .col-lg-4 {
    float: left;
    width: 33.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}

.clearfix:after,
.container-fluid:after,
.container:after,
.row:after {
  clear: both;
}
.clearfix {
  clear: both;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none !important;
  border-radius: 0 !important;
  background-color: #f5f5f5 !important;
}

::-webkit-scrollbar {
  width: 3px !important;
  background-color: #f5f5f5 !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  background-color: #d0d0d0 !important;
}
.img-pc-show {
  display: block;
}
.img-mob-show {
  display: none !important;
}
@media (max-width: 991px) {
  h1 {
    font-size: 23px;
    text-align: center;
  }
  h3 {
    font-size: 20px;
  }
}

.title-section.home-section {
}
.blog-head h1 {
  text-align: left;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  color: #000;
  margin-bottom: 16px;
}

.blog-head p {
  color: #000;
  font-size: 23px;
  line-height: 1.5;
  width: 90%;
  text-align: left;
  margin-bottom: 4rem;
 font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
}

.blog-head {
  padding-top: 3rem;
  margin-bottom: 0rem;
}
ul.select2-selection__rendered {
  height: auto !important;
}
ul.select2-selection__rendered {
  height: 100% !important;
  display: flex !important;
  align-items: center;
}

span.select2-selection.select2-selection--multiple {
  display: flex;
  align-items: center;
  height: 40px;
}

input.select2-search__field {
  margin: 0 !important;
  padding-left: 10px !important;
}
span.select2-selection.select2-selection--multiple {
  width: 95%;
  height: 40px;
  margin-left: 0;
  margin-top: 5px;
  background: #fff !important;
  border: none;
  border-radius: 0;
  font-size: 12px;
  overflow-y: auto;
  /*box-shadow: 0 2px 6px rgba(0,0,0,.105)!important;*/
  border: 1px solid #d2d2d2 !important;
}
input#txtHeaderSearch {
  border-radius: 6px !important;
  /* box-shadow: 0 2px 6px rgba(0,0,0,.105)!important; */
  background: #fff !important;
  border: 1px solid #d2d2d2 !important;
}
ul.select2-selection__rendered {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.105) !important;
  /* background: #fff; */
}
input#btnTagsearch {
  height: 40px;
  border-radius: 100px;
  background-color: #b22126 !important;
  color: #fff;
  outline: none;
  width: 100%;
  border: none !important;
  margin-top: 5px;
}
.blog-container img {
  width: 100%;
}
a.blog-avatar {
  display: none;
}

ul.user-img li {
  list-style: none !important;
}

.blog-user-name {
  display: none;
}

.blog-item
{
        padding: 20px;
    }
    
 .blog-main-grid
 {
    display: flex;
    flex-wrap: wrap;
    font-family: poppins, sans-serif;
    font-size: 16px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1205px;
 }
     

.blog-details {
  border-radius: 30px;
  color: #000;
  width: 95% !important;
  /*margin: auto;
  margin-top: -30px;
  height: 50px;*/
  z-index: 9999;
  padding-bottom: 0 !important;
  padding-top: 20px;
}

.blog-tag-section
{
    padding-bottom: 9px;
}
    
.blog-tag
{
    color: #121212;
    position: relative;
    font-size: 13px;
    background-color: #eaeaea;
    padding: 4px 10px;
}
    
        

.blog-details h2 {
    line-height: 0.9;
    padding-bottom: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    }
    

.blog-details h2 a{
    font-size: 24px;
    color: #121212;
    font-weight: 700;
    
    }
    
    .blog-details p a{
    font-size: 16px;
    color:  #5d6769;
    line-height: 1.5;
      font-family: "poppins", sans-serif;
    }
    
    .blog-details p
    {
        margin: 0;
        padding-bottom: 16px;
    }
        
   
.blog-post-date a {
  color: #000;
  font-weight: 400;
  text-transform: capitalize !important;
}
ul.user-img {
  padding: 0;
  margin-bottom: 0;
}
.blog-post-date {
  padding: 0px 0 4px 0;
  background: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 30px;
}

.blog-post h2 a {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

.blog-post h2 {
  font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
  line-height: 22px;
  margin-bottom: 1rem;
  padding: 1rem;
  padding-bottom: 0;
  padding-top: 0;
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.blog-post h5,
.blog-post p {
  font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
  font-size: 16px;
  color: #5d6769;
  font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
  line-height: 26px;
  padding: 1rem;
  padding-bottom: 1rem;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.blog-post {
  padding: 0px;
  /* border: 1px solid #F5F6FA; */
  margin-bottom: 2rem;
  border-radius: 14px;
  height: 425px;
  overflow: hidden;
}

.pagination-controllor 
{
    display: flex;
    justify-content:center;
    margin: 4rem 0;
    gap: 6px;
    align-items: baseline;
}

.pagination-controllor a
{
     color: #373737;
     border: 1px solid #e9e9e9;
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 14px;
}

.pagination-controllor .active
{
    background-color: #B22126;
    color: #fff;
    }

.pagination-controllor a:hover
{
     background-color: #fff1f2;
     color: #b22126;
    }
    
    .pagination-controllor a:hover svg
    {
        stroke: #b22126;
        }
    

   

.pagination-controllor #btnPreviousPageSet{
   background-color: transparent;
   border: 1px solid #e9e9e9;
   border-radius: 4px;
    padding: 4px 10px;
    }
    
    .pagination-controllor #btnPreviousPageSet span, svg
    {
        vertical-align: middle;
        }
    
    .pagination-controllor #btnPreviousPageSet span
    {
        padding-right: 4px; 
        }
    
    
    
 .pagination-controllor #btnFirstPage
 {
     background-color: transparent;
   border: 1px solid #e9e9e9;
   border-radius: 2px;
    padding: 4px 10px;
     }
     
   .pagination-controllor  #btnNextPageSet
   {
       background-color: transparent;
       border: 1px solid #e9e9e9;
       border-radius: 4px;
       padding: 4px 10px;
     }
    
    .pagination-controllor  #btnLastPage
    {
       background-color: transparent;
       border: 1px solid #e9e9e9;
       border-radius: 4px;
       padding: 4px 10px;
        }
        .pagination-controllor  #btnLastPage svg, span
        {
            vertical-align: middle;
            }
            
            .pagination-controllor  #btnLastPage span 
            {
                padding-left: 4px;
                }
        
        
        .pagination-controllor #btnFirstPage svg, span
        {
               vertical-align: middle;
            }
            
            .pagination-controllor #btnFirstPage:hover svg
            {
                stroke: #b22126;
                }
            
            .pagination-controllor #btnFirstPage span
            {
                padding-left: 4px;
                }
                
                


li.no-of-pages {
  float: left;
  padding: 7px 13px;
  /* background: whitesmoke; */
  margin: 3px;
  list-style: none;
  border-radius: 8px;
  border: 1px solid #ededed;
  transition: all 0.3s;
}
li.no-of-pages:hover {
  background: #ededed;
}
.pages {
  text-align: center;
  float: left;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 5rem;
  margin-top: 3rem;
}
li.no-of-pages a {
  color: #000;
  font-size: 16px;
  font-family: "Open Sans";
}
a.giveBlackColor {
  font-weight: 700;
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.autocomplete-suggestions {
  background: #fff;
  padding: 11px;
  position: absolute;
  z-index: 9999;
  top: 320px;
  left: 255px;
  width: 434px;
  max-height: 300px;
  overflow-y: auto;
  padding-bottom: 5px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.autocomplete-suggestion {
  margin-bottom: 8px;
  font-size: 13px;
}
.blog-post .readstory {
  padding-left: 1rem;
  font-weight: 600;
  color: #000;
  vertical-align: middle;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s !important;
  display: flex;
  align-items: center;
  font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
}
.fa-arrow-right:before {
  content: "\f061";
}
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.readstory:hover i {
  transform: translateX(3px);
  margin-left: 8px;
  transition: all 0.3s;
}
i.fas.fa-arrow-right {
  margin-left: 7px;
  transition-delay: 0.2s;
  transform-style: flat;
}
.blog-post {
  padding-bottom: 2rem;
}
.fa-comment-dots:before {
  content: "\f4ad";
}
.fa-calendar-alt:before {
  content: "\f073";
}
.blog-post {
  padding: 0px;
  /* border: 1px solid #ecedf1; */
  margin-bottom: 2rem;
  border-radius: 20px;
  height: 420px;
  overflow: hidden;
}
.recent_posts img {
  border-radius: 10px !important;
}
a.giveBlackColor {
  font-weight: 400;
}
@media (min-width: 767px) {
  .blog-post {
    padding: 0px;
    /* border: 1px solid #ecedf1; */
    margin-bottom: 2rem;
    border-radius: 20px;
    height: 522px;
    overflow: hidden;
  }
  .blog-post h2 {
    font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
    line-height: 30px;
    margin-bottom: 0rem;
    padding: 1rem;
    padding-bottom: 0;
    padding-top: 0;
    font-size: 24px;
    color: #000;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  input#txtHeaderSearch {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    /* box-shadow: 0 2px 6px rgba(0,0,0,.105)!important; */
    background: #fff !important;
    border: 1px solid #d2d2d2 !important;
  }
  .blogmainpadding.p-0 {
    padding: 0 15px !important;
  }
  span.select2-selection.select2-selection--multiple {
    width: 100% !important;
    height: 40px;
    margin-left: 0;
    margin-top: 5px;
    background: #f1f1f1;
    border: none;
    border-radius: 0;
    font-size: 12px;
    overflow-y: auto;
  }
  input#btnTagsearch {
    height: 40px;
    border-radius: 0px !important;
    background-color: #b22126;
    color: #fff;
    outline: none;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5rem !important;
  }
  input#txtHeaderSearch {
    width: 100% !important;
  }
  li.no-of-pages {
    float: left;
    padding: 1px 6px;
    margin: 1px;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #ededed;
    transition: all 0.3s;
  }
}
.pages {
  padding: 0;
}
.blog-post > a:nth-child(1) {
  max-height: 175px;
  overflow: hidden;
  display: block;
}

.address-wrap {
  height: 350px;
}

.title-section.home-section {
  width: 100%;
  height: 430px;
  border-radius: 0px;
  background: #F4F6F7;
  /*background: rgb(117, 8, 182);
  background: linear-gradient(
    37deg,
    rgba(117, 8, 182, 1) 0%,
    rgba(243, 38, 61, 1) 26%,
    rgba(254, 64, 110, 1) 48%,
    rgba(54, 120, 241, 1) 100%
  );
*/
  padding-top: 0rem;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

input#btnTagsearch {
  height: 40px;
  border-radius: 5px !important;
  background-color: #b22126;
  color: #ffffff !important;
  outline: none;
  width: 100%;
  margin-top: 5px;
}
input#txtHeaderSearch {
  width: 100% !important;
}
span.select2-selection.select2-selection--multiple {
  width: 100% !important;
  border-radius: 5px !important;
}
.blog-header-content {
  padding-left: 9rem;
  padding-top: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-header-img {
  height: 76vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .title-section.home-section {
    width: 100%;
    height: auto;
  }
  .blog-header-content {
    padding-left: 5rem;
    padding-top: 5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-header-img {
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .blog-header-img img {
    width: 450px;
  }
  .blog-header-content {
    padding-left: 5rem;
    padding-top: 5rem;
    display: flex;
    padding-right: 5rem;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .blog-header-img img {
    width: 355px;
  }
}
@media (max-width: 360px) {
  .blog-header-img img {
    width: 275px;
  }
  .blog-header-content {
    padding-left: 3rem;
    padding-top: 5rem;
    display: flex;
    padding-right: 3rem;
    flex-direction: column;
    justify-content: center;
  }

  input#btnTagsearch {
    margin-bottom: 2rem !important;
  }
}
.blog-header-img img {
  width: 400px;
}

.blog-container img {
  width: 100%;
  height: auto;
}
table.addNew tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.addNew > tbody > tr {
  width: 48%;
  margin: 1.5rem auto;
}
.addNew > tbody > tr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff !important;
  overflow-x: hidden;
  border: 1px solid #ecedf1;
  border-radius: 20px;
  padding-bottom: 2.5rem;
}
.blog-post p a {
  font-family: fell, Georgia, Cambria, "Times New Roman", Times, serif !important;
  font-size: 16px;
  color: #5d6769 !important;
}
.addNew > tbody > tr:first-child {
  display: none;
}
tr.pagination-row {
  border: none !important;
  padding-bottom: 0 !important;
  width: 100% !important;
  padding-right: 0 !important;
  height: auto !important;
  overflow: hidden;
}
.pageCurrentNumber a,
.pagePrevNextNumber a {
  padding: 5px 10px;
}
.pageCurrentNumber a {
  background-color: #e8e8e8 !important;
  color: 000 !important;
}

.pageCurrentNumber a,
.pageCurrentNumber input,
.pagePrevNextNumber a,
.pagePrevNextNumber input {
  color: #262626;
  border: 1px solid #cecece !important;
  border-radius: 0.3rem;
  margin: 10px 0px;
}
input#gvBlog_ctl13_imgNextPage {
  padding: 11px;
}
td.pageFirstLast {
  color: #262626;
  border-radius: 3px !important;
  margin: 10px 0px;
  padding: 1px;
}
select#gvBlog_ctl13_ddlPageGroups {
  padding: 3px;
  border: 1px solid #cecece !important;
  border-radius: 3px;
}
@media (max-width: 767px) {
  table#gvBlog {
    display: block;
    border: none !important;
    display: contents;
  }
  .addNew > tbody > tr {
    width: 100%;
    margin: 1.5rem auto;
  }
  table.addNew tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    display: block;
  }
  .blog-box .row > div {
    display: block;
    width: 100%;
  }
  table.pagerOuterTable > tbody > tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  table.pagerOuterTable > tbody > tr > td {
    width: 100%;
  }
  td.pageGroups {
    width: 100% !important;
    text-align: center;
  }
  td.pageFirstLast a {
    color: #262626;
  }
}
@media (max-width: 580px) {
  .blog-box .row > div {
    padding: 15px;
  }
  .pageCurrentNumber a,
  .pagePrevNextNumber a {
    padding: 5px 2px;
  }
}
