#preload {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: var(--color-4);
  background-image: url("../images/loading.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130px;
}

@media (max-width: 767px) {
  #preload {
    background-size: 80px;
  }
}

body {
  font-family: 'Nunito_Regular';
  overflow-x: hidden;
}

.body_blue {
  background-color: var(--color-2);
}

.row {
  margin-right: 0;
  margin-left: 0;
}

section {
  position: relative;
}

a, a:hover, a:focus, a:active {
  outline: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.os-animation {
  opacity: 0;
}

.os-animation.animated {
  opacity: 1;
}

@font-face {
  font-family: 'Nunito_Bold';
  src: url("../fonts/Nunito_Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito_SemiBold';
  src: url("../fonts/Nunito_SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito_Regular';
  src: url("../fonts/Nunito_Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito_Light';
  src: url("../fonts/Nunito_Light.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/FontAwesome.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.ttf");
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito_Bold';
}

:root {
  --color-1: #f738b0;
  --color-2: #13c9de;
  --color-3: #faf21f;
  --color-4: #f8b1e1;
  --color-5: #c2e4f0;
}

.pink_back {
  background-color: var(--color-1);
}

.blue_back {
  background-color: var(--color-2);
}

.yel_back {
  background-color: var(--color-3);
}

.pink_backl {
  background-color: var(--color-4);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

header img {
  width: 180px;
}

header .navbar {
  width: 100%;
}

header .nav-link {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  margin-left: 12px;
  margin-right: 12px;
  color: #fff !important;
  font-size: 18px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .nav-link:hover {
  color: var(--color-1) !important;
}

header .nav-link::before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  right: calc(100%);
  bottom: -2px;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition-property: right;
}

header .nav-link:hover::before {
  right: 0px;
  background-color: var(--color-1);
}

header .dropdown-menu {
  margin-top: 10px;
  background-color: var(--color-2);
  border: 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

header .dropdown-menu a {
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

header .dropdown-menu a:hover, header .dropdown-menu a:focus, header .dropdown-menu a:active {
  color: var(--color-2);
}

.fixed_header_back {
  background-color: #a0a0a0;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

.fixed_header_back img {
  width: 120px;
}

.nav-link.in_here {
  color: var(--color-1) !important;
}

.in_here::before {
  right: 0px;
  width: 100%;
  background-color: var(--color-1) !important;
}

.get_app_link {
  background-color: var(--color-1);
  color: #fff !important;
  display: block;
  margin-top: .3rem;
  margin-left: 20px;
  display: block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 16px;
  border: 2px solid var(--color-1);
  min-width: 120px;
  text-align: center;
}

.get_app_link:hover {
  background-color: var(--color-4);
}

.get_app_linkb {
  border: 2px solid var(--color-2);
  background-color: var(--color-2);
}

.get_app_linkb:hover {
  background-color: var(--color-5);
}

.navbar-light .navbar-toggler {
  color: #fff;
  border-color: var(--color-2);
  background-color: var(--color-2);
  padding: 2px 12px;
}

.navbar-toggler-icon {
  width: 20px;
  padding: 0px 10px;
}

.custom_container {
  width: 90%;
  max-width: none;
}

@media (max-width: 767px) {
  .custom_container {
    width: 100%;
  }
  .get_app_link {
    margin: 0;
    margin-top: 20px;
    display: inline-block;
    border: 1px solid #fff;
  }
  .navbar-collapse {
    background-color: #a0a0a0;
    padding: 20px;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 2px solid #fff;
  }
  header img {
    width: 120px;
  }
  header .dropdown-menu {
    background-color: transparent;
    border: 0px;
    box-shadow: none;
  }
  .fixed_header_back img {
    width: 80px;
  }
  .fixed_header_back .navbar-light .navbar-toggler {
    border-color: #fff;
  }
  .fixed_header_back .navbar-collapse {
    border: 0px;
    background-color: #a0a0a0;
  }
}

.numver_pag {
  width: 30px;
  height: 30px;
  display: inline-table;
  border: 2px solid #fff;
  line-height: 105%;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}

.numver_pag span {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  font-family: 'Nunito_Bold';
}

.main_slider .slick-dots {
  width: auto;
  right: 5%;
  top: 32%;
}

.main_slider .slick-dots li button:before {
  display: none;
}

.main_slider .slick-dots li {
  margin-top: 10px;
  margin-bottom: 10px;
  width: auto;
  height: auto;
  display: block;
}

.main_slider .slick-dots li.slick-active .numver_pag {
  border: 2px solid var(--color-3);
}

.main_slider .slick-dots li.slick-active .numver_pag span {
  color: var(--color-3);
}

.single_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.single_slide h1 {
  font-size: 53px;
  text-shadow: 4px 6px 2px rgba(10, 10, 10, 0.13);
}

.single_slide p {
  font-size: 18px;
  color: var(--color-3);
  display: inline-block;
  padding-left: 10px;
  text-shadow: 2px 2px 5px rgba(10, 10, 10, 0.51);
}

.single_slide span {
  color: #fff;
  font-family: 'Nunito_Bold';
  font-size: 53px;
  vertical-align: text-bottom;
}

.inner_i {
  background-image: url(../images/st1.jpg);
}

.glaze_i {
  background-image: url(../images/st2.jpg);
}

.topping_i {
  background-image: url(../images/st3.jpg);
}

@media (max-width: 640px) {
  .inner_i {
    background-image: url(../images/st1m.jpg);
  }
  .glaze_i {
    background-image: url(../images/st2m.jpg);
  }
  .topping_i {
    background-image: url(../images/st3m.jpg);
  }
}

.landing_sc_cont {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.landing_sc_cont h1 {
  color: #fff;
  font-size: 53px;
  text-shadow: 4px 6px 2px rgba(10, 10, 10, 0.13);
}

.landing_sc_cont p {
  font-size: 18px;
  color: var(--color-3);
  line-height: 120%;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide_cont_back1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36%;
}

.badge_image {
  position: absolute;
  top: 15%;
  right: 0%;
  width: 200px;
  animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(0.9);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.9);
  }
}

.slide_cont1 {
  position: absolute;
  bottom: 120px;
  left: 6%;
  padding-right: 20px;
}

.stb1b {
  left: -8.5%;
  bottom: -8%;
}

.stb1p {
  left: -1.5%;
  bottom: -8%;
}

.slide_cont2 {
  text-align: right;
  position: absolute;
  right: 5%;
  top: 18%;
}

.slide_cont2 h1 {
  font-family: 'Nunito_Light';
  font-style: italic;
  text-shadow: none;
  margin-bottom: 0;
}

.pink_col_txt {
  color: var(--color-1);
}

.blu_col_txt {
  color: var(--color-2);
}

.yel_col_txt {
  color: var(--color-3);
}

.white_col_txt {
  color: #fff;
}

.heading_border {
  width: 40%;
  margin-left: auto;
}

.social_botom {
  z-index: 1200;
  position: fixed;
  bottom: 5%;
  right: 5%;
}

.social_botom a {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.35));
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.35));
  min-height: auto;
  display: inline-table;
  padding: 0;
  margin: 0;
  margin-left: 4px;
  width: 42px;
  height: 42px;
  background-color: var(--color-1);
  border-radius: 50%;
  border: 0px !important;
  text-align: center;
}

.social_botom a span {
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  line-height: 100%;
  padding: 0;
  font-size: 25px;
  color: #fff;
}

.face_n:hover {
  background-color: #3B5998;
}

.tw_n:hover {
  background-color: #00acee;
}

.ins_n:hover {
  background-color: #FCAF45;
}

@media (max-width: 1024px) {
  .slide_cont_back1 {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .badge_image {
    width: 120px;
  }
  .single_slide h1 {
    font-size: 28px;
  }
  .single_slide p {
    font-size: 15px;
  }
  .single_slide span {
    font-size: 26px;
  }
  .landing_sc_cont h1 {
    font-size: 28px;
  }
  .landing_sc_cont p {
    font-size: 15px;
  }
  .slide_cont_back1 {
    width: 100%;
  }
  .slide_cont1 {
    bottom: 10%;
    left: 6%;
  }
  .social_botom {
    bottom: 3%;
    right: 3%;
  }
  .social_botom a {
    width: 30px;
    height: 30px;
  }
  .social_botom a span {
    font-size: 14px;
  }
}

.get_app_cont_back {
  position: absolute;
  right: 0;
  top: 20%;
  width: 40%;
}

.get_app_cont {
  padding-left: 20px;
  position: absolute;
  right: 5%;
  top: 24%;
}

.common_button {
  vertical-align: middle;
  cursor: pointer;
  outline: 0;
  min-width: 120px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 16px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.common_button span {
  margin-right: 6px;
  font-size: 18px;
}

.pink_but {
  background-color: var(--color-1);
  color: #fff;
  border: 2px solid var(--color-1);
}

.pink_but:hover, .pink_but:focus, .pink_but:active {
  background-color: var(--color-2);
  border: 2px solid var(--color-1);
  color: #fff;
}

.blue_but {
  background-color: var(--color-2);
  color: #fff;
  border: 2px solid var(--color-2);
}

.blue_but:hover, .blue_but:focus, .blue_but:active {
  background-color: var(--color-1);
  border: 2px solid var(--color-2);
  color: #fff;
}

.store_div {
  margin-top: 30px;
  text-align: right;
}

.store_div a {
  margin-left: 10px;
}

.slick-slide {
  outline: 0;
}

@media (max-width: 1024px) {
  .get_app_cont_back {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .get_app_cont_back {
    width: 95%;
  }
  .get_app_cont {
    text-align: center;
    top: 25%;
  }
  .store_div {
    text-align: center;
  }
  .common_button {
    min-width: 100px;
    padding: 3px 10px;
    font-size: 13px;
  }
}

.test_cont_back {
  position: absolute;
  left: 0;
  top: 20%;
  width: 30%;
}

.test_cont {
  padding-right: 20px;
  position: absolute;
  left: 3%;
  top: 33%;
}

.test_cont h1 {
  line-height: 100%;
  font-size: 50px;
}

.testi_slider_main {
  position: absolute;
  width: 73%;
  right: -4%;
  top: 28%;
}

.single_testi {
  padding-left: 14px;
  padding-right: 14px;
}

.test_sli_cont {
  position: relative;
  padding: 25px;
  border-radius: 40px;
}

.test_sli_cont p {
  margin-bottom: 0;
  padding-bottom: 15px;
  color: var(--color-3);
  line-height: 130%;
  text-shadow: 2px 2px 5px rgba(10, 10, 10, 0.4);
}

.test_sli_cont h5 {
  font-size: 16px;
  color: #fff;
}

.bub_bot {
  width: 45px;
  margin-left: 18%;
}

.profile_pic {
  width: 50px;
  display: inline-block !important;
}

.testi_slider .slick-prev {
  bottom: -14%;
  top: auto;
  right: 160px;
  left: auto;
  width: 32px;
  height: 32px;
}

.testi_slider .slick-next {
  bottom: -14%;
  top: auto;
  right: 100px;
  width: 32px;
  height: 32px;
}

.testi_slider .slick-prev:before {
  font-family: initial;
  content: "\2190";
  font-size: 50px;
  color: var(--color-3);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.testi_slider .slick-next:before {
  font-family: initial;
  content: "\2192";
  font-size: 50px;
  color: var(--color-3);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1024px) {
  .test_cont_back {
    width: 40%;
  }
  .test_cont h1 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .test_cont_back {
    top: 12%;
  }
  .test_cont {
    top: 14%;
  }
  .test_cont h1 {
    font-size: 28px;
  }
  .testi_slider_main {
    top: 40%;
    right: auto;
    width: 100%;
  }
  .test_sli_cont {
    padding: 20px;
    padding-right: 10px;
  }
  .test_sli_cont p {
    font-size: 13px;
  }
  .test_sli_cont h5 {
    font-size: 14px;
  }
  .profile_pic {
    width: 40px;
  }
  .bub_bot {
    width: 30px;
  }
}

.pie_cont_back {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
}

.pie_cont {
  position: absolute;
  bottom: 12%;
  right: 18%;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .pie_cont_back {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .pie_cont_back {
    width: 120%;
  }
}

.menu_back {
  position: absolute;
  left: 2%;
  top: 20%;
  width: 22%;
}

.menu_cont {
  position: absolute;
  left: 4%;
  top: 28%;
  width: 22%;
}

.menu_cont h1 {
  line-height: 100%;
}

.single_menu_slide {
  padding-left: 10px;
  padding-right: 10px;
}

.menu_slider_main {
  width: 55%;
  position: absolute;
  right: 5%;
  top: 26%;
}

.menu_item {
  background-color: #fff;
  border-radius: 28px;
  padding: 10px;
  margin-bottom: 20px;
}

.item_back_col {
  padding: 0;
}

.item_back {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 120%;
  border-radius: 24px;
}

.item_des_col h5 {
  font-size: 16px;
  padding-top: 8px;
  color: var(--color-2);
  font-family: 'Nunito_Regular';
  line-height: 100%;
}

.item_des_col p {
  font-size: 11px;
  color: #6d6d6d;
  font-family: 'Nunito_Light';
  line-height: 110%;
  margin-bottom: 10px;
}

.item_amount {
  cursor: default !important;
  width: 30px;
  height: 30px;
  border: 1px solid;
  display: inline-table;
  text-align: center;
  border-radius: 50%;
}

.item_amount span {
  font-size: 14px;
  display: table-cell;
  vertical-align: middle;
}

.pink_cir {
  border-color: var(--color-1);
  color: var(--color-1) !important;
}

.brwn_cir {
  border-color: #dea16b;
  color: #dea16b !important;
}

.pinkl_cir {
  border-color: var(--color-4);
  color: var(--color-4) !important;
}

.blue_cir {
  border-color: var(--color-2);
  color: var(--color-2) !important;
}

.menu_slider .slick-prev {
  bottom: -14%;
  top: auto;
  right: 60px;
  left: auto;
  width: 32px;
  height: 32px;
}

.menu_slider .slick-next {
  bottom: -14%;
  top: auto;
  right: 10px;
  width: 32px;
  height: 32px;
}

.menu_slider .slick-prev:before {
  font-family: initial;
  content: "\2190";
  font-size: 50px;
  color: var(--color-2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu_slider .slick-next:before {
  font-family: initial;
  content: "\2192";
  font-size: 50px;
  color: var(--color-2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu_sec .slide_cont2 {
  top: 14%;
}

.menu_sec .slide_cont2 h1 {
  font-size: 38px;
}

@media (max-width: 1124px) {
  .item_back {
    padding-top: 90%;
  }
}

@media (max-width: 767px) {
  .menu_sec .slide_cont2 h1 {
    font-size: 18px;
  }
  .menu_back {
    top: 14%;
  }
  .menu_cont {
    top: 12%;
  }
  .menu_cont h1 {
    font-size: 18px;
  }
  .menu_slider_main {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    right: 0%;
    top: 28%;
  }
  .item_back {
    padding-top: 110%;
  }
  .menu_item {
    padding: 5px;
  }
  .item_des_col h5 {
    font-size: 13px;
  }
  .item_des_col p {
    font-size: 10px;
  }
  .item_amount {
    width: 22px;
    height: 22px;
  }
  .item_amount span {
    font-size: 8px;
  }
  .menu_slider .slick-prev {
    width: 20px;
    height: 20px;
    bottom: -5%;
    right: 120px;
  }
  .menu_slider .slick-next {
    width: 20px;
    height: 20px;
    bottom: -5%;
    right: 50px;
  }
}

@media (max-width: 340px) {
  .item_des_col h5 {
    font-size: 14px;
  }
  .item_des_col p {
    font-size: 10px;
  }
}

.visit_cont_back {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 34%;
}

.arrowmain {
  position: fixed;
  width: 100%;
  bottom: 15px;
  text-align: center;
}

#arrow_up, #arrow_down {
  width: 35px;
  height: auto;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 2px;
  margin-left: 2px;
  -webkit-filter: drop-shadow(1px 1px 1px #000000);
  -moz-filter: drop-shadow(1px 1px 1px #000000);
  -ms-filter: drop-shadow(1px 1px 1px #000000);
  -o-filter: drop-shadow(1px 1px 1px #000000);
  filter: drop-shadow(1px 1px 1px #000000);
}

#arrow_up:hover, #arrow_down:hover {
  opacity: 1;
  z-index: 9000;
}

.add_opacity {
  opacity: 1;
}

@media (max-width: 1124px) {
  .visit_cont_back {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .visit_cont_back {
    width: 100%;
  }
  .arrowmain {
    display: none;
  }
}

@media (max-width: 640px) {
  .visit_sec {
    background-image: url(../images/visitusbackm.jpg) !important;
  }
  .pie_sec {
    background-image: url(../images/piebackm.jpg) !important;
  }
}

.other_page_section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

.other_page_heads {
  line-height: 100%;
  color: #fff;
  font-size: 50px;
  margin: 0;
  text-shadow: 2px 4px 2px rgba(10, 10, 10, 0.3);
}

.ovralay_b {
  background-color: var(--color-2);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0.5;
}

.ovralay_p {
  background-color: var(--color-1);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0.7;
}

.inside_con {
  position: relative;
  z-index: 10;
}

.form_section {
  padding-top: 90px;
  padding-bottom: 70px;
}

.img_div img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.form_div h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.form_div .col-md-6, .form_div .col-12 {
  padding-left: 0;
  margin-bottom: 30px;
}

.form_div form input, .form_div form textarea, .form_div form select {
  border-radius: 0px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
}

.form_div form input, .form_div form select {
  height: 45px;
}

.label_d {
  font-weight: bold;
  font-size: 16px;
  color: #919191;
  margin-bottom: 5px;
  display: block;
  padding-left: 0px;
}

.button_div {
  margin-top: 20px;
  padding-left: 0;
}

.msg_divs {
  padding-left: 0;
  display: block;
  display: block;
  width: 100%;
}

#messages_er, #messages_erf {
  display: block;
  color: red;
  font-size: 15px;
  font-weight: bold;
}

#messages_s, #messages_sf {
  display: block;
  color: green;
  font-size: 15px;
  font-weight: bold;
}

.loadings, .loadingsf {
  display: none;
  width: 30px;
  height: auto;
}

.dis_n {
  display: none !important;
}

.footer_s img {
  width: 70px;
}

.footer_s p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
}

.copies_img {
  text-align: right;
}

.social_footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #1c1c1c;
  position: relative;
  bottom: auto;
  right: auto;
  text-align: center;
}

.social_footer p {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.bottom_foot {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #151515;
}

@media (max-width: 992px) {
  .inside_con {
    padding-right: 30px;
    padding-left: 30px;
  }
  .form_div {
    margin-bottom: 30px;
  }
  .form_div .col-md-6, .form_div .col-12 {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .other_page_heads {
    font-size: 28px;
  }
  .form_section {
    padding-top: 60px;
  }
  .form_div h3 {
    font-size: 20px;
  }
  .copies, .copies_img {
    text-align: center;
    font-size: 12px;
  }
  .copies_img {
    margin-top: 10px;
  }
  .other_page_section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
